2013-08-07 36 views
0

我的android手機是Galaxy S 3. android系統4.1.2 當我將手機連接到計算機時,沒有應用程序可以通過eclipse運行。 他們都表明,」Android應用,上傳並安裝成功。但沒有顯示在我的設備上

[2013-08-07 15:11:43 - test005] Android Launch! 
[2013-08-07 15:11:43 - test005] adb is running normally. 
[2013-08-07 15:11:43 - test005] Performing com.example.test005.MainActivity activity launch 
[2013-08-07 15:11:43 - test005] Automatic Target Mode: Unable to detect device compatibility. Please select a target device. 
[2013-08-07 15:11:45 - test005] Uploading test005.apk onto device 'aa1974fe' 
[2013-08-07 15:11:45 - test005] Installing test005.apk... 
[2013-08-07 15:11:57 - test005] Success! 
[2013-08-07 15:11:57 - test005] Starting activity com.example.test005.MainActivity on device aa1974fe" 

但最終沒有發生在我的手機上。?? 和應用程序可以在我的另一部手機上運行。發生什麼事了? 銀河S3。Deverloper選項激活

+0

也許您已爲其他版本配置了您的應用程序,或者尚未在您的設備中激活Developer Option。 – Narkha

回答

3

檢查清單文件,你必須在上述logcat的這一行動,並相對類別標籤在主要活動的<intent-filter>標籤

<action android:name="android.intent.action.MAIN" /> 
<category android:name="android.intent.category.LAUNCHER" /> 
+0

我有。其實,我的應用程序可以通過我的其他Android手機上的eclipse運行。但在我的Galaxy S3上。它什麼都不顯示。我確定我激活了我的開發者選項USB degugging。 –

+0

如果你已經完成了所有需要的設置並且仍然有問題,那麼請閱讀以下內容:http://developer.android.com/tools/device.html –

0

你的應用是剛剛部署。其ñ ot starting ..再次運行,它會完美的工作,當應用程序啓動控制檯顯示這種類型的消息

ActivityManager:啓動:意圖{動作= android.intent.action.MAIN貓= [android.intent.category .LAUNCHER] cmp = com.flowers_1800/.HomeTabActivity}

相關問題