We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
build.rs
Now we use CLI to generate bindings for iOS and Android
but if it could be moved to build.rs instead of running cargo run --bin ios It would make the building easier
cargo run --bin ios
Ideally we just move the script to mopro-ffi/build.rs and when users activate
mopro-ffi/build.rs
[build-dependencies] mopro-ffi = {version = "0.1", features = ["ios"]}
the current app_config/ios.rs scripts executed and the bindings are generated
app_config/ios.rs
Question The current uniffi needs to build first and execute binary after building e.g.
cargo build --release cargo run --bin uniffi-bindgen generate --library target/release/libmath.so --language kotlin --out-dir out
not sure if it can be executed in the same build script
Run the scripts
test-e2e/build.rs
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
Now we use CLI to generate bindings for iOS and Android
but if it could be moved to
build.rs
instead of runningcargo run --bin ios
It would make the building easier
Details
Ideally we just move the script to
mopro-ffi/build.rs
and when users activate
the current
app_config/ios.rs
scripts executed and the bindings are generatedQuestion
The current uniffi needs to build first and execute binary after building
e.g.
not sure if it can be executed in the same build script
Acceptance criteria
Run the scripts
in
test-e2e/build.rs
The text was updated successfully, but these errors were encountered: