I have a React Native application built with create-react-native-app. I want to banish the application and use the link for links to create applications for iOS and Android. The problem I am facing is the namespace for my application, this com.company.app, and the way the Android application is thrown is ./android/app/src/main/java/com/appNOT ./android/app/src/main/java/com/company/app. This causes problems when trying to start the link because it expects the full path (with the company).
Is there any way to control this? I see that the command react-native ejecthas a parameter --config, but I could not find any documentation there.
thanks
source
share