From e94513bd689fcb93ad44c9838fca88ed8bca7737 Mon Sep 17 00:00:00 2001 From: Riccardo Date: Thu, 14 Feb 2019 12:28:19 +0100 Subject: [PATCH] Fix issue that not build --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index e43f8bd2..4351ba9e 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -26,6 +26,6 @@ def supportVersion = rootProject.hasProperty('supportLibVersion') ? rootProject. dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') - compile 'com.android.support:appcompat-v7:${supportVersion}' + compile "com.android.support:appcompat-v7:${supportVersion}" compile 'com.facebook.react:react-native:+' }