No resource found that matches the given name: attr 'android:keyboardNavigationCluster'. when updating to Support Library 26.0.0 -


i've got issue while updating latest support library version 26.0.0 (https://developer.android.com/topic/libraries/support-library/revisions.html#26-0-0):

error:(18, 21) no resource found matches given name: attr 'android:keyboardnavigationcluster'.

/.../app/build/intermediates/res/merged/beta/debug/values-v26/values-v26.xml error:(15, 21) no resource found matches given name: attr 'android:keyboardnavigationcluster'. error:(18, 21) no resource found matches given name: attr 'android:keyboardnavigationcluster'. error:(15, 21) no resource found matches given name: attr 'android:keyboardnavigationcluster'. error:(18, 21) no resource found matches given name: attr 'android:keyboardnavigationcluster'. error:execution failed task ':app:processbetadebugresources'. 

com.android.ide.common.process.processexception: failed execute aapt

the file support library:

<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> 

we're using following versions:

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 

any ideas?

i able resolve updating sdk version , tools in gradle compilesdkversion 26 buildtoolsversion "26.0.1"

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


Comments

Popular posts from this blog

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -