Without indicating ndkVersion gradle won't find ndk path and it will fail to extract debug symbols from binaries. The final result will be a apk much bigger than needed.
10 lines
201 B
Groovy
10 lines
201 B
Groovy
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
include ':app'
|
|
include ':assetpack'
|