-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
146 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
By [**Diversido**](https://www.diversido.io) | ||
|
||
## Flutter Twilio Conversations | ||
This package is based on [Twilio Programmable Chat Plugin](https://pub.dev/packages/twilio_programmable_chat). We decided to make our own version of it and rebase to Twilio Conversations SDK since Twilio Programmeble Chat is sunsetting this year. It is not an official plugin and still requires some fixes and further maintenance, please do not report issues of it to Twilio — if you have any issues, please file an issue instead of contacting support. | ||
|
||
## Installing the plugin | ||
|
||
```sh | ||
# Run the following command | ||
$ dart pub add flutter_twilio_conversations | ||
``` | ||
|
||
## Setup | ||
No special setup required, most of the tips on Console setup can be found in [Twilio's Native SDK Guides](https://www.twilio.com/docs/conversations) | ||
|
||
## Supported platforms | ||
* Android | ||
* iOS | ||
* Web | ||
|
||
## Tutorial for uploading new versions | ||
```sh | ||
# Start by uploading a new version of the Platform interface | ||
$ cd flutter_twilio_conversations_platform_interface && flutter pub get && dart pub publish | ||
# Then wait several minutes and upload the new Web package, which depends on the new version of the interface | ||
$ cd .. && cd flutter_twilio_conversations_web && flutter pub upgrade && dart pub publish | ||
# Then wait several minutes and upload the new main package, which depends on both other packages | ||
$ cd .. && cd flutter_twilio_conversations && flutter pub upgrade && dart pub publish | ||
``` | ||
|
||
|
||
# Development and Contributing | ||
Feel free to contribute by creating merge requests! |
Oops, something went wrong.