2017-12-13 3 views
1

モジュールとしてCSipSimpleライブラリをインポートし、ファイルをインポートしようとしたときに、一方で、私は輸入すなわちの通常の方法をしましたGradleのを同期中に、私は再びエラーのリストを取得しています:の問題私は、SIP機能のための私のプロジェクトにcSipSimpleライブラリをインポートしようとしています

Error:(552) Attribute "background" already defined with incompatible format. 
Error:(397) Original attribute defined here. 
Error:(622) Attribute "navigationMode" already defined with incompatible format. 
Error:(539) Original attribute defined here. 
Error:(629) Attribute "displayOptions" already defined with incompatible format. 
Error:(545) Original attribute defined here. 
Error:(644) Attribute "actionBarSize" already defined with incompatible format. 
Error:(646) Attribute "windowMinWidthMajor" already defined with incompatible format. 
Error:(577) Original attribute defined here. 
Error:(646) Attribute "windowMinWidthMinor" already defined with incompatible format. 
Error:(576) Original attribute defined here. 
Error:(576) Original attribute defined here. 
Error:(552) Attribute "background" already defined with incompatible format. 
Error:(397) Original attribute defined here. 
Error:(622) Attribute "navigationMode" already defined with incompatible format. 
Error:(629) Attribute "displayOptions" already defined with incompatible format. 
Error:(539) Original attribute defined here. 
Error:(545) Original attribute defined here. 
Error:(644) Attribute "actionBarSize" already defined with incompatible format. 
Error:(577) Original attribute defined here. 
Error:Execution failed for task ':app:processDebugResources'. 
> com.android.ide.common.process.ProcessException: Failed to execute aapt 
Error:(576) Original attribute defined here. 
Error:(646) Attribute "windowMinWidthMinor" already defined with incompatible format. 
Error:(576) Original attribute defined here. 
Error:(646) Attribute "windowMinWidthMajor" already defined with incompatible format. 

これは私がプロジェクトをインポートし、モジュールとして使用しようとしています初めてです。だから正確な問題を見つけることができません。もし私が何かを逃しているなら、私に知らせてください。前もって感謝します。

+0

あなたは無効化キャッシュ/再起動を試してみたのですか?コンパイル中に新しいモジュールを追加したり、依存関係ビルドフォルダを追加したりするたびに実行されます。だからこれを試してください。それがあなたを助けることを願ってください。 –

+0

@HemantParmar:ありがとう。私を試してみましょう –

+0

それはうまく動作しません –

答えて

0

あなたは互換性のないタイプのモジュールを除外する必要があります(あなたのモジュール持つ属性は、ここでは、パラメータ属性のような)

エラー以下の例:属性 "titleTextStyle" はすでに定義されている

ソリューションappcompat-v7をマテリアルダイアログから除外する必要があります。

compile ("com.afollestad:material-dialogs:0.6.0"){ 
exclude group: 'com.google.android', module: 'appcompat-v7' 
} 

https://github.com/afollestad/material-dialogs/issues/184

関連する問題

 関連する問題