2011-03-18 130 views

回答

7

可能相同的应用程序已经安装到设备上,但使用不同的计算机,现在您正试图从计算机上安装相同的未签名应用程序。

解决方案1:卸载已安装的应用程序。 解决方案2:签署应用程序并尝试安装

这实际上发生在未签名的apk文件中,因为对于未签名的apks,android使用的是不同于计算机的debug.keystore。

+0

谢谢。签署应用程序的作品。但是,您是否知道如何让平板电脑接受生成速度更快的未签名应用程序。谢谢 – Androider 2011-03-18 03:34:08

+0

让我作为另一个问题发表一下。 – Androider 2011-03-18 03:35:41

+0

好的。请回答这个,如果你可以:http://stackoverflow.com/questions/5347804/how-to-get-system-installer-on-tablet-to-accept-unsigned-app – Androider 2011-03-18 03:39:41

2

adb logcat从官方Android dev tools很可能是有帮助的。 (最后在2.3中有一些几乎有用的错误对话框,但你几乎需要成为一个ROM头或者足够丰富的手机,每隔几个月就扔掉手机来获取它们。)

+0

我一直无法通过ADB到达设备,就像我可以在我的android手机上一样。 – Androider 2011-03-18 03:34:43

+0

请回答这个如果你可以:http://stackoverflow.com/questions/5347804/how-to-get-system-installer-on-tablet-to-accept-unsigned-app – Androider 2011-03-18 03:39:09

+0

btw你知道什么日志文件我可能会检查系统安装程序可能更好地解释自己的位置 – Androider 2011-03-18 03:45:36

0

其实只是发生在我身上:从2台不同的计算机上深化发展,并在这里是什么logcat的说:[2011-03-17 23:05:58 - CustomTabs] Uploading CustomTabs.apk onto device 'HT93SKF05669' [2011-03-17 23:05:59 - CustomTabs] Installing CustomTabs.apk... [2011-03-17 23:06:06 - CustomTabs] Re-installation failed due to different application signatures. [2011-03-17 23:06:06 - CustomTabs] You must perform a full uninstall of the application. WARNING: This will remove the application data! [2011-03-17 23:06:06 - CustomTabs] Please execute 'adb uninstall com.fy.box.android' in a shell. [2011-03-17 23:06:06 - CustomTabs] Launch canceled! [2011-03-17 23:08:14 - CustomTabs] ------------------------------ [2011-03-17 23:08:14 - CustomTabs] Android Launch! [2011-03-17 23:08:14 - CustomTabs] adb is running normally. [2011-03-17 23:08:14 - CustomTabs] Performing com.fy.box.android.CustomTabActivity activity launch [2011-03-17 23:08:16 - CustomTabs] Uploading CustomTabs.apk onto device 'HT93SKF05669' [2011-03-17 23:08:16 - CustomTabs] Installing CustomTabs.apk... [2011-03-17 23:08:44 - CustomTabs] Success! [2011-03-17 23:08:44 - CustomTabs] Starting activity com.fy.box.android.CustomTabActivity on device HT93SKF05669

,如果你已经安装了应用程序,将其卸载,并尝试重新安装...希望这有助于!

+0

谢谢。问题是在我的情况下,它不接受未签名的应用程序。如果可以,请回答。 http://stackoverflow.com/questions/5347804/how-to-get-system-installer-on-tablet-to-accept-unsigned-app – Androider 2011-03-18 03:40:45