Project 'savoirfairelinux/ring-daemon' was moved to 'savoirfairelinux/jami-daemon'. Please update any links and bookmarks that may still have the old path.
Select Git revision
audioloop.h
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
compile.sh 1.37 KiB
#! /bin/bash
# Build Jami daemon and client APK for Android
if [ -z "$ANDROID_ABI" ]; then
ANDROID_ABI="armeabi-v7a arm64-v8a x86_64"
echo "ANDROID_ABI not provided, building for ${ANDROID_ABI}"
fi
TOP=$(pwd)/ring-android
# Flags:
# --release: build in release mode
# --daemon: Only build the daemon for the selected archs
RELEASE=0
DAEMON_ONLY=0
for i in ${@}; do
case "$i" in
release|--release)
RELEASE=1
;;
daemon|--daemon)
DAEMON_ONLY=1
;;
*)
;;
esac
done
export RELEASE
ANDROID_ABI_LIST="${ANDROID_ABI}"
echo "Building ABIs: ${ANDROID_ABI_LIST}"
for i in ${ANDROID_ABI_LIST}; do
echo "$i starts building"
ANDROID_NDK=$ANDROID_NDK ANDROID_SDK=$ANDROID_SDK ANDROID_ABI=$i \
./build-daemon.sh $* || { echo "$i build KO"; exit 1; }
echo "$i build OK"
done
if [[ $RELEASE -eq 1 ]]; then
echo "Archiving native debug symbols"
cd $TOP/unstripped
zip -r $TOP/app/symbols.zip .
fi
if [[ $DAEMON_ONLY -eq 0 ]]; then
if [ -z "$RING_BUILD_FIREBASE" ]; then
echo "Building without Firebase support"
else
GRADLE_PROPERTIES="-PbuildFirebase"
echo "Building with Firebase support"
fi
if [[ $RELEASE -eq 1 ]]; then
cd $TOP && gradle $GRADLE_PROPERTIES assembleRelease
else
cd $TOP && gradle $GRADLE_PROPERTIES assembleDebug
fi
fi