I seem to be having some issues with renaming as my app keep crashing when I try to run it. My app package name is com.einee and I want to rename it to org.biggo.einee
Asked
Active
Viewed 208 times
1
-
It seems a similar issue was solved [here](https://stackoverflow.com/questions/6600329/how-do-i-rename-the-android-package-name) and [here](https://stackoverflow.com/questions/16804093/android-studio-rename-package) – udit7395 Mar 29 '18 at 19:36
2 Answers
0
- Choose
Hide Empty Middle Packages
in Project pane setting. - You click right directory
Refactor->Rename
. - Then, update
applicationId
inbuild.gradle
- and then change package name in
AndroidManifest.xml
. - Clean and Rebuild.

Tung Tran
- 2,885
- 2
- 17
- 24
-1
Easy way is to rename the package name in the whole project using
Ctrl+Shift+R

Syed Arsalan Kazmi
- 949
- 1
- 11
- 17