繁体   English   中英

失败[INSTALL_FAILED_OLDER_SDK]错误

[英]Failure [INSTALL_FAILED_OLDER_SDK] error

我在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>

更新的build.gradle文件,其中包含compilesdkversion = 18

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.+'
}

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

用其他东西替换android-L可能是2019 “ L”开发人员预览版只能在配备“ L”的设备和仿真器上使用。

另外, targetSdkVersion中的build.gradle会覆盖清单中的目标。 targetSdkVersion中的build.gradle替换为20

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM