Fabrice

Results 6 comments of Fabrice

The config bellow works for me. **in root build.gradle**: ``` buildscript { ... repositories { google() mavenCentral() maven { url "https://jitpack.io" } } ... } ``` **in settings.gradle**: ``` dependencyResolutionManagement...

@clashcaddie After adding ```implementation 'javax.xml.stream:stax-api:1.0-2'``` to my dependencies the following works for me: ``` val xmlFactory = XmlFactory.builder() .xmlInputFactory(WstxInputFactory()) .xmlOutputFactory(WstxOutputFactory()) .build() ```

Running CLion 2017.1.1 on Mac OS X 10.12.3 and using @rjuang plugin worked for me - will check on Ubuntu 16.10 asap.

I would also be super interested by that feature - trying to debug our in house sse streamed events and being able to see them as they come instead of...

> Okay yeah so this is down to how the JSON serialisation and `invoke` kinda "flattens" results, not much we can do about this immediately :/ but making `tauri_sys::Error` public...

Was browsing the issues looking for something totally not related to thsi one and I wish I had stumbled upon earlier but needed something similar a few weeks ago and...