如何让平板电脑上的系统安装程序接受未签署的应用程序[英] How to get System Installer on Tablet to accept Unsigned App

本文是小编为大家收集整理的关于如何让平板电脑上的系统安装程序接受未签署的应用程序的处理/解决方法,可以参考本文帮助大家快速定位并解决问题,中文翻译不准确的可切换到English标签页查看源文。

问题描述

我处于开发模式,无法访问Android 2.1平板电脑.我只想快速将未签名的应用程序传输到下载安装.但是,安装程序总是说如果没有理由就不会安装应用程序.因此,我需要知道如何让安装程序接受未签名的应用程序.签名的应用程序安装正常,我确实在应用程序下检查了未知来源.

推荐答案

转到以下

设置 - >应用程序设置 - >检查未知来源.

要从命令提示符中安装APK adb install [file] .apk

根据我的经验,您无法从此命令中安装一个未签名的APK,并且安装Unsigned APK的唯一方法是通过右键单击项目并选择运行并运行Android应用程序来从Eclipse运行该应用程序./p>

本文地址:https://www.itbaoku.cn/post/1937995.html

问题描述

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.

推荐答案

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.