mirror of
https://github.com/aljazceru/notedeck.git
synced 2025-12-17 08:44:20 +01:00
11 lines
240 B
Bash
Executable File
11 lines
240 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
root_dir=$PWD
|
|
|
|
cargo ndk --target arm64-v8a -o ./crates/notedeck_chrome/android/app/src/main/jniLibs/ build --profile release
|
|
|
|
cd ./crates/notedeck_chrome/android
|
|
|
|
./gradlew build && ./gradlew installDebug
|
|
|
|
cd $root_dir |