mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
c996c766b2
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.
12 lines
264 B
Bash
Executable File
12 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'"
|