I'm converting an existing app that was made in ReactNative to Kotlin. We want to update the app at the end and not create a new one.
In order to do that we have to use the same package name but the old dev team named the package: app.something.react.native
. When I try to name the package that way II have the following error:
Package 'app.something.react.native' from AndroidManifest.xml is not a valid Java package name as 'native' is a Java keyword.
Is there a way to either make kotlin accepting this package name or change the package name without having to publish it as a new app ? Thanks for your help!