What does “Failure [INSTALL_FAILED_OLDER_SDK]” mean in Android Studio?

后端 未结 14 1572
滥情空心
滥情空心 2020-12-09 01:26

I got this Froyo (2.2) device that I am using to make an app. When I try to run the app directly to the device it shows an error saying

pkg:         


        
相关标签:
14条回答
  • 2020-12-09 02:12

    This error

    Failure [INSTALL_FAILED_OLDER_SDK]
    

    Means that you're trying to install an app that has a higher minSdkVersion specified in its manifest than the device's API level. Change that number to 8 and it should work. I'm not sure about the other error, but it may be related to this one.

    0 讨论(0)
  • 2020-12-09 02:13

    Make Sure the Select Run/Debug Configuration is wear or mobile as per your installation in android studio...

    0 讨论(0)
提交回复
热议问题