UNPKG

378 BPlain TextView Raw
1import groovy.json.JsonSlurper;
2configurations.maybeCreate("default")
3
4def inputFile = new File(projectDir, '../../react-native/package.json')
5def json = new JsonSlurper().parseText(inputFile.text)
6def reactNativeVersion = json.version as String
7def (major, minor, patch) = reactNativeVersion.tokenize('.')
8
9artifacts.add("default", file("react-native-reanimated-${minor}.aar"))
\No newline at end of file