如何让平板电脑上的系统安装程序接受未签名的应用程序
我处于开发模式,无法使用 ADB 访问 android 2.1 平板电脑。我想快速传输未签名的应用程序以供下载和安装。但是安装程序总是说应用程序未安装且没有给出原因。所以我需要知道如何让安装程序接受未签名的应用程序。签名的应用程序安装正常,并且我确实在应用程序下检查了未知来源。
I am in dev mode and have no ADB access to android 2.1 tablet. I want to just transfer quickly unsigned app to downloads and install. However installer always says Application not installed without giving reason. So I need to know how to get installer to accept an unsigned app. signed app installs fine, and I do have Unknown Sources Checked under applications.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
转到以下
设置 ->应用程序设置->检查未知来源。
要从命令提示符安装 apk,您需要遵循以下命令
adb install [file].apk
根据我的经验,通过此命令安装未签名的 apk 是不可能的,安装未签名的 apk 的唯一方法是通过右键单击项目并选择运行从 eclipse 运行应用程序,然后运行安卓应用程序。
Go to following
Settings -> Application Settings -> check Unknown Sources.
To install the apk from command prompt you need to follow following command
adb install [file].apk
as per my experience, you installing an unsigned apk from this command is not possible and the only way to install unsigned apk is from running the application from eclipse by right clicking the project and select run and than run an android application.