Android Studio での「失敗 [INSTALL_FAILED_OLDER_SDK]」とはどういう意味ですか? 質問する

Android Studio での「失敗 [INSTALL_FAILED_OLDER_SDK]」とはどういう意味ですか? 質問する

私はこれを得たフローズンヨーグルト(2.2)アプリを作るために使用しているデバイス。アプリをデバイスに直接実行しようとすると、次のようなエラーが表示されます。

pkg: /data/local/tmp/com.example.HelloWorldProject
Failure [INSTALL_FAILED_OLDER_SDK]

別のウィンドウには次のようなエラーが表示されます

Unable to attach test reporter to test framework or test framework quit unexpectedly

上記のエラーが発生する原因は何でしょうか?

編集:

AndroidManifest.xml

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

    <uses-sdk
            android:minSdkVersion="8"
            android:targetSdkVersion="17"/>

    <application
            android:allowBackup="true"
            android:debuggable="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            >
        <activity
                android:name="com.example.HelloWorldProject.MyActivity"
                android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>

                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
    </application>

</manifest>

ベストアンサー1

私が変わった後

defaultConfig {
    applicationId "com.example.bocheng.myapplication"
    minSdkVersion 15
    targetSdkVersion 'L' #change this to 19
    versionCode 1
    versionName "1.0"
}

ファイル内build.gradle

それは動作します

おすすめ記事