Skip to content

Commit 9641b42

Browse files
author
soliury
committed
android for release
1 parent 14c0f9c commit 9641b42

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

android/app/build.gradle

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,21 @@ android {
9898
include "armeabi-v7a", "x86"
9999
}
100100
}
101+
102+
signingConfigs {
103+
release {
104+
storeFile file(MYAPP_RELEASE_STORE_FILE)
105+
storePassword MYAPP_RELEASE_STORE_PASSWORD
106+
keyAlias MYAPP_RELEASE_KEY_ALIAS
107+
keyPassword MYAPP_RELEASE_KEY_PASSWORD
108+
}
109+
}
110+
101111
buildTypes {
102112
release {
103113
minifyEnabled enableProguardInReleaseBuilds
104114
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
115+
signingConfig signingConfigs.release
105116
}
106117
}
107118
// applicationVariants are e.g. debug, release

0 commit comments

Comments
 (0)