1

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

Ilya Karnaukhov
  • 3,838
  • 7
  • 31
  • 53
  • 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 Answers2

0
  1. Choose Hide Empty Middle Packages in Project pane setting.
  2. You click right directory Refactor->Rename.
  3. Then, update applicationId in build.gradle
  4. and then change package name in AndroidManifest.xml.
  5. 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