Doesn't work on Android post update

Today, the reaction -native-git -upgrade was performed. And then I ended up with the errors below.

:app:processDebugResources
/../android/app/build/intermediates/res/merged/debug/values-v24/values-v24.xml:3: AAPT: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Borderless.Colored'.

/../app/build/intermediates/res/merged/debug/values-v24/values-v24.xml:4: AAPT: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Colored'.

/../android/app/build/intermediates/res/merged/debug/values-v24/values-v24.xml:3: error: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Borderless.Colored'.

/../app/build/intermediates/res/merged/debug/values-v24/values-v24.xml:4: error: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Colored'.

Suggestions already discussed here here and here

Any help would be greatly appreciated. My build.gradle has

compileSdkVersion 23
buildToolsVersion "23.0.1"

AND

compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.android:facebook-android-sdk:[4,5)"
0
source share
1 answer

Credit here: Error getting parent element: No resource was found that matches the specified name 'android: TextAppearance.Material.Widget.Button.Colored' .

You already linked this above, but didn't seem to indicate that you tried the solution (s).

react-native-fbsdk, , :

android/build.gradle:

project(':react-native-fbsdk') {
  configurations.all {
    resolutionStrategy {
       force 'com.facebook.android:facebook-android-sdk:4.22.1'
     }
  }
}

android/app/build.gradle:

compileSdkVersion 24
buildToolsVersion "24.0.2"

, , . , v24 SDK, Build Tools Support Repository.

0

Source: https://habr.com/ru/post/1678999/


All Articles