deltachat/scripts/clean-core.sh
B. Petersen c996c766b2 tweak scripts/clean-core.sh
the idea of the script
is to prune all possible caches
that may cause problems when updating core.

it is run usually before a release
and to make sure a core is rebuild from scratch.
2024-03-06 22:17:31 +01:00

11 lines
264 B
Bash
Executable file

cd jni/deltachat-core-rust
cargo clean
cd -
rm -rf jni/deltachat-core-rust/target
rm jni/armeabi-v7a/libdeltachat.a
rm jni/x86/libdeltachat.a
rm jni/arm64-v8a/libdeltachat.a
rm jni/x86_64/libdeltachat.a
echo "now, in Android Studio, run 'Build / Clean Project'"