mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-30 16:25:57 +00:00
build-android: add bundle script (#931)
This commit is contained in:
27
scripts/android/build-android-bundle.sh
Executable file
27
scripts/android/build-android-bundle.sh
Executable file
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env sh
|
||||
# Safety measures
|
||||
[ -n "$1" ] || exit 1
|
||||
set -eu
|
||||
|
||||
tmp=$(mktemp -d -t)
|
||||
libsim=$(cat "$1" | grep libsimplex)
|
||||
libsup=$(cat "$1" | grep libsupport)
|
||||
commit="${2:-nix-android}"
|
||||
|
||||
# Clone simplex
|
||||
git clone https://github.com/simplex-chat/simplex-chat "$tmp/simplex-chat"
|
||||
|
||||
# Switch to nix-android branch
|
||||
git -C "$tmp/simplex-chat" checkout "$commit"
|
||||
|
||||
# Create missing folders
|
||||
mkdir -p "$tmp/simplex-chat/apps/android/app/src/main/cpp/libs/arm64-v8a"
|
||||
|
||||
curl -sSf "$libsim" -o "$tmp/libsimplex.zip"
|
||||
unzip -o "$tmp/libsimplex.zip" -d "$tmp/simplex-chat/apps/android/app/src/main/cpp/libs/arm64-v8a"
|
||||
|
||||
curl -sSf "$libsup" -o "$tmp/libsupport.zip"
|
||||
unzip -o "$tmp/libsupport.zip" -d "$tmp/simplex-chat/apps/android/app/src/main/cpp/libs/arm64-v8a"
|
||||
|
||||
gradle -p "$tmp/simplex-chat/apps/android/" clean build
|
||||
cp "$tmp/simplex-chat/apps/android/app/build/outputs/apk/release/app-release-unsigned.apk" "$PWD/simplex-chat.apk"
|
||||
Reference in New Issue
Block a user