Android Studio : Failure [INSTALL_FAILED_OLDER_SDK]

后端 未结 24 1305
孤街浪徒
孤街浪徒 2020-11-27 04:54

Today I have downloaded Android Studio v 0.8.0 beta. I am trying to test my app on SDK 17 . Android studio error Failure [INSTALL_FAILED_OLDER_SDK] Here is my a

24条回答
  •  日久生厌
    2020-11-27 05:18

    After a lot of research i found the solution for this huge error which i was struggling for 2 days.

    Instead of changing the minSdkVerison & targetSdkVersion in build.gradle

    Just open the Manifest file and use this

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

提交回复
热议问题