Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android System Installer App "Application Not Installed" why? where is log for this?

I am trying to install an unsigned apk by placing in download directory.
Installer comes up and has a few warning like allow to modify properties etc.
I click on install and it just says Application Not Installed?

What is the possible reason for it and in what log file would the installer tell me the problem.
Where is this log file?

Thanks

like image 597
Androider Avatar asked Mar 18 '11 03:03

Androider


People also ask

How do I find out why an App is not installed?

The Android app not installed error can be combated after resetting app permissions. Go to Settings > Apps > Reset App Preferences/Reset Application Permissions. After this, third-party software can be installed on your device.

Why is it showing App not installed in Android?

By default Android allows installation only from the Play Store. In order to allow installation of apps from other sources, open the Settings app and locate "Install Unknown Apps" under Privacy/Security settings. Enable the permission for the app which you use to install your APK.


2 Answers

It could be possible that the same application was already installed over to the device but with different computer and now you are trying to install the same unsigned app from your computer.

SOLUTION 1 : uninstall that installed application. SOLUTION 2 : Sign the application and try to install

This actually happens with the unsigned apk file because for the unsigned apks, android uses the debug.keystore which is different from computer to computer.

like image 80
Rohit Mandiwal Avatar answered Oct 24 '22 06:10

Rohit Mandiwal


adb logcat from the official Android dev tools is likely to be helpful. (There are some almost useful error dialogs finally in 2.3, but you pretty much need to be a ROM-head or rich enough to throw away phones every couple months to get them.)

like image 36
geekosaur Avatar answered Oct 24 '22 06:10

geekosaur