How to change name of project in Android Studio

前端 未结 7 2090
暗喜
暗喜 2021-02-19 15:22

Imported an eclipse project into Android Studio and saved it in a new folder. Changed the package name and everything to new names but the Project\'s name is still the one from

7条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-19 15:29

    1. Change the name in manifest file. android:label="@string/app_name"
    2. There's a build.gradle file inside your app folder. Change the package name from there. Make sure you edit the build.gradle file inside your app folder, not the one in the root of your project.

提交回复
热议问题