Skip to content

Commit

Permalink
✅ v1.0.0 Released!
Browse files Browse the repository at this point in the history
aminmeshk committed Sep 13, 2020
1 parent 0492f6a commit 3927222
Showing 2 changed files with 14 additions and 1 deletion.
11 changes: 10 additions & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -151,6 +151,14 @@ android {
keyAlias 'androiddebugkey'
keyPassword 'android'
}
release {
if (project.hasProperty('MYAPP_UPLOAD_STORE_FILE')) {
storeFile file(MYAPP_UPLOAD_STORE_FILE)
storePassword MYAPP_UPLOAD_STORE_PASSWORD
keyAlias MYAPP_UPLOAD_KEY_ALIAS
keyPassword MYAPP_UPLOAD_KEY_PASSWORD
}
}
}
buildTypes {
debug {
@@ -159,7 +167,8 @@ android {
release {
// Caution! In production, you need to generate your own keystore file.
// see https://reactnative.dev/docs/signed-apk-android.
signingConfig signingConfigs.debug
// signingConfig signingConfigs.debug
signingConfig signingConfigs.release
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
4 changes: 4 additions & 0 deletions android/gradle.properties
Original file line number Diff line number Diff line change
@@ -26,3 +26,7 @@ android.enableJetifier=true

# Version of flipper SDK to use with React Native
FLIPPER_VERSION=0.37.0
MYAPP_UPLOAD_STORE_FILE=gpsline-rn-demo-keystore01.keystore
MYAPP_UPLOAD_KEY_ALIAS=gpsline-rn-demo-keystore01alias
MYAPP_UPLOAD_STORE_PASSWORD=666676
MYAPP_UPLOAD_KEY_PASSWORD=666676

0 comments on commit 3927222

Please sign in to comment.