任何人在這裏誰有2個Android項目的壓倒一切的經驗?如果我想安裝第二個,我不能安裝第一個,因爲它會導致錯誤。我已經嘗試創建一個新項目並複製第二個應用程序的源代碼,但我遇到了同樣的問題。還嘗試用「-clean」命令清理我的工作區,但它沒有幫助。誰知道解決方案?Android項目相互重疊
錯誤說我的第一個活動(這是我的啓動畫面)的包不退出。除非我還沒有安裝應用程序第一,因爲那麼一切工作正常...
在此先感謝。
@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.
在已經安裝了第一或第二的應用程序,我只收到此錯誤。我試圖運行另一個。
他們使用相同的包名嗎? – Ostkontentitan
你能否詳細說明你的意思是「重寫」?會發生什麼,一步一步地發生,錯誤**究竟是什麼**等等? –
@Konstantin不,他們沒有。第一個使用com.android.standard,第二個使用com.android.second。 – user