You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using react native Expo to develop the app but not the expo build to save some reasons. So I've written my own CICD where I'm generating the android artifacts on the fly with expo prebuild and then building the release version with gradle. I've created my local keystore(upload keystore) and uses it to sign my release build. But when I try to upload this signed .aab file to my project in playstore, I get the following error -
Command used to create local keystore (only prompts for keyStorePassword not for keyPassword, so using same for both) -
I guess before creating a release you need to do the following:
release {
// remove this line on build process //
signingConfig signingConfigs.debug
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
I'm using react native Expo to develop the app but not the
expo build
to save some reasons. So I've written my own CICD where I'm generating the android artifacts on the fly withexpo prebuild
and then building the release version withgradle
. I've created my local keystore(upload keystore) and uses it to sign my release build. But when I try to upload this signed .aab file to my project in playstore, I get the following error -Command used to create local keystore (only prompts for keyStorePassword not for keyPassword, so using same for both) -
github action -
The text was updated successfully, but these errors were encountered: