From 9ae39b637a9189931b6c47a6f14a7b4e43e24130 Mon Sep 17 00:00:00 2001 From: Pinghao Wu Date: Wed, 16 Oct 2024 14:27:49 +0800 Subject: [PATCH] build: move to build-tools 34 --- Containerfile | 2 +- build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index faf1416..b63f0cf 100644 --- a/Containerfile +++ b/Containerfile @@ -1,7 +1,7 @@ FROM archlinux RUN printf '[aurbuild]\nServer = https://aurbuild.xdavidwu.link\n' >> /etc/pacman.conf -RUN curl 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xf73f137d4573defaa097dbf09544cff6b08a3fd3' | pacman-key -a - && pacman-key --init && pacman-key --lsign-key f73f137d4573defaa097dbf09544cff6b08a3fd3 && pacman -Syu --noconfirm && pacman -S --noconfirm jdk21-openjdk android-sdk-cmdline-tools-latest android-platform-33 android-sdk-build-tools-33 android-ndk android-aarch64-openssl clang cmake ninja python-yaml && rm /var/cache/pacman/pkg/* && mkdir /build +RUN curl 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xf73f137d4573defaa097dbf09544cff6b08a3fd3' | pacman-key -a - && pacman-key --init && pacman-key --lsign-key f73f137d4573defaa097dbf09544cff6b08a3fd3 && pacman -Syu --noconfirm && pacman -S --noconfirm jdk21-openjdk android-sdk-cmdline-tools-latest android-platform-33 android-sdk-build-tools=r34.0.0-2 android-ndk android-aarch64-openssl clang cmake ninja python-yaml && rm /var/cache/pacman/pkg/* && mkdir /build WORKDIR /build diff --git a/build.gradle b/build.gradle index 10d985e..2eb76a6 100644 --- a/build.gradle +++ b/build.gradle @@ -12,7 +12,7 @@ apply plugin: 'com.android.application' android { namespace 'org.safcephfs' compileSdkVersion 'android-33' - buildToolsVersion '33' + buildToolsVersion '34' ndkPath '/opt/android-ndk' ndkVersion '27.0.12077973' -- 2.45.2