我刚刚安装了android L sdk平台并创建了一个模拟器,然后我用minSdkVersion创建了一个“L”的项目,但eclipse不会让我在模拟器上启动它一直告诉我:
ERROR: Application requires a device running 'L'!
Launch canceled!
这里是androidmanifest.xml:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.exmaple"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="L"
android:targetSdkVersion="22" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
</application>
</manifest>
提前致谢!
答案 0 :(得分:0)
你做了AVD运行android L吗? 如果没有创建运行android L的AVD。