mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-11 11:31:29 +00:00
e8dd3389a7
Update the android build docker image: - rebase on ubuntu 22.04; - add tooling required to sign APKs; - changes to make the container re-usable; - change to a multi-stage build to keep the image size smaller; - generic improvements to the Dockerfile Also update the example script for how to use the container. Signed-off-by: Michael Keller <github@ike.ch>
20 lines
743 B
Bash
Executable file
20 lines
743 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Use this to re-create a docker container for building Android binaries
|
|
|
|
# Google makes it intentionally very hard to download the command line tools
|
|
# the URL is constantly changing and the website requires you to click through
|
|
# a license.
|
|
#
|
|
# Today this URL works:
|
|
# https://dl.google.com/android/repository/commandlinetools-linux-6858069_latest.zip
|
|
#
|
|
# If this fails, go to https://developer.android.com/studio#cmdline-tools and
|
|
# click through for yourself, and then update the URL in the Dockerfile
|
|
|
|
# copy the dependency script into this folder
|
|
cp ../../../packaging/android/android-build-setup.sh .
|
|
cp ../../../packaging/android/variables.sh .
|
|
|
|
# create the container (this takes a while)
|
|
docker build -t android-build .
|