How to debug the issue Unable to install the app from APK in Android -


i have android application.

my qa reported when try deploy build apks in various emulators, apk not getting installed in os versions less 4.3.3. however, it's installing in emulator or device versions greater 4.3.3

but try , debug issue, ran application "android studio" on emulators of version less 4.3.3, application gets deployed properly.

does mean it's not programming issue, build file or packaging issue?

here's gradle snippet

android { compilesdkversion 21 buildtoolsversion '21.1.2'  defaultconfig {     applicationid 'com.intuit.qm2014'     minsdkversion 14     targetsdkversion 21 } 

how debug/fix these type of issues?

try install on problem devices command

adb install path_to_apk

and see output.

also see logcat output on problem devices (possibly filter tag "package manager") , you'll see info installation failed.


Comments

Popular posts from this blog

qt - Using float or double for own QML classes -

Create Outlook appointment via C# .Net -

ios - Swift Array Resetting Itself -