{"id":19390218,"url":"https://github.com/connectycube/connectycube-flutter-sdk-releases","last_synced_at":"2026-07-12T02:30:16.990Z","repository":{"id":99062523,"uuid":"245372420","full_name":"ConnectyCube/connectycube-flutter-sdk-releases","owner":"ConnectyCube","description":"ConnectyCube Flutter SDK Releases","archived":false,"fork":false,"pushed_at":"2023-12-13T16:14:08.000Z","size":11,"stargazers_count":7,"open_issues_count":4,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-01-07T09:37:44.854Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ConnectyCube.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-03-06T08:56:58.000Z","updated_at":"2024-03-28T06:39:41.000Z","dependencies_parsed_at":"2023-12-13T18:18:37.146Z","dependency_job_id":null,"html_url":"https://github.com/ConnectyCube/connectycube-flutter-sdk-releases","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ConnectyCube%2Fconnectycube-flutter-sdk-releases","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ConnectyCube%2Fconnectycube-flutter-sdk-releases/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ConnectyCube%2Fconnectycube-flutter-sdk-releases/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ConnectyCube%2Fconnectycube-flutter-sdk-releases/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ConnectyCube","download_url":"https://codeload.github.com/ConnectyCube/connectycube-flutter-sdk-releases/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240549430,"owners_count":19819137,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-10T10:19:33.570Z","updated_at":"2026-07-12T02:30:16.942Z","avatar_url":"https://github.com/ConnectyCube.png","language":null,"funding_links":["https://www.buymeacoffee.com/connectycube"],"categories":[],"sub_categories":[],"readme":"[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://stand-with-ukraine.pp.ua)\n\n# ConnectyCube Flutter SDK Releases\n\nThis repository contains changelog and links to Flutter products released by ConnectyCube.\n\nIf you have any questions, comments, or issues related to any products distributed via this repository then please raise an issue here on GitHub repository  \nor contact the team by emailing support@connectycube.com.\n\n## SDK overview\n\nConnectyCube helps you implement real-time chat, video chat, push notifications and user authorization to any app with ease - no server side implementation required.  \nYou can concentrate fully on your mobile app development. Our Flutter SDK provides you with many helpful methods to build the chat and video chat from the client side.\n\nThis page presents a quick overview of the SDK’s functionalities and logic, then let you go through the easy steps of implementing ConnectyCube in your own app.\n\nConnectyCube Flutter SDK can be used on the following OS:\n\n- Android\n- iOS\n\n## Create ConnectyCube app\n\nRegister a FREE ConnectyCube account at [https://connectycube.com/signup](https://connectycube.com/signup), then create your 1st app and obtain an app credentials.  \nThese credentials will be used to identify your app.\n\nAll users within the same ConnectyCube app can communicate by chat or video chat with each other, across all platforms - iOS, Android, Web, etc.\n\n## When building a new app\n\nIf you are just starting your app and developing it from scratch, we recommend to use our Code Samples projects.\n\n[Download Code Samples (coming soon)](https://developers.connectycube.com/flutter/code-samples)\n\nThese code samples are ready-to-go apps with an appropriate functionality and simple enough that even novice developers will be able to understand them.\n\n## When integrating SDK into existing app\n\nIf you already have an app, do the following for integration.\n\n### Connect SDK\n\n#### 1. Depend on it\n\nAdd this to your package's `pubspec.yaml` file:\n\n```yaml\ndependencies:\n  connectycube_sdk: ^x.x.x\n```\n\n`x.x.x` is a latest version of [connectycube_sdk](https://pub.dev/packages/connectycube_sdk/versions) on [pub.dev](https://pub.dev) repository.\n\n#### 2. Install it\n\nYou can install packages from the command line:\n\nwith Flutter:\n\n```shell\nflutter pub get\n```\n\nAlternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.\n\n#### 3. Import it\n\nNow in your Dart code, you can use:\n\n```dart\nimport 'package:connectycube_sdk/connectycube_sdk.dart';\n```\n\n### Initialize\n\nInitialize framework with your ConnectyCube application credentials. You can access your application credentials  \nin [ConnectyCube Dashboard](https://admin.connectycube.com):\n\n```dart\nString appId = \"\";\nString authKey = \"\";\nString authSecret = \"\";\n\ninit(appId, authKey, authSecret);\n```\n\n### Configuration\n\nAn additional configs can be passed via `CubeSettings`:\n\n```dart\nCubeSettings.instance.isDebugEnabled = true; // to enable ConnectyCube SDK logs; \nCubeSettings.instance.setEndpoints(customApiEndpoint, customChatEndpoint); // to set custom endpoints\n```\n\n### Now integrate messaging \u0026 calling capabilities\n\nFollow the API guides on how to integrate chat and calling features into your app:\n\n- [Messaging API documentation](https://developers.connectycube.com/flutter/messaging)\n- [Calling API documentation (coming soon)](https://developers.connectycube.com/flutter/videocalling)\n\n## SDK Changelog\n\nThe complete SDK changelog is available on [ConnectyCube pub.dev](https://pub.dev/packages/connectycube_sdk#-changelog-tab-) page.\n\n## Have an issue?\n\nGot troubles with integration? Create an issue at [Issues page](https://github.com/ConnectyCube/connectycube-flutter-sdk-releases/issues).\n\n**Want to support our team**:\u003cbr\u003e\n\u003ca href=\"https://www.buymeacoffee.com/connectycube\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.buymeacoffee.com/buttons/v2/default-blue.png\" alt=\"Buy Me A Coffee\" style=\"height: 60px !important;width: 217px !important;\" \u003e\u003c/a\u003e\n\n## License\n\nConnectyCube SDK for Flutter is licensed under the ConnectyCube SDK License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconnectycube%2Fconnectycube-flutter-sdk-releases","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fconnectycube%2Fconnectycube-flutter-sdk-releases","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fconnectycube%2Fconnectycube-flutter-sdk-releases/lists"}