Platform L is a preview and requires application manifest to set minSdkVersion to 'L'

前端 未结 3 1045
夕颜
夕颜 2020-12-31 05:45

I have this error in my logcat when imported appcompat v7 from \" sdk/extras/android/ \"

Platform L is a preview and requires application manifest to

相关标签:
3条回答
  • 2020-12-31 05:54

    In projects Properties -> Android You have to choose other than Android-L, In example Android 4.4W, because they have the same API number - API-20 enter image description here

    0 讨论(0)
  • 2020-12-31 06:05

    Change

    <uses-sdk android:minSdkVersion="7"/>
    

    to

    <uses-sdk android:minSdkVersion="L"/>
    
    0 讨论(0)
  • 2020-12-31 06:08

    Set this

     <uses-sdk android:minSdkVersion="7"/>
    

    to

    <uses-sdk android:minSdkVersion="L"/>
    
    0 讨论(0)
提交回复
热议问题