chore(mobile): add isar lock file (#12705)

This commit is contained in:
Tom Vincent
2024-09-15 20:20:09 +01:00
committed by GitHub
parent b06ea687b4
commit 4735db8e79
3 changed files with 877 additions and 2 deletions

6
mobile/scripts/fdroid_build_isar.sh Normal file → Executable file
View File

@@ -1,6 +1,8 @@
#!/usr/bin/env sh
cd .isar || exit
test -d .isar || exit
cp .isar-cargo.lock .isar/Cargo.lock
(cd .isar || exit
bash tool/build_android.sh x86
bash tool/build_android.sh x64
bash tool/build_android.sh armv7
@@ -13,4 +15,4 @@ mv libisar_android_x64.so libisar.so
mv libisar.so ../.pub-cache/hosted/pub.dev/isar_flutter_libs-*/android/src/main/jniLibs/x86_64/
mv libisar_android_x86.so libisar.so
mv libisar.so ../.pub-cache/hosted/pub.dev/isar_flutter_libs-*/android/src/main/jniLibs/x86/
cd ..
)