Android on Netbeans 6.9.1: package name is invalid

I am new to Android development. In fact, I have not started yet, because I always get the error: β€œPackage name is invalid” when trying to create a new project in Netbeans 6.9.1. I installed the Android SDK (the path is listed in NB) and the platforms are available. Does anyone know what I did wrong, or how I can solve my problem. I want to start soon.

respectfully

+6
source share
2 answers

To create a package, use a period, not a space, for example:
android.bug not android bug

+15
source

It must be in reverse DNS format (e.g. com.example). More details here .

+2
source

Source: https://habr.com/ru/post/886590/


All Articles