Skip to content

Instantly share code, notes, and snippets.

@JoDeveloper
Created July 23, 2020 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JoDeveloper/26e60df56331c82dad2409c7773c470f to your computer and use it in GitHub Desktop.
Save JoDeveloper/26e60df56331c82dad2409c7773c470f to your computer and use it in GitHub Desktop.
lintOptions {
disable 'InvalidPackage'
}
aaptOptions {
cruncherEnabled = false
}
defaultConfig {
applicationId "com.jodeveloper.missing"
minSdkVersion 16
targetSdkVersion 29
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled true
shrinkResources true
useProguard true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment