22

アプリケーションの構築に Android studio を使用しています。私はこの次の依存関係を使用しています:

  1. 再生サービス:compile 'com.google.android.gms:play-services:5.2.08'
  2. アプリ戦闘 v7 :compile 'com.android.support:appcompat-v7:21.0.0'
  3. カードビューをサポート: compile 'com.android.support:cardview-v7:21.0.0'
  4. リサイクラー ビューをサポートします。compile 'com.android.support:recyclerview-v7:21.0.0'

アプリのビルド中に次のエラーが発生します。

app/build/intermediates/exploded-aar/com.google.android.gms/play-services/5.2.08/res/values/wallet_attrs.xml
    Error:Attribute "theme" has already been defined

コード スタイル.xml

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
    </style>

</resources>

コード wallet_attrs.xml

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2014 Google Inc. All Rights Reserved. -->
<resources>
    <!-- Attributes for the WalletFragment &lt;fragment&gt; tag -->
    <declare-styleable name="WalletFragmentOptions">
        <!-- Theme to be used for the Wallet selector -->
        <attr name="theme" format="enum">
            <enum name="holo_dark" value="0"/>
            <enum name="holo_light" value="1"/>
        </attr>
        <!-- Google Wallet environment to use -->
        <attr name="environment" format="enum">
            <enum name="production" value="1"/>
            <enum name="sandbox" value="0"/>
            <enum name="strict_sandbox" value="2"/>
        </attr>
        <!-- A style resource specifing attributes to customize the look and feel of WalletFragment -->
        <attr name="fragmentStyle" format="reference"/>
        <!-- Fragment mode -->
        <attr name="fragmentMode" format="enum">
            <enum name="buyButton" value="1"/>
            <enum name="selectionDetails" value="2"/>
        </attr>
    </declare-styleable>

    <!-- Attributes that may be specified in a style resource to customize the look and feel of
         WalletFragment -->
    <declare-styleable name="WalletFragmentStyle">
        <!-- Height of the buy button. This includes an 8dp padding (4dp on each side) used for
             pressed and focused states of the button. The value can be a specific height, e.g.
             "48dp", or special values "match_parent" and "wrap_content". -->
        <attr name="buyButtonHeight" format="dimension">
            <enum name="match_parent" value="-1" />
            <enum name="wrap_content" value="-2" />
        </attr>
        <!-- Width of the buy button. This includes an 8dp padding (4dp on each side) used for
             pressed and focused states of the button. The value can be a specific width, e.g.
             "300dp", or special values "match_parent" and "wrap_content". -->
        <attr name="buyButtonWidth" format="dimension">
            <enum name="match_parent" value="-1" />
            <enum name="wrap_content" value="-2" />
        </attr>
        <!-- Text on the buy button. Must be one of "buy_with_google", "buy_now" and "book_now" -->
        <attr name="buyButtonText" format="enum">
            <enum name="buy_with_google" value="1"/>
            <enum name="buy_now" value="2"/>
            <enum name="book_now" value="3"/>
        </attr>
        <!-- Appearance of the buy button. Must be one of "classic", "grayscale" and "monochrome" -->
        <attr name="buyButtonAppearance" format="enum">
            <enum name="classic" value="1"/>
            <enum name="grayscale" value="2"/>
            <enum name="monochrome" value="3"/>
        </attr>
        <!-- TextAppearance for masked wallet details -->
        <attr name="maskedWalletDetailsTextAppearance" format="reference"/>
        <!-- TextAppearance for headers describing masked wallet details -->
        <attr name="maskedWalletDetailsHeaderTextAppearance" format="reference"/>
        <!-- Masked wallet details background -->
        <attr name="maskedWalletDetailsBackground" format="reference|color"/>
        <!-- TextAppearance for the "Change" button in masked wallet details view -->
        <attr name="maskedWalletDetailsButtonTextAppearance" format="reference"/>
        <!-- "Change" button background in masked wallet details view -->
        <attr name="maskedWalletDetailsButtonBackground" format="reference|color"/>
        <!-- Color of the Google Wallet logo text in masked wallet details view -->
        <attr name="maskedWalletDetailsLogoTextColor" format="color"/>
        <!-- Type of the wallet logo image in masked wallet details view -->
        <attr name="maskedWalletDetailsLogoImageType" format="enum">
            <enum name="classic" value="1"/>
            <enum name="monochrome" value="2"/>
        </attr>
    </declare-styleable>
</resources>
4

5 に答える 5

11

attrs.xml という名前のファイルがあるかどうかを確認してください。そのファイルで、次の行を置き換えます

 <attr name="theme" format="reference" />

 <attr name="apptheme" format="reference" />

つまり、テーマ名を変更します。プロジェクトをクリーンアップします。これで私の問題は解決しました。

于 2015-03-09T20:03:32.680 に答える
2

SDKマネージャーを介してコンテンツを更新した後、Eclipseで開発するのと同じ問題がありました。

Workspace から Google Play Services ライブラリを完全に削除してから、こちらの手順に従って、更新されたバージョンをコピーしてインポートする必要がありました。

参照されたjarの更新は役に立ちませんでした-完全な新しいインポートのみ。これには、android-support-v7-appcompat インポートの更新が含まれていました。

于 2014-10-25T13:46:45.993 に答える
0

古い Android バージョン (2.3.x、3.xx、4.0) のサポートを維持したい場合は、ウォレット クラスとリソースを削除したライブラリの修正バージョンを使用します (ウォレット機能が必要ない場合)。これにより、この「テーマ」が回避されます。属性の問題。問題なく使用play-services-5.0.89.arrしています。

com.google.android.gms.wallet.*特に、クラスとwallet_*.xmlリソースを削除すれば完了です。

于 2016-02-15T18:02:41.653 に答える