ably-flutter
ably-flutter copied to clipboard
A wrapper around our Cocoa and Java client library SDKs, providing iOS and Android support for those using Flutter and Dart.
* Add following missing clientOptions to [AblyFlutterReader.m](https://github.com/ably/ably-flutter/blob/4089d6e9b0de1e9ad822745a7df6f3e23d2b3d3d/ios/Classes/codec/AblyFlutterReader.m#L148) 1. disconnectedRetryTimeout 1. suspendedRetryTimeout 1. httpRequestTimeout 1. httpMaxRetryCount 1. httpMaxRetryDuration 1. httpOpenTimeout 1. fallbackRetryTimeout 1. channelRetryTimeout 1. port 1. tlsport ┆Issue is synchronized...
Removes broken feature matrix link - will be replaced in the future with an updated feature checklist.
tiholic to add spec item ┆Issue is synchronized with this [Jira Task](https://ably.atlassian.net/browse/ECO-4595) by [Unito](https://www.unito.io)
Following properties are not supported on `ably-java` / `ably-cocoa` ## ably-cocoa **Unsupported properties** ##### ARTClientOptions * [ ] `useTokenAuth`: [TO3j4](https://docs.ably.io/client-lib-development-guide/features/#TO3j4) - boolean – When true, token authentication will always be...
### Why? I've been calling `Realtime#channels#get#attach` without calling `Realtime#connect` first This iteratively tries to attach to the channel and on timeout, RealtimeChannelStatus will be set as suspended. I wasn't sure...
Convert all `System.out.println` to a production ready logging system, probably `SLF4J` as suggested by QuintinWillison in this thread: https://github.com/ably/ably-flutter/pull/21#discussion_r462134457 ┆Issue is synchronized with this [Jira Task](https://ably.atlassian.net/browse/ECO-4604) by [Unito](https://www.unito.io)
Explore https://pub.dev/packages/pigeon Discussion: https://ably-real-time.slack.com/archives/C0178QGC093/p1596019218047000 ┆Issue is synchronized with this [Jira Task](https://ably.atlassian.net/browse/ECO-4605) by [Unito](https://www.unito.io)
The call to `UIApplication.registerForRemoteNotifications` is now managed inside `ably-cocoa` hence should be removed in the `AblyFlutterPlugin.m`. Link to PR - https://github.com/ably/ably-cocoa/pull/1293 ┆Issue is synchronized with this [Jira Task](https://ably.atlassian.net/browse/ECO-4606) by [Unito](https://www.unito.io)
NSInvalidArgumentException - Uncaught Exception: unrecognized selector sent to instance 0x28313f580
Hello. I have a flutter application which uses 7 different Ably streams. When the application is resumed from idle then sometimes the following crash occurs. I have not been able...
`getCodecType` should be rather `_CodecPair getCodec(...)` and return a codec instead of returning a number that can used to look up the `_CodecPair` in a Map? The way `getCodecType` is...