我在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.+'
}
上面的代码已更新,但仍然无效.................让我知道您的想法
答案 0 :(得分:2)
将android-L
替换为其他内容 - 20
或19
可能是选择。 &#34; L&#34;除了&#34; L&#34;配备设备和模拟器之外,开发人员预览版不适用于任何其他内容。
此外,targetSdkVersion
中的build.gradle
会覆盖您的清单中的targetSdkVersion
。将build.gradle
中的20
替换为{{1}}。