Don't compile jxr by default

This commit is contained in:
Fancy2209 2024-04-12 14:50:44 +00:00 committed by TÖRÖK Attila
parent fa45f2566d
commit 643c6370bc
3 changed files with 2 additions and 3 deletions

View File

@ -50,7 +50,7 @@ jobs:
- name: Build native libs
run: |
unset ANDROID_SDK_ROOT # Deprecated, will cause an error if left set.
cargo ndk --bindgen --target ${{ matrix.android-abi }} --platform 26 -o jniLibs build --release
cargo ndk --bindgen --target ${{ matrix.android-abi }} --platform 26 -o jniLibs build --release --features jpegxr
- uses: actions/upload-artifact@v4
with:

View File

@ -38,7 +38,7 @@ jobs:
run: cargo install cargo-ndk
- name: Check clippy
run: cargo ndk --bindgen -t arm64-v8a -- clippy --all --all-features --tests -- -D warnings
run: cargo ndk --bindgen -t arm64-v8a --features jpegxr -- clippy --all --all-features --tests -- -D warnings
android:
runs-on: ubuntu-latest

View File

@ -33,7 +33,6 @@ ruffle_core = { git = "https://github.com/ruffle-rs/ruffle.git", branch = "maste
"lzma",
"default_compatibility_rules",
"default_font",
"jpegxr"
] }
ruffle_render_wgpu = { git = "https://github.com/ruffle-rs/ruffle.git", branch = "master" }