Correctly look for SENTRY_ENABLED flag when building for Android (#1230)

This commit is contained in:
Harrison Healey 2017-11-29 11:11:02 -05:00 committed by Jarred Witt
parent df1c7d9fc1
commit a8fc472729

View file

@ -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"
}