You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
373 B

import fs from 'fs'
const file = '../../android/build.gradle'
const replace = /implementation 'com.facebook.react:react-native:\+'/g
const replacement = "implementation 'com.facebook.react:react-native:0.59.9'"
const encoding = 'utf8'
const data = fs.readFileSync(file, encoding)
const result = data.replace(replace, replacement)
fs.writeFileSync(file, result, encoding)