Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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 set minSdkVersion to 'L'

enter image description here

and the manifest is like

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2012 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="android.support.v7.appcompat">
    <uses-sdk android:minSdkVersion="7"/>
    <application />
</manifest>

how can i resolve this error?

or how can i import it with android 4.2.2 in the package explorer,which now it is showing andoid L(Preview)

like image 283
Sajad Karuthedath Avatar asked Jul 01 '14 10:07

Sajad Karuthedath


1 Answers

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

like image 156
R-J Avatar answered Sep 22 '22 23:09

R-J