2016-05-27 21 views
0

プロジェクトは正常に動作していました。私は断片を追加しようとしたが、私は以下のエラーに陥っている。指定された名前と一致するリソースが見つかりませんでした: 'android:TextAppearance.Material.Widget.Button.Inverse'

Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'. Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'.

Error:Execution failed for task ':app:processDebugResources'. com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\Th\AndroidSdk\build-tools\21.1.1\aapt.exe'' finished with non-zero exit value 1

私は何も変更しませんでした。

のGradle:

compileSdkVersion 21 
buildToolsVersion "21.1.1" 

defaultConfig { 
    applicationId "com.example.app.app" 
    minSdkVersion 14 
    targetSdkVersion 21 
    multiDexEnabled = true 
} 

私を導いてください。おかげさまで

+0

Androidスタジオを更新しましたか? – Stanojkovic

+0

私は長い時間前に更新しました。 2.1.1 –

+0

これを試してください: 'compileSdkVersion 23'、' buildToolsVersion "23.0.2" '、' targetSdkVersion 23'、 'compile 'com.android.support:appcompat-v7:23.1.1''、 'compile 'com .android.support:デザイン:23.1.1 ''。 – Stanojkovic

答えて

0

enter image description here

だけで映像ショーとして、それは問題を解決しますよ!

+0

「コンパイルSDKバージョン」をAPI 23以上に設定するだけです! –

0
targetSdkVersion 21 

以下のAPI 22とは、(あなたがエラーに応じて使用しようとしている)API 23+のような材料設計を持っていないので、これは動作しません。 AppCompat v21を使用する必要があります。この質問はあなたの質問にお答えするのにも役立ちます:Implement material design in android 5.0 and lower

関連する問題