android: Convert gradle scripts to Kotlin DSL
This commit is contained in:
parent
12c9e18b55
commit
ab87f74998
5 changed files with 241 additions and 201 deletions
18
src/android/settings.gradle.kts
Normal file
18
src/android/settings.gradle.kts
Normal file
|
@ -0,0 +1,18 @@
|
|||
pluginManagement {
|
||||
repositories {
|
||||
gradlePluginPortal()
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
@Suppress("UnstableApiUsage")
|
||||
dependencyResolutionManagement {
|
||||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
include(":app")
|
Loading…
Add table
Add a link
Reference in a new issue