To change the package name from com.myappcom.myapp to: com.mycompany.myappcom.mycompany.myapp (for example),
For iOS app of the react app, use xcode - under general.
For iOS app of the react app, use xcode - under general.For the android app, open the build.gradle at module level. The one in the android/app folder. You will find
For the android app, open the build.gradle at module level. The one in the... defaultConfig { applicationId com.myapp ... } ...android/appfolder. You will find
// ... defaultConfig { applicationId com.myapp // ... } // ... Change the "com.myapp"com.myapp to whatever you need.
Hope this helps.