Oguz Kocer
Oguz Kocer
According to the [documentation](https://mozilla.github.io/uniffi-rs/0.28/proc_macro/index.html#the-uniffiexport-attribute)([source](https://github.com/mozilla/uniffi-rs/blob/v0.28.0/docs/manual/src/proc_macro/index.md?plain=1#L109-L112)), `Option` is supported by proc macro: ``` #[uniffi::export] fn process_data(a: &MyRecord, b: &MyEnum, c: Option) {} ``` However, this seems to result in the following error:...
Here is a recording, that uses the diff below, showing that integration is working as expected: ``` diff --git a/WordPress/src/main/java/org/wordpress/android/ui/accounts/LoginActivity.java b/WordPress/src/main/java/org/wordpress/android/ui/accounts/LoginActivity.java index 0d67b97b833..2265da162c6 100644 --- a/WordPress/src/main/java/org/wordpress/android/ui/accounts/LoginActivity.java +++ b/WordPress/src/main/java/org/wordpress/android/ui/accounts/LoginActivity.java @@ -215,6...
This PR is used to showcase why `fluxc-annotations` and `fluxc-processor` modules need to be published.