在这里有谁拥有2个相互覆盖的Android项目经验?如果我想安装第二个,我不能安装第一个,因为它会导致错误。我已经尝试创建一个新项目并复制第二个应用程序的源代码,但我遇到了同样的问题。还尝试使用“-clean”命令清理我的工作区,但它没有帮助。谁知道解决方案?
错误表示我的第一个活动(即我的启动画面)的包不会退出。除非我还没有安装第一个应用程序,因为那时一切正常......
提前致谢。
@EDIT:
错误:
[2013-06-28 10:06:09 - KCStandaard] Starting activity com.android.standard.actSplash on device 1e0dc11e
[2013-06-28 10:06:09 - KCStandaard] New package not yet registered with the system. Waiting 3 seconds before next attempt.
[2013-06-28 10:06:12 - KCStandaard] Starting activity com.android.standard.actSplash on device 1e0dc11e
[2013-06-28 10:06:13 - KCStandaard] New package not yet registered with the system. Waiting 3 seconds before next attempt.
[2013-06-28 10:06:16 - KCStandaard] Starting activity com.android.standard.actSplash on device 1e0dc11e
[2013-06-28 10:06:17 - KCStandaard] New package not yet registered with the system. Waiting 3 seconds before next attempt.
[2013-06-28 10:06:20 - KCStandaard] Starting activity com.android.standard.actSplash on device 1e0dc11e
[2013-06-28 10:06:20 - KCStandaard] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.koeriers.tools/com.android.standard.actSplash }
[2013-06-28 10:06:20 - KCStandaard] New package not yet registered with the system. Waiting 3 seconds before next attempt.
[2013-06-28 10:06:23 - KCStandaard] Starting activity com.android.standard.actSplash on device 1e0dc11e
[2013-06-28 10:06:24 - KCStandaard] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.koeriers.tools/com.android.standard.actSplash }
[2013-06-28 10:06:24 - KCStandaard] ActivityManager: Error type 3
[2013-06-28 10:06:24 - KCStandaard] ActivityManager: Error: Activity class {com.koeriers.tools/com.android.standard.actSplash} does not exist.
我只在安装了第一个或第二个应用程序时才收到此错误。而我正在尝试运行另一个。
答案 0 :(得分:3)
不要将com.android
用作包名称的一部分。
我再说一遍,不要将com.android
用作包名称的一部分。这是系统包名称,而不是包名称。
答案 1 :(得分:1)
通过右键单击项目> Android工具>重命名应用程序包重命名应用程序,希望这对您有用。
答案 2 :(得分:0)
如果在第二个项目中你包含了第一个项目或其中的一部分,那么你很可能在安装它时遇到问题。如果不是这种情况,请在此处粘贴代码或提供链接,以便我们可以查看问题所在。