mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 22:40:12 +01:00
ef9b89f4ec
makebuildserver: remove NDK r9b to save 1.6 GB of disk space See merge request fdroid/fdroidserver!459
14 lines
440 B
Python
14 lines
440 B
Python
sdk_path = "/home/vagrant/android-sdk"
|
|
ndk_paths = {
|
|
'r10e': "/home/vagrant/android-ndk/r10e",
|
|
'r11c': "/home/vagrant/android-ndk/r11c",
|
|
'r12b': "/home/vagrant/android-ndk/r12b",
|
|
'r13b': "/home/vagrant/android-ndk/r13b",
|
|
'r14b': "/home/vagrant/android-ndk/r14b",
|
|
'r15c': "/home/vagrant/android-ndk/r15c",
|
|
'r16b': "/home/vagrant/android-ndk/r16b",
|
|
}
|
|
java_paths = {
|
|
'8': "/usr/lib/jvm/java-8-openjdk-amd64",
|
|
}
|