android: fix warning
This commit is contained in:
parent
85b141db89
commit
d18f582922
|
@ -1,3 +1,5 @@
|
||||||
|
import groovy.json.JsonSlurper
|
||||||
|
|
||||||
// Top-level build file where you can add configuration options common to all
|
// Top-level build file where you can add configuration options common to all
|
||||||
// sub-projects/modules.
|
// sub-projects/modules.
|
||||||
|
|
||||||
|
@ -34,13 +36,13 @@ allprojects {
|
||||||
if (details.requested.group == 'com.facebook.react'
|
if (details.requested.group == 'com.facebook.react'
|
||||||
&& details.requested.name == 'react-native') {
|
&& details.requested.name == 'react-native') {
|
||||||
def file = new File("$rootDir/../node_modules/react-native/package.json")
|
def file = new File("$rootDir/../node_modules/react-native/package.json")
|
||||||
def version = new groovy.json.JsonSlurper().parseText(file.text).version
|
def version = new JsonSlurper().parseText(file.text).version
|
||||||
details.useVersion version
|
details.useVersion version
|
||||||
}
|
}
|
||||||
if (details.requested.group == 'org.webkit'
|
if (details.requested.group == 'org.webkit'
|
||||||
&& details.requested.name == 'android-jsc') {
|
&& details.requested.name == 'android-jsc') {
|
||||||
def file = new File("$rootDir/../node_modules/jsc-android/package.json")
|
def file = new File("$rootDir/../node_modules/jsc-android/package.json")
|
||||||
def version = new groovy.json.JsonSlurper().parseText(file.text).version
|
def version = new JsonSlurper().parseText(file.text).version
|
||||||
details.useVersion "r${version.tokenize('.')[0]}"
|
details.useVersion "r${version.tokenize('.')[0]}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -65,7 +67,7 @@ allprojects {
|
||||||
afterEvaluate { project ->
|
afterEvaluate { project ->
|
||||||
if (project.name.startsWith('react-native-')) {
|
if (project.name.startsWith('react-native-')) {
|
||||||
def npmManifest = project.file('../package.json')
|
def npmManifest = project.file('../package.json')
|
||||||
def json = new groovy.json.JsonSlurper().parseText(npmManifest.text)
|
def json = new JsonSlurper().parseText(npmManifest.text)
|
||||||
|
|
||||||
// React Native modules have an npm peer dependency on react-native,
|
// React Native modules have an npm peer dependency on react-native,
|
||||||
// they do not have an npm dependency on it. Further below though we
|
// they do not have an npm dependency on it. Further below though we
|
||||||
|
|
Loading…
Reference in New Issue