breautek commented on issue #1330: URL: https://github.com/apache/cordova-android/issues/1330#issuecomment-907841531
For the android platform, the bundle id becomes part of Java's package. By convention, Java uses reverse-domain style naming but not all domain characters are legal in java package names. Leading numbers is invalid in Java packages. I think hyphens are legal, but it cannot start with an hyphen. Note that every character after the dot is considered a "begin" of a new set. You can read more on what is valid or not valid in java package names here: https://docs.oracle.com/javase/tutorial/java/package/namingpkgs.html#:~:text=Naming%20Conventions,a%20programmer%20at%20example.com%20. I'll be closing this issue as not a bug, but if you have any other questions, feel free to ask and I'll try to answer to the best of my ability. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
