Skip to content

Commit 03a1195

Browse files
committed
Version 1.1.7
1 parent 96568cb commit 03a1195

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.7 (2016-06-02)
4+
5+
* Fixed Android crash reported in [#55](https://github.com/intercom/intercom-cordova/issues/55).
6+
37
# 1.1.6 (2016-05-25)
48

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

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.6" />
21+
<plugin name="cordova-plugin-intercom" version="~1.1.7" />
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.6",
3+
"version": "1.1.7",
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.6" 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.7" 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
@@ -61,7 +61,7 @@ private void setUpIntercom() {
6161
try {
6262
Context context = IntercomBridge.this.cordova.getActivity().getApplicationContext();
6363

64-
HeaderInterceptor.setCordovaVersion(context, "1.1.6");
64+
HeaderInterceptor.setCordovaVersion(context, "1.1.7");
6565

6666
ApplicationInfo app = context.getPackageManager().getApplicationInfo(context.getPackageName(), PackageManager.GET_META_DATA);
6767
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.6"];
12+
[Intercom setCordovaVersion:@"1.1.7"];
1313
#ifdef DEBUG
1414
[Intercom enableLogging];
1515
#endif

0 commit comments

Comments
 (0)