Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"react-native-communications": "^1.0.1",
"react-native-extra-dimensions-android": "^0.17.0",
"react-native-gifted-messenger": "^0.1.4",
"react-native-twilio-ip-messaging": "git://github.com/ccm-innovation/react-native-twilio-ip-messaging.git#programable-chat"
"react-native-twilio-ip-chat": "^0.1.1"
}
}
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ pod 'React', :subspecs => ['Core', /* any other subspecs you require */], :path
pod 'RCTTwilioChat', :path => '../node_modules/react-native-twilio-chat/ios'

source 'https://github.com/twilio/cocoapod-specs'
pod 'TwilioChatClient', '~> 0.16.0'
pod 'TwilioAccessManager', '~> 0.1.1'
pod 'TwilioChatClient', '~> 0.17.1'
pod 'TwilioAccessManager', '~> 0.1.3'
```
**Note: the underlying Twilio SDKs require a minimum deployment target of `8.1`**. If your project's target is less than this you will get a CocoaPods install error (`Unable to satisfy the following requirements...`).

Expand Down Expand Up @@ -149,6 +149,7 @@ Thank you for your help in maintaining this project! Haven't contributed yet? [C
- [bbil](https://github.com/bbil)
- [jhabdas](https://github.com/jhabdas)
- [plonkus](https://github.com/plonkus)
- [mattshen](https://github.com/mattshen)
- [Kabangi](https://github.com/Kabangi)

## TODO 🗒
Expand Down
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ android {
defaultConfig {
minSdkVersion 19
targetSdkVersion 23
versionCode 10
versionName "1.0.0"
versionCode 11
versionName "0.1.1"
}
}
dependencies {
compile 'com.facebook.react:react-native:+'
compile "com.twilio:chat-android:0.11.2"
compile "com.twilio:chat-android:0.12.1"
compile "com.twilio:accessmanager-android:0.1.0"
}
4 changes: 2 additions & 2 deletions ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ target 'RCTTwilioChat' do

# Pods for RCTTwilioChat
source 'https://github.com/twilio/cocoapod-specs'
pod 'TwilioChatClient', '~> 0.16.0'
pod 'TwilioAccessManager', '~> 0.1.1'
pod 'TwilioChatClient', '~> 0.17.1'
pod 'TwilioAccessManager', '~> 0.1.3'
end
2 changes: 1 addition & 1 deletion ios/RCTTwilioChat.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RCTTwilioChat"
s.version = "1.0.0"
s.version = "0.1.1"
s.summary = "React Native wrapper for Twilio Programable Chat SDKs"

s.homepage = "https://github.com/ccm-innovation/react-native-twilio-chat"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-twilio-chat",
"version": "0.1.0",
"version": "0.1.1",
"description": "A React Native wrapper for the Twilio Chat iOS and Android SDKs",
"main": "lib/index.js",
"scripts": {
Expand Down