新建一個eclipse-android項目後,如test2,從其它項目中拷貝若干個包到test2中,android
在編譯時總會出現如下錯誤:eclipse
?主要看第三條:The project cannot be built until build path errors are resolvedui
這個錯誤的緣由是:AndroidManifest.xml中配置的主包名與AndroidManifest.xml 中配置的activtiy所在的包不一致形成的。spa
修改方法爲:xml
1.在AndroidManifest.xml中找到如下紅色標的處: ip
<activityit
android:name=".MainActivity"編譯
......test
</activity>cli
2.肯定MainActivity所在的包名,將其填寫到如下紅色標的處便可。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.packagename"