Installation error: INSTALL_FAILED_OLDER_SDK

前端 未结 19 1520
太阳男子
太阳男子 2020-11-28 09:37

I am new to Android development and I want first to get the Hello World application running. I am using Eclipse IDE and the Android 4.0.3 version 15 SDK. I copi

相关标签:
19条回答
  • 2020-11-28 10:25

    Ionic Android emulator error INSTALL_FAILED_OLDER_SDK

    So, basically it means that the installation has failed due to having an older SDK version than the targetSdkVersion specified in your app (it's a Gradle issue). Just edit the AndroidManifest.xml file and add the following code:

    <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="14"/>

    After days looking for the solution, that's it.

    Works fine for me!

    0 讨论(0)
提交回复
热议问题