From b769abdb0aa37cbd88bda4ed0b226fb8f6206a72 Mon Sep 17 00:00:00 2001 From: Jamil Date: Wed, 21 Feb 2024 10:17:47 -0800 Subject: [PATCH] fix(ci): Use default NDK on GH runners (#3716) This should fix the flaky kotlin builds if the NDK is actually installed. --- kotlin/android/app/build.gradle.kts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kotlin/android/app/build.gradle.kts b/kotlin/android/app/build.gradle.kts index 3a7a9de03..88953f0e0 100644 --- a/kotlin/android/app/build.gradle.kts +++ b/kotlin/android/app/build.gradle.kts @@ -44,7 +44,10 @@ android { namespace = "dev.firezone.android" compileSdk = 34 - ndkVersion = "26.1.10909125" + + // Life is easier if we just match the default NDK on the Ubuntu 22.04 runners + // https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md#android + ndkVersion = "25.2.9519653" defaultConfig { applicationId = "dev.firezone.android"