我製作了一個帶eclipse的android應用程序,我可以在手機上正常進行調試。我也可以正常安裝應用程序的已簽名apk。無法在其他手機上安裝我的應用程序
但是,如果我送這個APK的朋友,他們不能安裝它們,與德國的錯誤:"Datei kann nicht geöffnet werden"
或"anwendung für diese Aktion kann nicht gefunden werden"
,翻譯:"could not open file"
和"could not find app for this action"
。
我不知道什麼是錯的。
我插入這些手機中的一個,並用的logcat抓起錯誤:
W /下載管理器(12940):未能啓動意圖{ ACT = android.intent.action.VIEW DAT =含量:// downloads/all_downloads/96 typ = application/octet-stream flg = 0x3}:android.content.ActivityNotFoundException:No Activity found處理意圖{act = android.intent.action.VIEW dat = content://downloads/all_downloads/96 typ = application/octet-stream flg = 0x3}
奇怪的是,我可以在手機上調試應用程序沒有錯誤。
他們有像我這樣的Android版本:4.4.4 和應用程序有:android:minSdkVersion =「13」 – user3794062