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

Commit 57a113e

Browse files
author
Benjamin Scholtysik (Reimold)
authored
Merge pull request #34 from bitstadium/release/5.1.1
Release 5.1.1 -> Master
2 parents 59c9405 + b0acc58 commit 57a113e

File tree

19 files changed

+20
-84
lines changed

19 files changed

+20
-84
lines changed

ExampleGame/Assets/HockeyAppUnityAndroid/AndroidManifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
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="18"
5-
android:versionName="5.1.0" >
4+
android:versionCode="19"
5+
android:versionName="5.1.1" >
66

77
<uses-sdk
88
android:minSdkVersion="15"
9-
android:targetSdkVersion="26" />
9+
android:targetSdkVersion="27" />
1010

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

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Version: 5.1.0
2+
* Version: 5.1.1
33
*/
44

55
using UnityEngine;
@@ -141,7 +141,7 @@ public static void TrackEvent(string eventName)
141141
}
142142
else
143143
{
144-
Debug.Log("Failed to check for update. SDK has not been initialized, yet.");
144+
Debug.Log("Failed to track event. SDK has not been initialized, yet.");
145145
}
146146
#endif
147147
}
@@ -166,7 +166,7 @@ public static void TrackEvent(string eventName, IDictionary<string, string> prop
166166
}
167167
else
168168
{
169-
Debug.Log("Failed to check for update. SDK has not been initialized, yet.");
169+
Debug.Log("Failed to track event. SDK has not been initialized, yet.");
170170
}
171171
#endif
172172
}
@@ -193,7 +193,7 @@ public static void TrackEvent(string eventName, IDictionary<string, string> prop
193193
}
194194
else
195195
{
196-
Debug.Log("Failed to check for update. SDK has not been initialized, yet.");
196+
Debug.Log("Failed to track event. SDK has not been initialized, yet.");
197197
}
198198
#endif
199199
}
-267 KB
Binary file not shown.

ExampleGame/Assets/HockeyAppUnityAndroid/HockeySDK-5.0.4.aar.meta

Lines changed: 0 additions & 33 deletions
This file was deleted.
267 KB
Binary file not shown.
-190 Bytes
Binary file not shown.

ExampleGame/Assets/HockeyAppUnityAndroid/hockeysdk-unity-5.0.2.aar.meta

Lines changed: 0 additions & 33 deletions
This file was deleted.

Plugins/HockeyAppUnityAndroid/hockeysdk-unity-5.0.2.aar renamed to ExampleGame/Assets/HockeyAppUnityAndroid/hockeysdk-unity-5.1.0.aar

62.1 KB
Binary file not shown.

HockeyAppUnityPlugin/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
buildscript {
33
repositories {
44
jcenter()
5+
google()
56
}
67
dependencies {
78
classpath 'com.android.tools.build:gradle:3.0.1'
@@ -11,5 +12,6 @@ buildscript {
1112
allprojects {
1213
repositories {
1314
jcenter()
15+
google()
1416
}
1517
}

HockeyAppUnityPlugin/hockeysdk-unity/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 26
4+
compileSdkVersion 27
55

66
defaultConfig {
77
minSdkVersion 15
8-
targetSdkVersion 26
8+
targetSdkVersion 27
99
}
1010

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

2626
dependencies {
27-
compile(name:'HockeySDK-5.0.4', ext:'aar')
27+
compile(name:'HockeySDK-5.1.0', ext:'aar')
2828
}

0 commit comments

Comments
 (0)