build.gradle : remove signing stuff for fast debug apk build.

This commit is contained in:
gitouche 2020-12-05 20:11:14 +01:00 committed by GitHub
parent 2c17165f15
commit 94386355bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 34 deletions

View File

@ -22,40 +22,6 @@ android {
versionCode 4
}
signingConfigs {
debug {
storeFile file("/path/to/debug.keystore")
storePassword "android"
keyAlias "androiddebugkey"
keyPassword "android"
}
release {
storeFile file("/path/to/debug.keystore")
storePassword "android"
keyAlias "androiddebugkey"
keyPassword "android"
}
}
buildTypes {
debug {
applicationIdSuffix ".debug"
versionNameSuffix "-debug"
signingConfig signingConfigs.debug
debuggable true
zipAlignEnabled false
minifyEnabled false
}
release {
versionNameSuffix "-release"
signingConfig signingConfigs.release
debuggable false
zipAlignEnabled true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
sourceSets {
main {
manifest.srcFile "AndroidManifest.xml"