Setting android package name

I tried to set an android package name with the following command:

ionic start myproject blank --id=com.my.package --appname=“Appname” , but it didn’t work.
After adding android platform, the package name was set to default.
Could anyone tell me please how can I set the package name correctly from the start?

Thanks a lot!

In config.xml:

<widget id="com.my.package" ...
    <name>AppName</name>
2 Likes

thanks a lot, it worked

1 Like

is it required in that format? com.my.package?