We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15b4b2b commit de15fcaCopy full SHA for de15fca
android/app/build.gradle
@@ -106,11 +106,19 @@ android {
106
release {
107
// Caution! In production, you need to generate your own keystore file.
108
// see https://reactnative.dev/docs/signed-apk-android.
109
- signingConfig signingConfigs.debug
+ if (project.hasProperty('ENDERCHAT_UPLOAD_STORE_FILE')) {
110
+ signingConfig signingConfigs.release
111
+ } else {
112
+ signingConfig signingConfigs.debug
113
+ }
114
minifyEnabled enableProguardInReleaseBuilds
115
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
116
}
117
118
+ // TODO: react-native-vector-icons is causing issues, so this is disabled for now
119
+ lintOptions {
120
+ checkReleaseBuilds false
121
122
123
124
dependencies {
0 commit comments