1. ホーム
  2. アンドロイド

[解決済み】サポートライブラリ26.0.0にアップデートすると、指定された名前に一致するリソースが見つからない:attr 'android:keyboardNavigationCluster'.

2022-04-08 11:23:19

質問

サポートライブラリの最新バージョン26.0.0にアップデートしたところ、この問題が発生しました( https://developer.android.com/topic/libraries/support-library/revisions.html#26-0-0 ):

エラー:(18, 21) 与えられた名前に一致するリソースが見つかりませんでした: attr 'android:keyboardNavigationCluster'です。

/.../app/build/intermediates/res/merged/beta/debug/values-v26/values-v26.xml
Error:(15, 21) No resource found that matches the given name: attr 'android:keyboardNavigationCluster'.
Error:(18, 21) No resource found that matches the given name: attr 'android:keyboardNavigationCluster'.
Error:(15, 21) No resource found that matches the given name: attr 'android:keyboardNavigationCluster'.
Error:(18, 21) No resource found that matches the given name: attr 'android:keyboardNavigationCluster'.
Error:Execution failed for task ':app:processBetaDebugResources'.

com.android.ide.common.process.ProcessException: aaptの実行に失敗しました

このファイルはサポートライブラリのものです。

<style name="Base.V26.Widget.AppCompat.Toolbar" parent="Base.V7.Widget.AppCompat.Toolbar">
    <item name="android:touchscreenBlocksFocus">true</item>
    <item name="android:keyboardNavigationCluster">true</item>
</style>

以下のバージョンを使用しています。

ext.COMPILE_SDK_VERSION = 26
ext.BUILD_TOOLS_VERSION = "26.0.1"

ext.MIN_SDK_VERSION = 17
ext.TARGET_SDK_VERSION = 26
ext.ANDROID_SUPPORT_LIBRARY_VERSION = "26.0.0"
ext.GOOGLE_PLAY_SERVICES_LIBRARY_VERSION = "11.0.2"


compile 'com.android.support:appcompat-v7:' + ANDROID_SUPPORT_LIBRARY_VERSION
compile 'com.android.support:design:' + ANDROID_SUPPORT_LIBRARY_VERSION
compile 'com.android.support:recyclerview-v7:' + ANDROID_SUPPORT_LIBRARY_VERSION

何かアイデアはありますか?

解決方法は?

gradleのsdkのバージョンとツールを更新することで解決できました。 compileSdkVersion 26 buildToolsVersion "26.0.1"

そして support library 26.0.1 https://developer.android.com/topic/libraries/support-library/revisions.html#26-0-1