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

Commit

Permalink
Merge pull request #34 from bitstadium/release/5.1.1
Browse files Browse the repository at this point in the history
Release 5.1.1 -> Master
  • Loading branch information
Benjamin Scholtysik (Reimold) authored Jan 23, 2018
2 parents 59c9405 + b0acc58 commit 57a113e
Show file tree
Hide file tree
Showing 19 changed files with 20 additions and 84 deletions.
6 changes: 3 additions & 3 deletions ExampleGame/Assets/HockeyAppUnityAndroid/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.hockeyapp.unity"
android:versionCode="18"
android:versionName="5.1.0" >
android:versionCode="19"
android:versionName="5.1.1" >

<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="26" />
android:targetSdkVersion="27" />

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Version: 5.1.0
* Version: 5.1.1
*/

using UnityEngine;
Expand Down Expand Up @@ -141,7 +141,7 @@ public static void TrackEvent(string eventName)
}
else
{
Debug.Log("Failed to check for update. SDK has not been initialized, yet.");
Debug.Log("Failed to track event. SDK has not been initialized, yet.");
}
#endif
}
Expand All @@ -166,7 +166,7 @@ public static void TrackEvent(string eventName, IDictionary<string, string> prop
}
else
{
Debug.Log("Failed to check for update. SDK has not been initialized, yet.");
Debug.Log("Failed to track event. SDK has not been initialized, yet.");
}
#endif
}
Expand All @@ -193,7 +193,7 @@ public static void TrackEvent(string eventName, IDictionary<string, string> prop
}
else
{
Debug.Log("Failed to check for update. SDK has not been initialized, yet.");
Debug.Log("Failed to track event. SDK has not been initialized, yet.");
}
#endif
}
Expand Down
Binary file not shown.
33 changes: 0 additions & 33 deletions ExampleGame/Assets/HockeyAppUnityAndroid/HockeySDK-5.0.4.aar.meta

This file was deleted.

Binary file not shown.
Binary file modified ExampleGame/Assets/HockeyAppUnityAndroid/README.pdf
Binary file not shown.

This file was deleted.

Binary file not shown.
2 changes: 2 additions & 0 deletions HockeyAppUnityPlugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
Expand All @@ -11,5 +12,6 @@ buildscript {
allprojects {
repositories {
jcenter()
google()
}
}
6 changes: 3 additions & 3 deletions HockeyAppUnityPlugin/hockeysdk-unity/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 26
compileSdkVersion 27

defaultConfig {
minSdkVersion 15
targetSdkVersion 26
targetSdkVersion 27
}

buildTypes {
Expand All @@ -24,5 +24,5 @@ repositories {
}

dependencies {
compile(name:'HockeySDK-5.0.4', ext:'aar')
compile(name:'HockeySDK-5.1.0', ext:'aar')
}
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions Plugins/HockeyAppUnityAndroid/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.hockeyapp.unity"
android:versionCode="18"
android:versionName="5.1.0" >
android:versionCode="19"
android:versionName="5.1.1" >

<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="26" />
android:targetSdkVersion="27" />

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Version: 5.1.0
* Version: 5.1.1
*/

using UnityEngine;
Expand Down Expand Up @@ -141,7 +141,7 @@ public static void TrackEvent(string eventName)
}
else
{
Debug.Log("Failed to check for update. SDK has not been initialized, yet.");
Debug.Log("Failed to track event. SDK has not been initialized, yet.");
}
#endif
}
Expand All @@ -166,7 +166,7 @@ public static void TrackEvent(string eventName, IDictionary<string, string> prop
}
else
{
Debug.Log("Failed to check for update. SDK has not been initialized, yet.");
Debug.Log("Failed to track event. SDK has not been initialized, yet.");
}
#endif
}
Expand All @@ -193,7 +193,7 @@ public static void TrackEvent(string eventName, IDictionary<string, string> prop
}
else
{
Debug.Log("Failed to check for update. SDK has not been initialized, yet.");
Debug.Log("Failed to track event. SDK has not been initialized, yet.");
}
#endif
}
Expand Down
Binary file removed Plugins/HockeyAppUnityAndroid/HockeySDK-5.0.4.aar
Binary file not shown.
Binary file not shown.
Binary file modified Plugins/HockeyAppUnityAndroid/README.pdf
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Version 5.1.0
# Version 5.1.1

## Introduction

Expand Down

0 comments on commit 57a113e

Please sign in to comment.