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
Post a Comment