@@ -33,6 +33,13 @@ import com.android.build.OutputFile
3333 * // bundleInPaidRelease: true,
3434 * // bundleInBeta: true,
3535 *
36+ * // whether to disable dev mode in custom build variants (by default only disabled in release)
37+ * // for example: to disable dev mode in the staging build type (if configured)
38+ * devDisabledInStaging: true,
39+ * // The configuration property can be in the following formats
40+ * // 'devDisabledIn${productFlavor}${buildType}'
41+ * // 'devDisabledIn${buildType}'
42+ *
3643 * // the root of your project, i.e. where "package.json" lives
3744 * root: "../../",
3845 *
@@ -58,7 +65,7 @@ import com.android.build.OutputFile
5865 * inputExcludes: ["android/**", "ios/**"],
5966 *
6067 * // override which node gets called and with what additional arguments
61- * nodeExecutableAndArgs: ["node"]
68+ * nodeExecutableAndArgs: ["node"],
6269 *
6370 * // supply additional arguments to the packager
6471 * extraPackagerArgs: []
@@ -84,7 +91,7 @@ def enableProguardInReleaseBuilds = false
8491
8592android {
8693 compileSdkVersion 23
87- buildToolsVersion ' 25 .0.0 '
94+ buildToolsVersion " 23 .0.1 "
8895
8996 defaultConfig {
9097 applicationId " com.basic"
@@ -128,7 +135,7 @@ android {
128135dependencies {
129136 compile fileTree(dir : " libs" , include : [" *.jar" ])
130137 compile " com.android.support:appcompat-v7:23.0.1"
131- compile " com.facebook.react:react-native:0.41 +" // From node_modules
138+ compile " com.facebook.react:react-native:+" // From node_modules
132139}
133140
134141// Run this once to be able to run the application with BUCK
0 commit comments