mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-14 19:10:11 +01:00
62ddab7edd
The currently included Qt has known security issues and is outdated. This can now be replaced by downloading and installing the Qt installer using the sudo= build field. @relan's provisioner system will also replace this once that's done. There are only two apps that currently use the Qt stuff: * csd.qtproject.minesweeper * org.openorienteering.mapper
15 lines
482 B
Python
15 lines
482 B
Python
sdk_path = "/home/vagrant/android-sdk"
|
|
ndk_paths = {
|
|
'r9b': "/home/vagrant/android-ndk/r9b",
|
|
'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",
|
|
'r16': "/home/vagrant/android-ndk/r16",
|
|
}
|
|
java_paths = {
|
|
'8': "/usr/lib/jvm/java-8-openjdk-amd64",
|
|
}
|