我正试图在eclipse中复制我的android项目。我使用了ctr c和ctr v,它起作用了。但是,他们是一种改变包名的方法吗?无法弄清楚该怎么做。我确实看到一条消息说你可以使用重构器。我没有在重构中看到这个选项。
答案 0 :(得分:0)
构建应用程序时的软件包名称来自AndroidManifest.xml
只需更改根元素的包属性:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yourdomain.newpackage"
android:versionCode="28"
android:versionName="2.2.1"
android:installLocation="auto">
要更改所有类的包名称,请在项目层次结构中选择根元素,右键单击并选择Refactor&gt;重命名