1
0
mirror of https://github.com/PurpleI2P/i2pd-android.git synced 2025-02-02 18:04:28 +00:00

[workflow] download ndk manually

This commit is contained in:
R4SAS 2020-10-15 05:22:25 +03:00 committed by GitHub
parent 3659b5190f
commit edc7d5e5a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,9 +18,12 @@ jobs:
- name: Setup Android SDK
uses: android-actions/setup-android@v2
- uses: nttld/setup-ndk@v1
with:
ndk-version: r19c
- name: Setup Android NDK
run: |
export NDK_VERSION=r19c
curl -L https://dl.google.com/android/repository/android-ndk-${NDK_VERSION}-linux-x86_64.zip -O
unzip -q android-ndk-${NDK_VERSION}-linux-x86_64.zip
export ANDROID_NDK_HOME=`pwd`/android-ndk-${NDK_VERSION}
- name: Build with Gradle
run: ./gradlew assembleDebug