ライブラリの使用中に次のエラーが発生します。
C:\ASP\example\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.0.0\res\values-v23\values-v23.xml エラー:(2) 親の取得中にエラーが発生しましたアイテムの場合: 指定された名前 'android:TextAppearance.Material.Widget.Button.Inverse' に一致するリソースが見つかりません。エラー:(2) アイテムの親を取得中にエラーが発生しました: 指定された名前 'android:Widget.Material.Button.Colored' に一致するリソースが見つかりませんでした。エラー: タスク ':app:processDebugResources' の実行に失敗しました。com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: プロセス 'コマンド' C:\Users\Aayush Karwatkar\AppData\Local\Android\sdk1\build-tools\23.0.0\ aapt.exe '' はゼロ以外の終了値 1 で終了しました
Build.Gradle ファイルは次のようになります。
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "23.0.0"
defaultConfig {
applicationId "com.aayush.com.example"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.0'
//Core card library
compile 'com.github.gabrielemariotti.cards:cardslib-core:2.1.0'
//Optional for built-in cards
compile 'com.github.gabrielemariotti.cards:cardslib-cards:2.1.0'
//Optional for RecyclerView
compile 'com.github.gabrielemariotti.cards:cardslib-recyclerview:2.1.0'
compile('com.mikepenz:materialdrawer:4.0.5@aar') {
transitive = true
}
}