We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14c0f9c commit 9641b42Copy full SHA for 9641b42
1 file changed
android/app/build.gradle
@@ -98,10 +98,21 @@ android {
98
include "armeabi-v7a", "x86"
99
}
100
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
111
buildTypes {
112
release {
113
minifyEnabled enableProguardInReleaseBuilds
114
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
115
+ signingConfig signingConfigs.release
116
117
118
// applicationVariants are e.g. debug, release
0 commit comments