Update your package.json
to use the x.x.x
version.
npm install --save [email protected]
Modify your Podfile
for the Twilio dependency as follows:
pod 'TwilioIPMessagingClient', '~> 0.14.2'
Indicate to Android Studio to refresh the gradle dependencies.
Or, remove the cache and it will be auto-generated on the next build.
rm -rf $HOME/.gradle/caches/
- PR #22 - Fixed typos and method names (@Baisang)
- PR #28 - Added MIT license (@jhabdas)
- PR #31 - Client + Channel bug fixes
(Includes all features from 0.2.0-rc2
)
- PR #19 Fixed issue with NSString token not being converted into NSData (thanks @plonkus!)
- PR #18 Fixed negated
isSuccessful
resolves insetAttributes
andsetFriendlyName
in client (thanks @Baisang!) - PR #16 Updated Podspec to match Twilios requirement of only iOS 8.1 (thanks @Baisang!)
- Fixed misspelling of
lastConsumptionTimestamp
- Fixed lib Channel
getMembers
was still callingallObjects
- Fixed bug when
lastConsumedMessageIndex
is null
Update your package.json
to use the 0.2.0-rc2
version.
npm install --save [email protected]
Modify your Podfile
for the Twilio dependency as follows:
pod 'TwilioIPMessagingClient', '~> 0.14.2'
Indicate to Android Studio to refresh the gradle dependencies.
Or, remove the cache and it will be auto-generated on the next build.
rm -rf $HOME/.gradle/caches/
- Added
dateCreated
anddateUpdated
to Channel - Added
attributes
andsetAttributes
to Message - Added
isReachabilityEnabeld
to Client - Added
isOnline
andisNotifiable
properties to UserInfo - Added
onUpdate
andclose
methods to UserInfo - Added
lastConsumedMessageIndex
andlastConsumptionTimestamp
to Member class
- Updated Twilio SDK to 0.8.1
- Updated attributes to be JSONObject instead of Maps
sendMessage()
now uses a build in method instead of combingcreateMessage
withsendMessage
- Added
onToastFailed
,onToastReceived
, andonToastSubscribed
events (previously was iOS only)
- Updated Twilio SDK to 0.14.2
- Added
onMemberUserInfoUpdated
event for Client and Channel
client.getChannelBySid(sid)
is now replaced withclient.getChannel(sid)
client.deregister(token)
is now replaced withclient.unregister(token)
onToastRegistrationFailed
Client event is now replaced withonToastFailed