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
|
|
|
|
|
2020-10-24 18:02:35 +00:00
|
|
|
|
|
|
|
// abiFilter "arm64-v8a" "armeabi-v7a" "x86" "x86_64"
|
|
|
|
|
|
|
|
|
2020-09-15 11:10:16 +00:00
|
|
|
android {
|
|
|
|
defaultConfig {
|
2021-02-28 18:49:36 +00:00
|
|
|
versionCode 7
|
2021-03-23 06:16:25 +00:00
|
|
|
versionName '1.3.2'
|
2020-11-07 12:33:07 +00:00
|
|
|
applicationId 'com.vishnuraghav.enrecipes'
|
2021-04-12 18:09:48 +00:00
|
|
|
minSdkVersion 23
|
|
|
|
targetSdkVersion 30
|
|
|
|
compileSdkVersion 30
|
2020-09-15 11:10:16 +00:00
|
|
|
generatedDensities = []
|
2021-01-23 17:25:56 +00:00
|
|
|
ndk {
|
|
|
|
abiFilters.clear()
|
|
|
|
abiFilters.addAll(['arm64-v8a', 'armeabi-v7a', 'x86'])
|
|
|
|
}
|
2020-09-15 11:10:16 +00:00
|
|
|
}
|
|
|
|
aaptOptions {
|
|
|
|
additionalParameters "--no-version-vectors"
|
|
|
|
}
|
2021-04-15 12:09:44 +00:00
|
|
|
// buildTypes {
|
|
|
|
// release {
|
|
|
|
// minifyEnabled true
|
|
|
|
// shrinkResources false
|
|
|
|
// debuggable false
|
|
|
|
// jniDebuggable false
|
|
|
|
// renderscriptDebuggable false
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
2020-09-15 11:10:16 +00:00
|
|
|
}
|