The android project generator from the CLI, e.g react-native android, fails if the name specified in package.json contains dashes, eg "my-react-app". Instead of rejecting names with dashes, can we strip out the dashes in dash-cased names, e.g. "my-react-app" -> "com.myreactapp" when generating the java package? This is really helpful because NPM modules are generally dash-cased, while Java packages are usually all lower cased.
The android project generator from the CLI, e.g
react-native android, fails if the name specified in package.json contains dashes, eg "my-react-app". Instead of rejecting names with dashes, can we strip out the dashes in dash-cased names, e.g. "my-react-app" -> "com.myreactapp" when generating the java package? This is really helpful because NPM modules are generally dash-cased, while Java packages are usually all lower cased.