Xuxian

Results 3 issues of Xuxian

```rust #[test] fn it_works() { let mut context = HashMapContext::new(); // context.set_value("a".into(), false.into()).unwrap(); let x = eval_boolean_with_context("true || a", &context).unwrap(); println!("{}", x); } ``` It got an error: `VariableIdentifierNotFound("a")`。But if...

enhancement

It looks like cargo-ndk always build from current directory. Even if I pass `--manifest-path=` it always throws `Failed to load Cargo.toml in current directory.` command: ```sh cargo ndk -t arm64-v8a...

I'm writing the unit tests for MyService, which runs in a separate process `android:process=":ai"`, and the code like this: ```kotlin //The Service: class MyService: Service() { inner class TestBinder() :...