We have a need to change the application id of a react native app, after the apk has been built. I am using "apktool d app.apk" to decode the apk. I then edit app/apktool.yml and change the renameManifestPackage from null to our new application id.
I then rebuild the apk with "apktool b app -o new-app.apk". Next I zipalign and resign the app. After doing this if I install the app on a device, I see that it has the new application id, but the logo on the launch screen does not show up. There are also some BuildConfig variables that are no longer set.
Is there someplace else that react-native uses the application id, that I would have to change it?