Skip to content

Add font inconsolata #14

Add font inconsolata

Add font inconsolata #14

Workflow file for this run

name: Android
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
- name: Clone imgui_bundle
run: |
mkdir -p external && cd external
git clone https://github.com/pthom/imgui_bundle.git
cd imgui_bundle && git submodule update --init --recursive && cd ..
cd ..
# - name: Setup interactive tmate session
# uses: mxschmitt/action-tmate@v3
- name: invoke cmake to create gradle / android studio project
# This will create the project
# build_android/hello_imgui_demodocking_AndroidStudio
run: |
export ANDROID_HOME=/usr/local/lib/android/sdk
mkdir build_android
cd build_android
../external/imgui_bundle/external/hello_imgui/hello_imgui/tools/android/cmake_arm-android.sh ..
- name: gradlew build
# This will build for all android architectures
run: |
export ANDROID_HOME=/usr/local/lib/android/sdk
cd build_android/imgui_bundle_example_integration_AndroidStudio
./gradlew build