From c996c766b232f898b57a57aa31d3646ebec1a24d Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Wed, 6 Mar 2024 13:56:17 +0100 Subject: [PATCH] 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. --- scripts/clean-core.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/scripts/clean-core.sh b/scripts/clean-core.sh index 08d279249..015720329 100755 --- a/scripts/clean-core.sh +++ b/scripts/clean-core.sh @@ -1 +1,11 @@ +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'"