We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 201f598 commit 109d1afCopy full SHA for 109d1af
.github/workflows/test-android.yaml
@@ -9,9 +9,6 @@ on:
9
- "bdk-ffi/**"
10
- "bdk-android/**"
11
12
-#env:
13
-# ANDROID_NDK_ROOT: /Users/runner/Library/Android/sdk/ndk/25.2.9519653
14
-
15
jobs:
16
build:
17
runs-on: macos-12
bdk-android/plugins/src/main/kotlin/org/bitcoindevkit/plugins/UniFfiAndroidPlugin.kt
@@ -28,6 +28,7 @@ internal class UniFfiAndroidPlugin : Plugin<Project> {
28
29
// if ANDROID_NDK_ROOT is not set then set it to github actions default
30
if (System.getenv("ANDROID_NDK_ROOT") == null) {
31
+ println("ANDROID_NDK_ROOT not set, setting it to ${System.getenv("ANDROID_SDK_ROOT")}/ndk-bundle"
32
environment(
33
Pair("ANDROID_NDK_ROOT", "${System.getenv("ANDROID_SDK_ROOT")}/ndk-bundle")
34
)
0 commit comments