mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-25 13:51:16 +00:00
f0762bab12
This is just a "minor" upgrade for android "12L" - some tablet related improvements we likely don't care about. This bump is to support a contribution to migrate our UI from something legacy to an up-to-date default framework that requires >=32.
10 lines
306 B
Bash
Executable file
10 lines
306 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
[ -z "$SYNCTHING_ANDROID_PREBUILT" ] && echo "Prebuild disabled" && exit 0
|
|
|
|
echo "Prepopulating gradle and go build/pkg cache"
|
|
git clone --recurse-submodules https://github.com/syncthing/syncthing-android
|
|
cd syncthing-android
|
|
./gradlew --no-daemon lint build
|
|
cd ..
|
|
rm -rf syncthing-android
|