Files
iNaturalistReactNative/scripts/clean.sh
Ken-ichi 0b2c8315a0 OfflineNotice (#1388)
* Added clean script; fixed UI Library
* OfflineNotice component; added to Notifications
* OfflineNotice on ObsDetails media
* OfflineNotice for DQA
2024-04-11 17:25:55 -07:00

24 lines
440 B
Bash
Executable File

echo "iOS simulator cache"
rm -rf ~/Library/Developer/CoreSimulator/Caches
echo "React-native cache"
rm -rf $TMPDIR/react-*
echo "Metro bundler cache"
rm -rf $TMPDIR/metro-*
echo "Watchman cache"
watchman watch-del-all
echo "iOS build folder"
rm -rf ios/build
echo "system iOS pods cache"
(cd ios && pod cache clean --all)
echo "Android build folder"
rm -rf android/build
echo "Android clean project"
(cd android && ./gradlew clean)