[Add] ZJSDK 2.5.8.12
[CocoaPods.git] / Specs / f / 1 / e / Communicator / 3.1.0 / Communicator.podspec.json
blobd66352b1cd3fbc984418e175abccc1f9fc3ffa39
2   "name": "Communicator",
3   "version": "3.1.0",
4   "summary": "Communication between iOS and watchOS apps just got a whole lot better.",
5   "description": "Sending messages and data between watchOS and iOS apps\nis possible thanks to Apple's work on `WatchConnectivity`,\nbut there are a lot of delegate callbacks to work with,\nsome of the API calls are similar, and it's not really\nclear which is needed for what purpose.\n\n`Communicator` means you don't have to spend any time writing a cross-platform wrapper around `WatchConnectivity` and is extremely easy to use.\n\nEach app gets its own shared `Communicator` object to use which handles all the underlying session stuff:\n\n```swift\nCommunicator.shared\n```\n\nUsage between the two platforms is identical, so you can\nuse it in a shared framework with few workarounds.\n\nHere's how you send a simple message with Communicator.\n\n```swift\nlet message = ImmediateMessage(identifier: \"1234\", content: [\"messageKey\" : \"This is some message content!\"])\ntry? Communicator.shared.send(immediateMessage: message)\n```\n\nThis will try to send a message to the counterpart immediately. If the underlying session is not active, the `try` will fail and Communicator will `throw` an error you can catch if you want.\n\nOn the other device you register as an observer for new messages:\n\n```swift\nCommunicator.shared.immediateMessageReceivedObservers.add { message in\n    if message.identifier == \"1234\" {\n        print(\"Message received: (message.content)\")\n    }\n}\n```\n\nThe great thing about using this style of observing means that you can observe these messages from anywhere in your app and filter out the ones you don't care about.\n\n`Communicator` can also transfer `Blob`s and sync `Context`s.\n\n`Blob`s are perfect for sending larger amounts of data (`WatchConnectivity` will reject large data in other types of messages), and will continue to transfer even if your app\nis terminated during transfer.\n\nYou can use a `Context` to keep things in sync between devices, which makes it perfect for preferences. `Context`s are not suitable for messaging or sending large data.",
6   "homepage": "https://github.com/KaneCheshire/Communicator",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Kane Cheshire": "kane.cheshire@googlemail.com"
13   },
14   "source": {
15     "git": "https://github.com/KaneCheshire/Communicator.git",
16     "tag": "3.1.0"
17   },
18   "social_media_url": "https://twitter.com/kanecheshire",
19   "platforms": {
20     "ios": "9.3",
21     "watchos": "2.2"
22   },
23   "source_files": "Communicator/Classes/**/*",
24   "frameworks": "WatchConnectivity",
25   "dependencies": {
26     "TABObserverSet": [
27       "2.1.0"
28     ]
29   }