feat: implement personal / favorites folder on the mobile platform (#3723)

This commit is contained in:
Lucas.Xu
2023-10-23 18:35:07 +08:00
committed by GitHub
parent a57ca5c0cb
commit d51c7f382f
93 changed files with 2625 additions and 250 deletions

View File

@ -26,8 +26,13 @@ script = [
"""
cd rust-lib/
rustup show
echo cargo lipo --targets ${RUST_COMPILE_TARGET} --features "${FLUTTER_DESKTOP_FEATURES}"
cargo lipo --targets ${RUST_COMPILE_TARGET} --features "${FLUTTER_DESKTOP_FEATURES}"
if [ "${BUILD_FLAG}" == "debug" ]; then
echo "🚀 🚀 🚀 Building for debug"
cargo lipo --targets ${RUST_COMPILE_TARGET} --features "${FLUTTER_DESKTOP_FEATURES}"
else
echo "🚀 🚀 🚀 Building for release"
cargo lipo --targets ${RUST_COMPILE_TARGET} --features "${FLUTTER_DESKTOP_FEATURES}" --release
fi
cd ../
""",
]