1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

Add NDK r20b

This commit is contained in:
Licaon_Kter 2019-12-16 00:07:03 +00:00 committed by Marcus
parent d2481375bb
commit 126f6bf839
4 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ ndk_paths = {
'r17c': "/home/vagrant/android-ndk/r17c", 'r17c': "/home/vagrant/android-ndk/r17c",
'r18b': "/home/vagrant/android-ndk/r18b", 'r18b': "/home/vagrant/android-ndk/r18b",
'r19c': "/home/vagrant/android-ndk/r19c", 'r19c': "/home/vagrant/android-ndk/r19c",
'r20': "/home/vagrant/android-ndk/r20", 'r20b': "/home/vagrant/android-ndk/r20b",
} }
java_paths = { java_paths = {
'8': "/usr/lib/jvm/java-8-openjdk-amd64", '8': "/usr/lib/jvm/java-8-openjdk-amd64",

View File

@ -15,7 +15,7 @@ if [ ! -e $NDK_BASE/r10e ]; then
mv android-ndk-r10e r10e mv android-ndk-r10e r10e
fi fi
for version in r11c r12b r13b r14b r15c r16b r17c r18b r19c r20; do for version in r11c r12b r13b r14b r15c r16b r17c r18b r19c r20b; do
if [ ! -e ${NDK_BASE}/${version} ]; then if [ ! -e ${NDK_BASE}/${version} ]; then
unzip /vagrant/cache/android-ndk-${version}-linux-x86_64.zip > /dev/null unzip /vagrant/cache/android-ndk-${version}-linux-x86_64.zip > /dev/null
mv android-ndk-${version} ${version} mv android-ndk-${version} ${version}

View File

@ -21,7 +21,7 @@
# 'r17c': None, # 'r17c': None,
# 'r18b': None, # 'r18b': None,
# 'r19c': None, # 'r19c': None,
# 'r20': None, # 'r20b': None,
# } # }
# Directory to store downloaded tools in (i.e. gradle versions) # Directory to store downloaded tools in (i.e. gradle versions)

View File

@ -382,8 +382,8 @@ CACHE_FILES = [
'4f61cbe4bbf6406aa5ef2ae871def78010eed6271af72de83f8bd0b07a9fd3fd'), '4f61cbe4bbf6406aa5ef2ae871def78010eed6271af72de83f8bd0b07a9fd3fd'),
('https://dl.google.com/android/repository/android-ndk-r19c-linux-x86_64.zip', ('https://dl.google.com/android/repository/android-ndk-r19c-linux-x86_64.zip',
'4c62514ec9c2309315fd84da6d52465651cdb68605058f231f1e480fcf2692e1'), '4c62514ec9c2309315fd84da6d52465651cdb68605058f231f1e480fcf2692e1'),
('https://dl.google.com/android/repository/android-ndk-r20-linux-x86_64.zip', ('https://dl.google.com/android/repository/android-ndk-r20b-linux-x86_64.zip',
'57435158f109162f41f2f43d5563d2164e4d5d0364783a9a6fab3ef12cb06ce0'), '8381c440fe61fcbb01e209211ac01b519cd6adf51ab1c2281d5daad6ca4c8c8c'),
] ]