INSTALL_FAILED_OLDER_SDK - error message

I use the basic hello world program on my LG Thrive phone that uses Android 2.2.1. I used API level 8 for the application, but still getting the above error. Any other possible reason this error is flagged?

EDIT: I overcame this problem when I ran the application in my virtual emulator and then on the phone. The reason I did this was that I had to change the API level from 15 to 8 before, and just changing and saving the manifest file and project properties - the apk file did not update. However, it was updated after running the program on a virtual emulator. Any reason the apk file has not been updated previously?

+4
source share
1 answer

If you install apk on the phone using the shell, and you have already verified that you compiled it for the correct target (Api 8 o lesser), create another emulator for Api 8 and try to compile it. If this fails, you will not configure it correctly.

+2
source

Source: https://habr.com/ru/post/1387777/


All Articles