Fixed NDK version to bypass an issue on Travis.

This commit is contained in:
Antoine POPINEAU 2020-05-30 21:44:41 +02:00
parent 06f8ddf931
commit d0d64bad9d
No known key found for this signature in database
GPG Key ID: A78AC64694F84063
2 changed files with 3 additions and 1 deletions

View File

@ -19,7 +19,7 @@ cache:
- "$HOME/.android/build-cache"
before_install:
- echo y | sdkmanager ndk-bundle
- yes | sdkmanager ndk-bundle
script:
- "./gradlew app:assembleDebug"

View File

@ -45,6 +45,8 @@ android {
minSdkVersion(23)
targetSdkVersion(29)
ndkVersion = "21.2.6472646"
versionCode = androidGitVersion.code()
versionName = androidGitVersion.name()
}