Installation error: INSTALL_FAILED_OLDER_SDK

前端 未结 19 1659
太阳男子
太阳男子 2020-11-28 09:37

I am new to Android development and I want first to get the Hello World application running. I am using Eclipse IDE and the Android 4.0.3 version 15 SDK. I copi

19条回答
  •  温柔的废话
    2020-11-28 10:25

    I tried all the responses described here but my solution was changing inside my build.gradle file minSdkVersion from 8 to 9 because some libraries in my project can´t work with API 8, that´s was the reason for the message INSTALL_FAILED_OLDER_SDK:

    apply plugin: 'com.android.application'
    
        android {
            compileSdkVersion 22
            buildToolsVersion "22.0.1"
    
            defaultConfig {
                applicationId "com.tuna.hello.androidstudioapplication"
                minSdkVersion 9
                targetSdkVersion 22
                versionCode 1
                versionName "1.0"
            }
    ...
    ...
    ...
    

提交回复
热议问题