mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
12 lines
262 B
Bash
Executable File
12 lines
262 B
Bash
Executable File
#!/bin/sh
|
|
# you need to have dcrpcgen
|
|
|
|
# generate schema.json
|
|
ROOT_DIR=$PWD
|
|
cd ./jni/deltachat-core-rust/deltachat-rpc-server
|
|
cargo run -- --openrpc > "$ROOT_DIR/schema.json"
|
|
cd "$ROOT_DIR"
|
|
|
|
# generate code
|
|
dcrpcgen java --schema schema.json -o ./src/main/java/
|