mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-07-27 09:09:58 +00:00
18 lines
616 B
YAML
18 lines
616 B
YAML
|
|
Builds:
|
||
|
|
- versionName: '1.0'
|
||
|
|
versionCode: 1
|
||
|
|
commit: v1.0
|
||
|
|
sudo:
|
||
|
|
- apt-get update
|
||
|
|
# Ant is not installed by default
|
||
|
|
- apt-get install -y ant
|
||
|
|
# New build-tools are installed by default which doesn't work with ant
|
||
|
|
- rm -fr /opt/android-sdk/build-tools/*
|
||
|
|
prebuild:
|
||
|
|
# The default target is generally too old
|
||
|
|
- echo -e 'java.target=1.8\njava.source=1.8' > ant.properties
|
||
|
|
# Ant can't install build-tools automatically
|
||
|
|
- sdkmanager 'build-tools;30.0.3'
|
||
|
|
# Use `target: android-X` if no target is defined in project.properties.
|
||
|
|
target: android-21
|