change the packing options to exclude other platform libraries
This commit is contained in:
parent
7e3b7a02ff
commit
31dc5ea817
1 changed files with 17 additions and 2 deletions
|
@ -7,8 +7,8 @@ android {
|
|||
applicationId "cy.agorise.crystalwallet"
|
||||
minSdkVersion 19
|
||||
targetSdkVersion 26
|
||||
versionCode 1
|
||||
versionName "0.1t.alpha"
|
||||
versionCode 2
|
||||
versionName "0.2t.alpha"
|
||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||
javaCompileOptions {
|
||||
annotationProcessorOptions {
|
||||
|
@ -26,6 +26,21 @@ android {
|
|||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
|
||||
productFlavors {
|
||||
}
|
||||
|
||||
lintOptions {
|
||||
disable 'MissingTranslation','ExtraTranslation'
|
||||
checkReleaseBuilds false
|
||||
abortOnError false
|
||||
}
|
||||
|
||||
android.packagingOptions {
|
||||
exclude 'lib/x86_64/darwin/libscrypt.dylib'
|
||||
exclude 'lib/x86_64/freebsd/libscrypt.so'
|
||||
exclude 'lib/x86_64/linux/libscrypt.so'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
Loading…
Reference in a new issue