Skip to content

Commit e9cd2b2

Browse files
committed
Version 1.1.4
1 parent 51a88db commit e9cd2b2

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Intercom for Cordova/PhoneGap
22

3+
## 1.1.4 (2016-01-11)
4+
5+
* Updated Google Play Services for compatability with other plugins. Fixes [#31](https://github.com/intercom/intercom-cordova/issues/31).
6+
37
## 1.1.3 (2015-10-08)
48

59
* Updated Intercom for iOS to [2.3.18](https://github.com/intercom/intercom-ios/releases/tag/2.3.18).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To install the plugin in your Cordova app, run the following:
1818

1919
To add the plugin to your PhoneGap app, add the following to your `config.xml`:
2020

21-
<plugin name="cordova-plugin-intercom" version="~1.1.3" />
21+
<plugin name="cordova-plugin-intercom" version="~1.1.4" />
2222

2323
## Configuring Intercom
2424

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-intercom",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "Official Cordova/PhoneGap plugin for Intercom",
55
"cordova": {
66
"id": "cordova-plugin-intercom",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<plugin id="cordova-plugin-intercom" version="1.1.3" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
2+
<plugin id="cordova-plugin-intercom" version="1.1.4" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
33
<name>Intercom</name>
44
<author>Intercom</author>
55
<license>MIT License</license>

src/android/IntercomBridge.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ private void setUpIntercom() {
5353
try {
5454
Context context = IntercomBridge.this.cordova.getActivity().getApplicationContext();
5555

56-
HeaderInterceptor.setCordovaVersion(context, "1.1.3");
56+
HeaderInterceptor.setCordovaVersion(context, "1.1.4");
5757

5858
ApplicationInfo app = context.getPackageManager().getApplicationInfo(context.getPackageName(), PackageManager.GET_META_DATA);
5959
Bundle bundle = app.metaData;

src/ios/IntercomBridge.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ + (void)setCordovaVersion:(NSString *)v;
99
@implementation IntercomBridge : CDVPlugin
1010

1111
- (void)pluginInitialize {
12-
[Intercom setCordovaVersion:@"1.1.3"];
12+
[Intercom setCordovaVersion:@"1.1.4"];
1313
#ifdef DEBUG
1414
[Intercom enableLogging];
1515
#endif

0 commit comments

Comments
 (0)