Created
June 16, 2025 17:45
-
-
Save jquerius/588ab628218d99fba704560e5e19b601 to your computer and use it in GitHub Desktop.
Install CMake alongside Android SDK for native library builds in Github Actions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Install Dependencies | |
runs: | |
using: 'composite' | |
steps: | |
- name: Setup Android SDK | |
if: ${{ inputs.android_setup == 'true' }} | |
uses: android-actions/setup-android@v3 # https://github.com/marketplace/actions/setup-android-sdk-tools | |
with: | |
log-accepted-android-sdk-licenses: false | |
packages: 'tools platform-tools cmake;3.22.1' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment