Skip to content

Commit e1ce37d

Browse files
committed
Released 1.1.17
1 parent 62d425b commit e1ce37d

File tree

12 files changed

+18
-17
lines changed

12 files changed

+18
-17
lines changed

CHANGELOG.md

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

3+
## Version 1.1.17
4+
5+
01-04-2016
6+
7+
* Update to fix remaining issues with registration [issue#181](https://github.com/intercom/intercom-android/issues/181)
8+
* Made some permissions we use in the GCM module optional ("android.permission.READ_PHONE_STATE" and "android.permission.ACCESS_WIFI_STATE")
9+
* Removed some unessesary noisy logging when calling reset.
10+
* Fixed a bug where the empty inbox list does not update when the user starts a new conversation for the first time.
11+
312
## Version 1.1.16
413

514
04-03-2016

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.16
1+
# Intercom for Android 1.1.17
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.
1.69 MB
Binary file not shown.
-22.2 KB
Binary file not shown.
22.1 KB
Binary file not shown.

jar/intercom-sdk-base/AndroidManifest.xml

Lines changed: 2 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="33"
5-
android:versionName="1.1.16" >
4+
android:versionCode="34"
5+
android:versionName="1.1.17" >
66

77
<uses-sdk
88
android:minSdkVersion="9"

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

Lines changed: 2 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="33"
5-
android:versionName="1.1.16" >
4+
android:versionCode="34"
5+
android:versionName="1.1.17" >
66

77
<uses-sdk
88
android:minSdkVersion="9"
103 Bytes
Binary file not shown.
-7.54 KB
Binary file not shown.

jar/intercom-sdk-gcm/AndroidManifest.xml

Lines changed: 2 additions & 6 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.gcm"
4-
android:versionCode="33"
5-
android:versionName="1.1.16" >
4+
android:versionCode="34"
5+
android:versionName="1.1.17" >
66

77
<uses-sdk
88
android:minSdkVersion="9"
@@ -13,10 +13,6 @@
1313
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
1414
<uses-permission android:name="android.permission.VIBRATE" />
1515

16-
<!-- GCM Optional PERMISSIONS -->
17-
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
18-
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
19-
2016
<application>
2117
<service
2218
android:name="io.intercom.android.sdk.gcm.GcmIntentService"

0 commit comments

Comments
 (0)