@@ -33,6 +33,13 @@ import com.android.build.OutputFile
33
33
* // bundleInPaidRelease: true,
34
34
* // bundleInBeta: true,
35
35
*
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
+ *
36
43
* // the root of your project, i.e. where "package.json" lives
37
44
* root: "../../",
38
45
*
@@ -58,7 +65,7 @@ import com.android.build.OutputFile
58
65
* inputExcludes: ["android/**", "ios/**"],
59
66
*
60
67
* // override which node gets called and with what additional arguments
61
- * nodeExecutableAndArgs: ["node"]
68
+ * nodeExecutableAndArgs: ["node"],
62
69
*
63
70
* // supply additional arguments to the packager
64
71
* extraPackagerArgs: []
@@ -84,7 +91,7 @@ def enableProguardInReleaseBuilds = false
84
91
85
92
android {
86
93
compileSdkVersion 23
87
- buildToolsVersion ' 25 .0.0 '
94
+ buildToolsVersion " 23 .0.1 "
88
95
89
96
defaultConfig {
90
97
applicationId " com.basic"
@@ -128,7 +135,7 @@ android {
128
135
dependencies {
129
136
compile fileTree(dir : " libs" , include : [" *.jar" ])
130
137
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
132
139
}
133
140
134
141
// Run this once to be able to run the application with BUCK
0 commit comments