halcyon icon indicating copy to clipboard operation
halcyon copied to clipboard

Kotlin Multiplatform XMPP client library

Results 8 halcyon issues
Sort by recently updated
recently updated
newest added

``` import halcyon from 'halcyon-core-jsLegacy'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { constructor() { console.log( halcyon.tigase.halcyon.core.Halcyon()) } } ``` Fail `ERROR TypeError: this.eventBus is undefined`

Library like Smack providing xmpp over websocket support. Could be nice if halcyon support websocket as well.

I am attempting to retrieve contact's vcard as described in the issue: https://github.com/tigase/halcyon/issues/6#issue-715152700 For some vcard request I am getting responses like this: Request: ```xml ``` Response: ```xml ``` In...

There is no documentation or example code on how to retrieve user's roster. Please add code example on retrieving user's roster as well as other typical XMPP use cases: *...

Please add BOSH connector.

The README file points users to Tigase's online documentation website for Halcyon documentation. However, the website does not contain any documentation for the library yet.

The example in the README file provides a simple use case using `connectAndWait`. It does not, however, provide any details on how to check of the connection was successful or...

Hey guys, first of all thank you for your effort making Kotlin Multiplatform XMPP library. There are not many other solutions available in the area so far 👍 The only...