首页 > 系统 > Android > 正文

Android 解决build path errors的问题

2019-12-12 05:13:04
字体:
来源:转载
供稿:网友

新建一个eclipse-android项目后,如test2,从其它项目中拷贝若干个包到test2中,
在编译时总会出现以下错误:

?主要看第三条:The project cannot be built until build path errors are resolved

这个错误的原因是:AndroidManifest.xml中配置的主包名与AndroidManifest.xml 中配置的activtiy所在的包不一致造成的。

修改方法为:

1.在AndroidManifest.xml中找到以下红色标的处:

<activity
android:name=".MainActivity"
......
 </activity>

2.确定MainActivity所在的包名,将其填写到以下红色标的处即可。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.android.packagename"

以上就是Android 解决build path errors的资料整理,后续继续补充相关资料,谢谢大家对本站的支持!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表