How to get System Installer on Tablet to accept Unsigned App

I work in dev mode and do not have ADB access to the Android 2.1 tablet. I want to just quickly transfer an unsigned application to download and install. However, the installer always says that the application is not installed without explanation. So I need to know how to get the installer to accept an unsigned application. the signed applications are installed perfectly, and I have Unknown sources verified in the applications.

+1
android installation apk
source share
1 answer

Go to the next

Settings → Application Settings → Check Unknown Sources.

To install apk from the command line, you need to run the following adb install command [file] .apk

in my experience, you are installing unsigned apk from this command, and it is not possible to install unsigned apk from running the application from eclipse by right-clicking on the project and selecting run and launch the Android application.

+1
source share

All Articles