bump to 15.82

This commit is contained in:
Yuriy Liskov
2022-08-13 01:04:59 +03:00
parent a4e5829113
commit 40f9a6cded

View File

@@ -59,8 +59,8 @@ android {
applicationId "com.liskovsoft.smarttubetv"
minSdkVersion project.properties.minSdkVersion
targetSdkVersion project.properties.targetSdkVersion
versionCode 771
versionName "15.81"
versionCode 772
versionName "15.82"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"
@@ -69,8 +69,10 @@ android {
multiDexEnabled = true
// https://stackoverflow.com/questions/37382057/android-apk-how-to-exclude-a-so-file-from-a-3rd-party-dependency-using-gradle
// armeabi-v7a backward compatible with arm64-v8a, x86 -> x86_64 etc
ndk {
abiFilters "armeabi-v7a", "arm64-v8a"
abiFilters "armeabi-v7a"
//abiFilters "armeabi-v7a", "x86"
//abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
}
}