J'ai cette erreur dans mon logcat lors de l'importation de appcompat v7 à partir de "sdk/extras/Android /"
Platform L est un aperçu et nécessite le manifeste de l'application pour définir MinSdkVersion sur 'L'
et le manifeste est comme
<?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>
comment puis-je résoudre cette erreur?
ou comment puis-je l'importer avec Android 4.2.2 dans le paquet Explorer, qui montre maintenant andoid L (Preview)
Dans les projets Propriétés -> Android, vous devez choisir un logiciel autre qu’Android-L, . Par exemple, Android 4.4W, car ils portent le même numéro d’API - API-20 .
Définir cette
<uses-sdk Android:minSdkVersion="7"/>
à
<uses-sdk Android:minSdkVersion="L"/>
Changement
<uses-sdk Android:minSdkVersion="7"/>
à
<uses-sdk Android:minSdkVersion="L"/>