mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-03 01:39:18 +02:00

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.
11 lines
264 B
Bash
Executable file
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'"
|