Home > Back-end >  how can i release apk again after editing code in an already release app in react native
how can i release apk again after editing code in an already release app in react native

Time:03-15

I have used this command cd android ./gradlew clean ./gradlew assembleRelease npx react-native run-android --variant=release

but i found apk first one not update one.

CodePudding user response:

You have to build apk again to see changes.

CodePudding user response:

You can't do it. You must publish a new version. And you cannot delete any version from Google play console

CodePudding user response:

The command that you have used ./gradlew clean ./gradlew assembleRelease npx react-native run-android --variant=release simply creates a new AAB (here you can check the difference between an APK and an AAB) for release on the Google Play Store.

From your question:

but i found apk first one not update one.

It seems that the new AAB is overwriting the previous one (which is expected). So, if you want to release this new version, you must go to your Google Play Developer Console, create a new version for production, and upload the AAB you just created.

  • Related