ツールを更新した後、プロジェクトをビルドできません。 Android Studioでこのエラーが発生します。
/build/exploded-aar/com.Android.support/support-v4/21.0.0-rc1/AndroidManifest.xml:3]解析に失敗しました:整数またはコードネームである必要があります。
何か案は?
このマニフェストは、私が思うサポートライブラリからのものです。私のプロジェクトにはmin=14 target=19
という別のものもあります
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2014 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.v4" >
<uses-sdk
Android:minSdkVersion="L"
Android:targetSdkVersion="L" />
<application />
</manifest>
gradleクラスパス 'com.Android.tools.build:gradle:0.9.+'
App /build.gradleファイルで変更しますcompile 'com.Android.support:support-v4:+'
にcompile 'com.Android.support:support-v4:19.1.0'
「+」は、依存関係の最新バージョンを検索することを意味します。 Lプレビューをダウンロードすると、最新バージョンがLのサポートライブラリになります。これは、ターゲットがAPI19のプロジェクトでは機能しません。
これらの変更を反映するようにbuild.gradleファイルを更新しましたか?
compileSdkVersion is set to 'Android-L'
minSdkVersion is set to 'L'
targetSdkVersion is set to 'L'
これで問題が解決し、アプリを作成することができました。
compile('com.Android.support:support-v4:19.1.0'){
force = true
}