We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95fc53c commit 03f385fCopy full SHA for 03f385f
android/app/build.gradle
@@ -96,6 +96,14 @@ android {
96
abiFilters "armeabi-v7a", "x86"
97
}
98
99
+ signingConfigs {
100
+ release {
101
+ storeFile file("my-release-key.keystore")
102
+ storePassword "dhanalaa"
103
+ keyAlias "my-key-alias"
104
+ keyPassword "dhanalaa"
105
+ }
106
107
splits {
108
abi {
109
reset()
@@ -108,6 +116,7 @@ android {
116
release {
117
minifyEnabled enableProguardInReleaseBuilds
110
118
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
119
+ signingConfig signingConfigs.release
111
120
112
121
113
122
// applicationVariants are e.g. debug, release
0 commit comments