enrecipes/app/resources/Android/app.gradle
2020-12-07 20:15:00 +05:30

37 lines
879 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 3
versionName '1.1.2'
applicationId 'com.vishnuraghav.enrecipes'
minSdkVersion 21
generatedDensities = []
ndk {
abiFilters.clear()
abiFilters.addAll(['x86','armeabi-v7a','arm64-v8a'])
}
}
aaptOptions {
additionalParameters "--no-version-vectors"
}
// bundle {
// language {
// enableSplit = false
// }
// }
}