Replies: 3 comments
-
I've just started to look into this for my own project @ManuLpz4, did you manage to solve it? |
Beta Was this translation helpful? Give feedback.
-
@connorads Nope yet, but if you want we can work together to achieve it 👍🏻 |
Beta Was this translation helpful? Give feedback.
-
So I got it working @ManuLpz4. LocallyFirst I started by working out how to do it locally. Which version of Android Gradle Plugin (AGP) are you using @ManuLpz4? CITo get it working in CI there are two steps:
The NDK version I need installing Simple way (UPDATE/EDIT)I tried to install NDK using # your GitHub Action workflow yml
- name: Install NDK 21.1.6352462
run: $ANDROID_HOME/tools/bin/sdkmanager --install "ndk;21.1.6352462" Previous wayStep 2. was actually quite pernickety at first ... I've started with a bit of dirty approach which was to fork # your GitHub Action workflow yml
- uses: connorads/setup-ndk@hard-coded-extract-path
with:
ndk-version: r21b
- name: Rename NDK folder from android-ndk-r21b to 21.1.6352462
run: |
mv /usr/local/lib/android/sdk/ndk/android-ndk-r21b /usr/local/lib/android/sdk/ndk/21.1.6352462 CI Future Improvements
Would be nice to get this down from 80 seconds. Alternatively if I just update to AGP 4.2+ then this action would already have installed the correct version of the NDK. |
Beta Was this translation helpful? Give feedback.
-
Hi guys! Hope you are doing well 😁
In @belo-app we are facing problems to generate debug symbols to upload to Google Play and we are getting the following warning:
Someone knows how to solve it for CD? All solutions aims to solve it locally :/
Please and thank you :)
Beta Was this translation helpful? Give feedback.
All reactions