build: update build.gradle

master
Reza_ashrafi 2 years ago
parent 4a4191e739
commit 5f0efb356b
  1. 10
      android/app/build.gradle
  2. 952
      android/app/src/main/assets/index.android.bundle
  3. BIN
      keystore

@ -228,6 +228,12 @@ android {
keyAlias 'androiddebugkey'
keyPassword 'android'
}
release {
storeFile file('your_key_name.keystore')
storePassword 'your_key_store_password'
keyAlias 'your_key_alias'
keyPassword 'your_key_file_alias_password'
}
}
buildTypes {
debug {
@ -236,7 +242,9 @@ 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"
}

File diff suppressed because one or more lines are too long

Binary file not shown.
Loading…
Cancel
Save