This commit is contained in:
Marcos Rodriguez Velez 2024-07-11 20:07:03 -04:00
parent 9102f503c4
commit fcb3f33ebd
No known key found for this signature in database
GPG key ID: 6030B2F48CCE86D7
2 changed files with 5 additions and 1 deletions

View file

@ -84,6 +84,11 @@ android {
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
lintOptions {
abortOnError false
checkReleaseBuilds false
}
sourceSets {
main {
assets.srcDirs = ['src/main/assets', 'src/main/res/assets']

View file

@ -50,7 +50,6 @@
"clean:ios": "rm -fr node_modules && rm -fr ios/Pods && npm i && cd ios && pod update && cd ..; npm start -- --reset-cache",
"releasenotes2json": "./scripts/release-notes.sh > release-notes.txt; node -e 'console.log(JSON.stringify(require(\"fs\").readFileSync(\"release-notes.txt\", \"utf8\")));' > release-notes.json",
"branch2json": "./scripts/current-branch.sh > current-branch.json",
"prestart": "watchman watch-del $PWD && watchman watch-project $PWD",
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "react-native run-android",
"android:clean": "cd android; ./gradlew clean ; cd .. ; npm run android",