Skip to content

Instantly share code, notes, and snippets.

@jquerius
Created June 16, 2025 17:45
Show Gist options
  • Save jquerius/588ab628218d99fba704560e5e19b601 to your computer and use it in GitHub Desktop.
Save jquerius/588ab628218d99fba704560e5e19b601 to your computer and use it in GitHub Desktop.
Install CMake alongside Android SDK for native library builds in Github Actions
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