Commit be5659a4 authored by 7c00's avatar 7c00

Add example.keystore

parent 8ce1062c
...@@ -115,7 +115,18 @@ android { ...@@ -115,7 +115,18 @@ android {
include "armeabi-v7a", "x86" include "armeabi-v7a", "x86"
} }
} }
signingConfigs {
example {
storeFile file("example.keystore")
storePassword "android"
keyAlias "example"
keyPassword "android"
}
}
buildTypes { buildTypes {
debug {
signingConfig signingConfigs.example
}
release { release {
minifyEnabled enableProguardInReleaseBuilds minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment