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

Commit

Permalink
Update Unity Plugin to 1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Scholtysik (Reimold) committed Jun 21, 2017
1 parent 953329b commit f209166
Show file tree
Hide file tree
Showing 14 changed files with 54 additions and 34 deletions.
4 changes: 4 additions & 0 deletions Documentation/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
###Changelog:###

### 1.1.5

* [FIX] Fixes session tracking by explicitly starting one.

### 1.1.4
Upgrade to HockeySDK for Android 4.1.4

Expand Down
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="14"
android:versionName="1.1.4" >
android:versionCode="15"
android:versionName="1.1.5" >

<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="25" />
android:targetSdkVersion="26" />

<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: 1.1.4
* Version: 1.1.5
*/

using UnityEngine;
Expand Down

This file was deleted.

Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions ExampleGame/ProjectSettings/ProjectVersion.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
m_EditorVersion: 5.0.0f4
m_StandardAssetsVersion: 0
m_EditorVersion: 5.6.1f1
2 changes: 1 addition & 1 deletion HockeyAppUnityPlugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0'
classpath 'com.android.tools.build:gradle:2.3.3'
}
}

Expand Down
4 changes: 2 additions & 2 deletions HockeyAppUnityPlugin/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Dec 28 10:00:20 PST 2015
#Mon Jun 19 18:17:12 PDT 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4-all.zip
6 changes: 3 additions & 3 deletions HockeyAppUnityPlugin/hockeysdk-unity/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 25
buildToolsVersion "23.0.3"
compileSdkVersion 26
buildToolsVersion "26.0.0"

defaultConfig {
minSdkVersion 9
targetSdkVersion 25
targetSdkVersion 26
}

buildTypes {
Expand Down
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="14"
android:versionName="1.1.4" >
android:versionCode="15"
android:versionName="1.1.5" >

<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="25" />
android:targetSdkVersion="26" />

<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: 1.1.4
* Version: 1.1.5
*/

using UnityEngine;
Expand Down
Binary file not shown.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Version 1.1.4
## Version 1.1.5

## Introduction

Expand Down Expand Up @@ -28,7 +28,7 @@ This document contains the following sections:
6. [Contributor License](#6)
7. [Licenses](#7)

## <a name="1"></a>Requirements (Version 1.1.4)
## <a name="1"></a>Requirements (Version 1.1.5)

* [Changelog](Documentation/Changelog.md)
* 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).
Expand Down

0 comments on commit f209166

Please sign in to comment.