Android App Scaffolding

This commit is contained in:
2023-08-07 17:53:13 +02:00
parent e15057d682
commit 18f6a5226f
58 changed files with 1297 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "My Application"
include(":app")