Sfoglia il codice sorgente
Fixes issue with finding React Native version
* Fixes 284
Searching for reactNative version in projects ext root now uses safeExtGet to stop build issues where reactNative is not set.
krislipscombe
4 anni fa
No account linked to committer's email address
|
@@ -47,5 +47,5 @@ repositories {
|
47
|
47
|
|
48
|
48
|
dependencies {
|
49
|
49
|
implementation "com.android.support:support-v4:${safeExtGet('supportLibVersion', '27.+')}"
|
50
|
|
- api "com.facebook.react:react-native:${rootProject.ext.reactNative}"
|
|
50
|
+ api "com.facebook.react:react-native:${safeExtGet('reactNative', '+')}"
|
51
|
51
|
}
|