How to change the android package name from two parts to three parts

Viewed 313

I'm new to android development. And recently I bought an app template and it has two package name. company.appname. I want to change it to com.company.appname.

Thanks

1 Answers

1. You can the package name from the app:module gradle

enter image description here

2. and also you can rename the module from the project structure

enter image description here

3. for more info please check this link thanks to @Sheharyar

Related