Pin ndkVersion

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.
This commit is contained in:
Miguel Horta
2022-06-30 19:25:30 +01:00
committed by pelya
parent ec163bba3b
commit 2e0cc86345
3 changed files with 3 additions and 3 deletions

View File

@@ -4,6 +4,7 @@ plugins {
android {
compileSdk 31
ndkVersion "23.1.7779620"
defaultConfig {
applicationId "net.olofson.ballfield"

View File

@@ -7,10 +7,10 @@ AppName="OpenTTD"
AppFullName=org.openttd.fdroid
# Application version code (integer)
AppVersionCode=1220111
AppVersionCode=1220112
# Application user-visible version name (string)
AppVersionName="12.2.rev111"
AppVersionName="12.2.rev112"
# Specify path to download application data in zip archive in the form 'Description|URL|MirrorURL^Description2|URL2|MirrorURL2^...'
# If you'll start Description with '!' symbol it will be enabled by default, '!!' will also hide the entry from the menu, so it cannot be disabled

View File

@@ -3,7 +3,6 @@ dependencyResolutionManagement {
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
}
}
include ':app'