Skip to content

Commit

Permalink
Print NDK versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Pururun committed Dec 11, 2024
1 parent 5502731 commit 379842c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/android-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,18 @@ jobs:
- name: Fix HOME path
run: echo "HOME=/root" >> $GITHUB_ENV

- name: $ANDROID_NDK
run: echo $ANDROID_NDK

- name: $ANDROID_NDK_HOME
run: echo $ANDROID_NDK_HOME

- name: $ANDROID_NDK_LATEST_HOME
run: echo $ANDROID_NDK_LATEST_HOME

- name: $ANDROID_NDK_ROOT
run: echo $ANDROID_NDK_ROOT

- name: Checkout repository
uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ android {
namespace = "net.mullvad.mullvadvpn"
compileSdk = Versions.compileSdkVersion
buildToolsVersion = Versions.buildToolsVersion
ndkVersion = "27.2.12479018"
ndkVersion = Versions.ndkVersion

defaultConfig {
val localProperties = gradleLocalProperties(rootProject.projectDir, providers)
Expand Down
1 change: 1 addition & 0 deletions android/buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ object Versions {
const val buildToolsVersion = "35.0.0"
const val minSdkVersion = 26
const val targetSdkVersion = 35
const val ndkVersion = "27.2.12479018"

const val junitJupiter = "5.11.3"
const val junit5Android = "1.6.0"
Expand Down

0 comments on commit 379842c

Please sign in to comment.