Skip to content

Commit 212fbaa

Browse files
joshuapintergitim
authored andcommitted
Specify React Native version number to compile.
We have it listed in package.json as ^0.41.2 so let’s make sure to use a similar approach in Gadle. Just as a reminder, 0.41+ means any versions like 0.42, 0.43, etc. which is the same meaning ^0.41.2 in package.json. According to http://ant.apache.org/ivy/history/trunk/settings/version-matchers.html
1 parent 9363b8a commit 212fbaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/Basic/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ android {
128128
dependencies {
129129
compile fileTree(dir: "libs", include: ["*.jar"])
130130
compile "com.android.support:appcompat-v7:23.0.1"
131-
compile "com.facebook.react:react-native:+" // From node_modules
131+
compile "com.facebook.react:react-native:0.41+" // From node_modules
132132
}
133133

134134
// Run this once to be able to run the application with BUCK

0 commit comments

Comments
 (0)