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

+12
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

+3-3
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

+1-1
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

+2-2
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.

Plugins/HockeyAppUnityAndroid/AndroidManifest.xml

+3-3
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" />

Plugins/HockeyAppUnityAndroid/HockeyAppUnity-Scripts/HockeyAppAndroid.cs

+30-6
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;
@@ -8,6 +8,9 @@
88
using System;
99
using System.IO;
1010
using System.Runtime.InteropServices;
11+
#if UNITY_2017_1_OR_NEWER
12+
using UnityEngine.Networking;
13+
#endif
1114

1215
public class HockeyAppAndroid : MonoBehaviour
1316
{
@@ -412,7 +415,12 @@ protected virtual IEnumerator SendLogs (List<string> logs)
412415
{
413416
var sdkName = pluginClass.CallStatic<string>("getSdkName");
414417
if (sdkName != null) {
418+
#if UNITY_2017_1_OR_NEWER
419+
url += "?sdk=" + UnityWebRequest.EscapeURL(sdkName);
420+
#else
415421
url += "?sdk=" + WWW.EscapeURL(sdkName);
422+
#endif
423+
416424
}
417425
}
418426
#endif
@@ -421,12 +429,24 @@ protected virtual IEnumerator SendLogs (List<string> logs)
421429
WWWForm postForm = CreateForm (log);
422430
string lContent = postForm.headers ["Content-Type"].ToString ();
423431
lContent = lContent.Replace ("\"", "");
424-
Dictionary<string,string> headers = new Dictionary<string,string> ();
425-
headers.Add ("Content-Type", lContent);
426-
WWW www = new WWW (url, postForm.data, headers);
432+
433+
#if UNITY_2017_1_OR_NEWER
434+
UnityWebRequest postRequest = new UnityWebRequest(url, "POST");
435+
postRequest.SetRequestHeader("Content-Type", lContent);
436+
postRequest.downloadHandler = (DownloadHandler)new DownloadHandlerBuffer();
437+
postRequest.uploadHandler = (UploadHandler)new UploadHandlerRaw(postForm.data);
438+
439+
yield return postRequest.SendWebRequest();
440+
441+
if (!postRequest.isNetworkError) {
442+
#else
443+
Dictionary<string, string> headers = new Dictionary<string, string>();
444+
headers.Add("Content-Type", lContent);
445+
WWW www = new WWW(url, postForm.data, headers);
427446
yield return www;
428447

429-
if (String.IsNullOrEmpty (www.error)) {
448+
if (String.IsNullOrEmpty(www.error)) {
449+
#endif
430450
try {
431451
File.Delete (log);
432452
} catch (Exception e) {
@@ -435,7 +455,11 @@ protected virtual IEnumerator SendLogs (List<string> logs)
435455
}
436456
} else {
437457
if (Debug.isDebugBuild)
438-
Debug.Log ("Crash sending error: " + www.error);
458+
#if UNITY_2017_1_OR_NEWER
459+
Debug.Log ("Crash sending error: " + postRequest.error);
460+
#else
461+
Debug.Log("Crash sending error: " + www.error);
462+
#endif
439463
}
440464
}
441465
}
Binary file not shown.
Binary file not shown.
-584 KB
Binary file not shown.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Version 5.1.1
1+
# Version 5.2.0
22

33
## Introduction
44

@@ -32,7 +32,7 @@ This document contains the following sections:
3232

3333
* [Changelog](Documentation/Changelog.md)
3434
* Unity 5.0 or newer (SDK versions with Unity 4 support can be found at the [Unity Asset Store](https://www.assetstore.unity3d.com/en/?gclid=CO) or by switching to the 1.0.3 tag on GitHub).
35-
* Android API level 15 or later.
35+
* Android API level 16 or later.
3636

3737
## <a name="2"></a>Installation & Setup
3838

0 commit comments

Comments
 (0)