fix(android): disable caching on local asset files (#4304)

This commit is contained in:
Olivier Bouillet
2024-12-01 13:29:24 +01:00
committed by GitHub
parent 569a79c510
commit 63c592f7cd
6 changed files with 24 additions and 2 deletions

View File

@@ -7,6 +7,8 @@
"start:tv": "EXPO_TV=1 expo start",
"android:tv": "EXPO_TV=1 expo run:android",
"android": "EXPO_TV=0 expo run:android",
"release:android": "cd android && EXPO_TV=0 ./gradlew assembleRelease && cd -",
"release:android:tv": "cd android && EXPO_TV=1 ./gradlew assembleRelease && cd -",
"ios:tv": "EXPO_TV=1 expo run:ios",
"ios": "EXPO_TV=0 expo run:ios",
"web": "expo start --web",