Initial project setup

This commit is contained in:
Gergely Hegedus 2021-07-30 21:23:32 +03:00
parent 2e4ec316ae
commit c1b8d92461
34 changed files with 745 additions and 0 deletions

10
settings.gradle Normal file
View file

@ -0,0 +1,10 @@
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
}
}
rootProject.name = "HiltReloadableModule"
include ':app'