Android L sdkプラットフォームをインストールしてエミュレーターを作成した後、「L」のminSdkVersionを使用してプロジェクトを作成しましたが、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>
前もって感謝します !