Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.

Commit eabf07d

Browse files
author
Anna Kocheshkova
authored
Merge pull request #40 from bitstadium/develop
Develop to master
2 parents 87eb6bd + 63d127a commit eabf07d

File tree

17 files changed

+53
-17
lines changed

17 files changed

+53
-17
lines changed

Documentation/Changelog.md

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

3+
### Version 5.2.0
4+
5+
This release wraps HockeySDK-Android 5.2.0.
6+
7+
* **[Improvement]** Replaced obsolete `WWW` request calls with the new `UnityWebRequest` version.
8+
9+
#### Changelog for HockeySDK-Android 5.2.0
10+
11+
* **[Bugfix]** Leaking HTTP connection.
12+
* **[Bugfix]** Fix HTTPS connection creation.
13+
* **[Security]** To enforce TLS 1.2 on all HTTPS connections the SDK makes, we are dropping support for API level 15 (which supports only TLS 1.0), the minimum SDK version thus becomes 16. Previous versions of the SDK were already using TLS 1.2 on API level 16+.
14+
315
### Version 5.1.1
416

517
This release wraps HockeySDK-Android 5.1.0.

ExampleGame/Assets/HockeyAppUnityAndroid/AndroidManifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="net.hockeyapp.unity"
4-
android:versionCode="19"
5-
android:versionName="5.1.1" >
4+
android:versionCode="20"
5+
android:versionName="5.2.0" >
66

77
<uses-sdk
8-
android:minSdkVersion="15"
8+
android:minSdkVersion="16"
99
android:targetSdkVersion="27" />
1010

1111
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

ExampleGame/Assets/HockeyAppUnityAndroid/HockeyAppUnity-Scripts/HockeyAppAndroid.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Version: 5.1.1
2+
* Version: 5.2.0
33
*/
44

55
using UnityEngine;
Binary file not shown.
Binary file not shown.
Binary file not shown.

HockeyAppUnityPlugin/hockeysdk-unity/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ android {
44
compileSdkVersion 27
55

66
defaultConfig {
7-
minSdkVersion 15
7+
minSdkVersion 16
88
targetSdkVersion 27
99
}
1010

@@ -24,5 +24,5 @@ repositories {
2424
}
2525

2626
dependencies {
27-
compile(name:'HockeySDK-5.1.0', ext:'aar')
27+
compile(name:'HockeySDK-5.2.0', ext:'aar')
2828
}
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)