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

后端 未结 14 1580
滥情空心
滥情空心 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

    After I changed

    defaultConfig {
        applicationId "com.example.bocheng.myapplication"
        minSdkVersion 15
        targetSdkVersion 'L' #change this to 19
        versionCode 1
        versionName "1.0"
    }
    

    in build.gradle file.

    it works

提交回复
热议问题