Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plugin #30

Open
wants to merge 15 commits into
base: plugin
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: add release flag for android
  • Loading branch information
Pierre-Monier committed Oct 19, 2022
commit 704b52dc0aedeebea7b28507ac08ce6b8443e393
Binary file modified android/libs/arm64-v8a/libnative.so
Binary file not shown.
Binary file modified android/libs/armeabi-v7a/libnative.so
Binary file not shown.
2 changes: 1 addition & 1 deletion script/build_android.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

build() {
echo "Building android libs"
`cd native/ && cargo ndk -t armeabi-v7a -t arm64-v8a -o ../android/libs build && cd ..;`
`cd native/ && cargo ndk -t armeabi-v7a -t arm64-v8a -o ../android/libs build --release && cd ..;`
}

build