Files
drip/scripts/clear-android.sh
T
2022-08-15 19:01:28 +00:00

12 lines
276 B
Bash

#!/bin/bash
echo "\x1b[35;01m""Start clearing android cache...""\x1b[39;49;00m"
echo "Clean android project..."
cd android && ./gradlew clean && cd ..
echo "Remove Android build..."
rm -rf android/app/build
echo "\x1b[35;01m""Done clearing android cache!""\x1b[39;49;00m"