Skip to content

Commit 14be583

Browse files
committed
released 1.1.10
1 parent d81d06d commit 14be583

File tree

13 files changed

+28
-10
lines changed

13 files changed

+28
-10
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log
22

3+
## Version 1.1.10
4+
5+
27-11-2015
6+
7+
* Tweaked some network settings for improved reliability
8+
* Improved logging messages for network request failures, in particular a 'canceled' request should give the reason why it was cancelled now and if you provide invalid credentials (app-id or api key) the library will fail faster with a better log message.
9+
* Fixed a bug that was causing the library to do work it didn't need to if an app became active in the background.
10+
* Fixed a bug where calling `reset()` wasn't removing on screen notifications.
11+
* Fixed a bug where push messages were still being sent after `reset()` was called.
12+
* Fixed a bug that caused a new message to duplicate the first part if it was replied to immediately
13+
14+
315
## Version 1.1.9
416

517
03-11-2015

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Intercom for Android 1.1.9
1+
# Intercom for Android 1.1.10
22

33
## Supported versions
44
Targets Android 2.3 (API 9) but *only* 4.0.3 (API 15) and above have tracking and messaging functionality.
19.6 KB
Binary file not shown.
-19.6 KB
Binary file not shown.

jar/intercom-sdk-base/AndroidManifest.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="io.intercom.android.sdk"
4-
android:versionCode="26"
5-
android:versionName="1.1.9" >
4+
android:versionCode="27"
5+
android:versionName="1.1.10" >
66

77
<uses-sdk
88
android:minSdkVersion="9"
@@ -18,17 +18,20 @@
1818
<activity
1919
android:name="io.intercom.android.sdk.activities.MainActivity"
2020
android:configChanges="screenSize|orientation"
21+
android:exported="false"
2122
android:launchMode="singleTop"
2223
android:theme="@style/IntercomSDK_PanelTheme"
2324
android:windowSoftInputMode="stateUnchanged|adjustResize" />
2425
<activity
2526
android:name="io.intercom.android.sdk.attachments.AttachmentActivity"
2627
android:configChanges="screenSize|orientation"
28+
android:exported="false"
2729
android:theme="@style/IntercomSDK_AttachmentTheme"
2830
android:windowSoftInputMode="stateUnchanged|adjustResize" />
2931
<activity
3032
android:name="io.intercom.android.sdk.conversation.lightbox.LightboxActivity"
3133
android:configChanges="screenSize|orientation"
34+
android:exported="false"
3235
android:theme="@style/IntercomSDK_AttachmentTheme"
3336
android:windowSoftInputMode="stateUnchanged|adjustResize" />
3437
<activity

jar/intercom-sdk-base/aapt/AndroidManifest.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="io.intercom.android.sdk"
4-
android:versionCode="26"
5-
android:versionName="1.1.9" >
4+
android:versionCode="27"
5+
android:versionName="1.1.10" >
66

77
<uses-sdk
88
android:minSdkVersion="9"
@@ -18,17 +18,20 @@
1818
<activity
1919
android:name="io.intercom.android.sdk.activities.MainActivity"
2020
android:configChanges="screenSize|orientation"
21+
android:exported="false"
2122
android:launchMode="singleTop"
2223
android:theme="@style/IntercomSDK_PanelTheme"
2324
android:windowSoftInputMode="stateUnchanged|adjustResize" />
2425
<activity
2526
android:name="io.intercom.android.sdk.attachments.AttachmentActivity"
2627
android:configChanges="screenSize|orientation"
28+
android:exported="false"
2729
android:theme="@style/IntercomSDK_AttachmentTheme"
2830
android:windowSoftInputMode="stateUnchanged|adjustResize" />
2931
<activity
3032
android:name="io.intercom.android.sdk.conversation.lightbox.LightboxActivity"
3133
android:configChanges="screenSize|orientation"
34+
android:exported="false"
3235
android:theme="@style/IntercomSDK_AttachmentTheme"
3336
android:windowSoftInputMode="stateUnchanged|adjustResize" />
3437
<activity
Binary file not shown.
Binary file not shown.

jar/intercom-sdk-base/res/values/values.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<string name="intercomsdk_accessibility_powered_by">Powered by Intercom</string>
6161
<string name="intercomsdk_accessibility_shadow">Shadow</string>
6262
<string name="intercomsdk_accessibility_welcome">Welcome message</string>
63-
<string name="intercomsdk_activated_key_message">Youve successfully installed Intercom in your Android app. Check your email for instructions on how to create your account and finish setting up intercom.</string>
63+
<string name="intercomsdk_activated_key_message">You\'ve successfully integrated your Android app with the Intercom platform.</string>
6464
<string name="intercomsdk_close">Close</string>
6565
<string name="intercomsdk_congratulations">Congratulations</string>
6666
<string name="intercomsdk_delivered">Delivered</string>

0 commit comments

Comments
 (0)