From a8fc472729b88122fe82e0793b0cee24d21d6ce6 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Wed, 29 Nov 2017 11:11:02 -0500 Subject: [PATCH] Correctly look for SENTRY_ENABLED flag when building for Android (#1230) --- android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index c2b7ea0ca..21db44c4c 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -79,7 +79,7 @@ project.ext.react = [ apply from: "../../node_modules/react-native/react.gradle" apply from: "../../node_modules/react-native-vector-icons/fonts.gradle" -if (System.getenv("MM_SENTRY_ENABLED") == "true") { +if (System.getenv("SENTRY_ENABLED") == "true") { apply from: "../../node_modules/react-native-sentry/sentry.gradle" }