失败[INSTALL_FAILED_OLDER_SDK]错误

时间:2014-08-10 21:49:25

标签: android

我在API 18设置了一个AVD模拟器,我的清单如下:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="pushpindesigns.com.lines"
android:versionCode="1"
android:versionName="1.0">

<uses-sdk android:minSdkVersion="12" android:targetSdkVersion="20"/>

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme">
    <activity
        android:name=".mainActivity"
        android:label="@string/app_name"
        android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Level_1"
        android:label="@string/title_activity_level_1" >
    </activity>
</application>

更新了包含compilesdkversion = 18

的build.gradle文件
apply plugin: 'com.android.application'

android {
compileSdkVersion 18
buildToolsVersion "20.0.0"

defaultConfig {
    applicationId "pushpindesigns.com.lines"
    minSdkVersion 8
    targetSdkVersion 'L'
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        runProguard false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:19.+'
}

上面的代码已更新,但仍然无效.................让我知道您的想法

1 个答案:

答案 0 :(得分:2)

android-L替换为其他内容 - 2019可能是选择。 &#34; L&#34;除了&#34; L&#34;配备设备和模拟器之外,开发人员预览版不适用于任何其他内容。

此外,targetSdkVersion中的build.gradle会覆盖您的清单中的targetSdkVersion。将build.gradle中的20替换为{{1}}。