From 646b4834a4462f94c02824eea61a37e8158639a0 Mon Sep 17 00:00:00 2001 From: Ross Dixon Date: Thu, 25 Feb 2016 20:33:16 -0600 Subject: [PATCH] fix build error caused by support library 23.2 on 23.2 build fails with No resource found that matches the given name (at 'android:actionModeCloseDrawable' with value '@drawable/abc_ic_ab_back_mtrl_am_alpha'). --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 96b0586..4f90cb3 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -28,7 +28,7 @@ repositories { } dependencies { - compile 'com.android.support:appcompat-v7:23.+' + compile 'com.android.support:appcompat-v7:23.1' compile 'com.facebook.react:react-native:0.14.+' compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12'