diff --git a/.github/workflows/build-addon-on-push.yml b/.github/workflows/build-addon-on-push.yml index 09548548..e57b8fc6 100644 --- a/.github/workflows/build-addon-on-push.yml +++ b/.github/workflows/build-addon-on-push.yml @@ -21,6 +21,11 @@ jobs: uses: actions/setup-python@v4 with: python-version: '3.x' + - name: Android dependencies + uses: nttld/setup-ndk@v1 + with: + ndk-version: r23c + link-to-sdk: true - name: Install scons run: | python -m pip install scons==4.0.0 diff --git a/.github/workflows/mavencentral-publish.yml b/.github/workflows/mavencentral-publish.yml index 6f323e3d..257a06d3 100644 --- a/.github/workflows/mavencentral-publish.yml +++ b/.github/workflows/mavencentral-publish.yml @@ -19,6 +19,11 @@ jobs: uses: actions/setup-python@v4 with: python-version: '3.x' + - name: Android dependencies + uses: nttld/setup-ndk@v1 + with: + ndk-version: r23c + link-to-sdk: true - name: Install scons run: | python -m pip install scons==4.0.0 diff --git a/.gitignore b/.gitignore index 27b427f4..1c924703 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,27 @@ +# Android Studio project files *.iml .gradle /local.properties /.idea -.DS_Store /build /captures .externalNativeBuild .cxx local.properties + +# Visual Studio Code project files .vscode + +# Binaries +*.o +*.os +*.so +*.obj +*.bc +*.pyc +*.dblite +*.pdb +*.lib + +# Misc +.DS_Store \ No newline at end of file