cordova-plugin-intercom
Advanced tools
Changelog
5.0.0 (2018-01-22)
Supports cordova-android
7.0.0, the default Android build version when using cordova-cli
8.0.0, though it may also be specified on earlier versions (tested on Cordova 7.1.0)
Deprecates GCM as a push type in favor of FCM. This includes removing the ability to specify a GCM/FCM sender id directly from config.xml. To use push on Android, adding your google-services.json to the root of your project is now required.
Per the cordova-android
7.0.0 release notes, the minimum Android API version supported is now API Level 19.
Update guide:
cordova-cli
:
npm install -g cordova
cd my_project
cordova platform remove android
cordova platform add android@7.0.0
plugin-cordova-intercom
:
cordova plugin remove cordova-plugin-intercom
cordova plugin add cordova-plugin-intercom
<preference name="android-minSdkVersion" value="19" />
<preference name="intercom-android-push-type" value="FCM"/>
to your config.xmlgoogle-services.json
file to the root directory of your project.NB: The above steps may not be exhaustive and are dependent on your app and system Cordova configuration
Changelog
4.1.0 (2017-11-02)
intercom.logout()
.Changelog
4.0.0 (2017-08-29)
intercom.setSecureMode(hmac, data)
.Changelog
3.2.0 (2017-04-21)
intercom.setUserHash(userHash)
to support Identity Verification. This method replaces intercom.setSecureMode(hmac, data)
which was used for our previous security feature Secure Mode.