enrecipes/app/resources/Android/app.gradle

32 lines
801 B
Groovy
Raw Normal View History

2020-09-15 11:10:16 +00:00
// 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"
2020-09-15 11:10:16 +00:00
android {
defaultConfig {
2021-01-13 05:02:48 +00:00
versionCode 6
versionName '1.3.0'
applicationId 'com.vishnuraghav.enrecipes'
minSdkVersion 21
2020-09-15 11:10:16 +00:00
generatedDensities = []
2021-01-23 17:20:15 +00:00
// ndk {
// abiFilters.clear()
// abiFilters.addAll(['arm64-v8a', 'x86'])
// }
2020-09-15 11:10:16 +00:00
}
aaptOptions {
additionalParameters "--no-version-vectors"
}
}