Revert "add basic signature in template (#22665)"

This reverts commit 63ebbd6bfc.
This commit is contained in:
Mike Grabowski
2019-02-13 16:35:06 +01:00
parent a252aee2ea
commit 977458442c
4 changed files with 12 additions and 14 deletions
-14
View File
@@ -116,22 +116,8 @@ android {
include "armeabi-v7a", "x86", "arm64-v8a", "x86-64"
}
}
signingConfigs {
debug {
storeFile file('debug.keystore')
storePassword 'android'
keyAlias 'androiddebugkey'
keyPassword 'android'
}
}
buildTypes {
debug {
signingConfig signingConfigs.debug
}
release {
// Caution! In production, you need to generate your own keystore file.
// see https://facebook.github.io/react-native/docs/signed-apk-android.
signingConfig signingConfigs.debug
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
Binary file not shown.
+8
View File
@@ -0,0 +1,8 @@
keystore(
name = "debug",
properties = "debug.keystore.properties",
store = "debug.keystore",
visibility = [
"PUBLIC",
],
)
@@ -0,0 +1,4 @@
key.store=debug.keystore
key.alias=androiddebugkey
key.store.password=android
key.alias.password=android