Add basic project boilerplate for iOS & Android ( To use platform specific code )

This commit is contained in:
Théo Monnom
2022-08-16 15:41:51 +02:00
parent 01eaa337a5
commit b59606b989
65 changed files with 2097 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LKAndroid"
include ':app'