Android Release Not Updating SDK 33

I’m having an issue where running ./gradlew assembleRelease builds, but builds an outdated version. Running ./gradlew installDebug works and even works in production mode. I’ve ran everything I could think of, but not sure where it’s getting hung up at.

Here’s the script I wrote to try to build an updated version

react-native bundle --platform android --dev false --entry-file App.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res && cd android && ./gradlew clean && ./gradlew assembleRelease

I’ve fixed this issue myself. I just reimported my app into a blank ejected SDK 35 app.

1 Like