Disable 64-bit builds so more devices could update to the newest version

This commit is contained in:
Javi Rueda 2020-09-29 10:02:11 +02:00
parent 34c4856f45
commit 88c2c11a01

View file

@ -32,12 +32,12 @@ android {
abiFilter "armeabi-v7a" abiFilter "armeabi-v7a"
} }
} }
__64bit { // __64bit {
versionCode android.defaultConfig.versionCode * 10 + 2 // versionCode android.defaultConfig.versionCode * 10 + 2
ndk { // ndk {
abiFilter "arm64-v8a" // abiFilter "arm64-v8a"
} // }
} // }
} }
buildTypes { buildTypes {
@ -115,6 +115,6 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
__32bitImplementation 'io.lbry:lbrysdk32:0.81.0' __32bitImplementation 'io.lbry:lbrysdk32:0.81.0'
__64bitImplementation 'io.lbry:lbrysdk64:0.81.0' // __64bitImplementation 'io.lbry:lbrysdk64:0.81.0'
} }