enrecipes/App_Resources/Android/app.gradle
2020-11-06 14:37:41 +05:30

31 lines
739 B
Groovy

// Add your native dependencies here:
// Uncomment to add recyclerview-v7 dependency
//dependencies {
// implementation 'com.android.support:recyclerview-v7:+'
//}
// If you want to add something to be applied before applying plugins' include.gradle files
// e.g. project.ext.googlePlayServicesVersion = "15.0.1"
// create a file named before-plugins.gradle in the current directory and place it there
// abiFilter "arm64-v8a" "armeabi-v7a" "x86" "x86_64"
android {
defaultConfig {
versionCode 2
versionName '1.0.0'
minSdkVersion 19
generatedDensities = []
ndk {
abiFilters.clear()
abiFilters.addAll(['arm64-v8a','x86'])
}
}
aaptOptions {
additionalParameters "--no-version-vectors"
}
}