Salvatore Testa

Results 18 comments of Salvatore Testa

I updated the Compose version and still had the same error. ```diff diff --git a/build.gradle b/build.gradle index 6d6a939..ecd97cb 100755 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ buildscript { ext...

Here's @ligi's [build script.](https://github.com/ligi/IPFSDroid/issues/28#issuecomment-366562049). ``` mkdir /tmp/workspace cd /tmp/workspace/ export GOPATH=/tmp/workspace/ export PATH=$GOPATH/bin:$PATH go get -d github.com/ipfs/go-ipfs cd $GOPATH/src/github.com/ipfs/go-ipfs make toolkit_upgrade make deps xgo -go 1.8.3 -ldflags "-s -w" --targets=android-16/*...

@jerryseigle, what steps can I take to reproduce this error? The message >Cannot run program "git": CreateProcess error=2, The system cannot find the file specified makes me think something is...

It looks like there are no dependencies listed on the `setup.py` files that `pip` uses. The Python documentation lists [two options to fix this](https://packaging.python.org/discussions/install-requires-vs-requirements/#install-requires-vs-requirements-files).

I'm struggling with this one. ```bash ❯ cargo test -p unary-result-alias --test test_generated_bindings Compiling serde v1.0.186 Compiling memchr v2.5.0 Compiling goblin v0.8.0 Compiling nom v7.1.3 Compiling weedle2 v5.0.0 (/Users/sal/Developer/uniffi-rs/weedle2) Compiling...

Adding [jna-5.14.0.jar](https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.14.0/jna-5.14.0.jar) to the `CLASSPATH` does the trick. On to the next thing!

Okay, I figured out the bug! # Before There's one combined `Config` that contains four languages inside its `bindings` field. https://github.com/mozilla/uniffi-rs/blob/c6ddceea437423b39eee0e706743ced5237b226f/uniffi_bindgen/src/lib.rs#L469-L473 https://github.com/mozilla/uniffi-rs/blob/6e4170d4dab751027aad662837aa394de8ff99ba/uniffi_bindgen/src/bindings/mod.rs#L92-L102 The `uniffi.toml` files, group the different fields be...

I added back the usage of `BindingGeneratorDefault`, so the various `bindings.{language}.*` configurations would work without a major change. I still want to move `try_format_code` into the Config which will probably...

@bendk, would it make sense to bring back https://github.com/mozilla/uniffi-rs/pull/1205 now that the versioning issue (https://github.com/mozilla/uniffi-rs/pull/1203) has been solved (assuming it has)?