1
0
Fork 0

Update ndk abiFilters config

master
xiaoyu 2020-12-29 16:08:48 +08:00
parent 961e359eeb
commit 897a30bb48
1 changed files with 6 additions and 1 deletions

View File

@ -20,6 +20,10 @@ android {
buildConfigField "String", "API_URL", "\"https://mp.finogeeks.com\""
// API
buildConfigField "String", "API_PREFIX", "\"/api/v1/mop/\""
ndk {
abiFilters "x86", "armeabi", 'armeabi-v7a', 'arm64-v8a'
}
}
signingConfigs {
debug {
@ -37,7 +41,7 @@ android {
}
buildTypes {
debug {
minifyEnabled true
minifyEnabled false
signingConfig signingConfigs.debug
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
@ -66,4 +70,5 @@ dependencies {
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.finogeeks.lib:finapplet:2.13.38'
implementation "com.tencent.tbs.tbssdk:sdk:43967"
}