From 6ec656b0943f60fa099983f37b68e96295345d39 Mon Sep 17 00:00:00 2001 From: jobobby04 Date: Sat, 9 May 2020 20:30:45 -0400 Subject: [PATCH] Action: Change way of attempting to get the needed NDK --- .github/workflows/android-debug.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/android-debug.yml b/.github/workflows/android-debug.yml index a8d2e87f5..995a49046 100644 --- a/.github/workflows/android-debug.yml +++ b/.github/workflows/android-debug.yml @@ -17,19 +17,21 @@ jobs: uses: actions/setup-java@v1 with: java-version: 1.8 - - name: Android NDK toolchain Setup - uses: ravinderjangra/android-ndk-toolchain-setup@0.2 - with: + - name: Get NDK + run: sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;20.0.5594570" + #- name: Android NDK toolchain Setup + #uses: ravinderjangra/android-ndk-toolchain-setup@0.2 + #with: # Android API - api: 20 # default is 21 + #api: 20 # default is 21 # Platform arch - arch: x86 + #arch: x86 # Path to use for NDK toolchain - install-location: toolchains + #install-location: toolchains # Force install toolchain - force: true # optional, default is false + #force: true # optional, default is false # Add toolchain to the path - add-to-path: true # optional, default is true + #add-to-path: true # optional, default is true - name: Create google-services.json uses: finnp/create-file-action@1.0.0 env: