Skip to content

Commit

Permalink
Update versions to 2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
asmodeoux committed Aug 16, 2024
1 parent 12536ab commit 19278b0
Show file tree
Hide file tree
Showing 4 changed files with 146 additions and 73 deletions.
33 changes: 33 additions & 0 deletions README.md
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!
Loading

0 comments on commit 19278b0

Please sign in to comment.