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

Commit

Permalink
Merge branch 'release/1.0.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Wendt committed Nov 4, 2015
2 parents 19d862c + 156a398 commit f03b8f2
Show file tree
Hide file tree
Showing 17 changed files with 29 additions and 17 deletions.
4 changes: 2 additions & 2 deletions ExampleGame/Assets/HockeyAppUnityAndroid/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.hockeyapp.unity"
android:versionCode="7"
android:versionName="1.0.7" >
android:versionCode="8"
android:versionName="1.0.8" >

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Author: Christoph Wendt
*
* Version: 1.0.7
* Version: 1.0.8
*
* Copyright (c) 2013-2015 HockeyApp, Bit Stadium GmbH.
* All rights reserved.
Expand Down Expand Up @@ -47,8 +47,8 @@ public class HockeyAppAndroid : MonoBehaviour {
public string appID = "your-hockey-app-id";
public string packageID = "your-package-identifier";
public string serverURL = "your-custom-server-url";
public bool exceptionLogging = false;
public bool autoUpload = false;
public bool exceptionLogging = false;
public bool updateManager = false;

void Awake(){
Expand Down
Binary file not shown.

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

Binary file modified ExampleGame/Assets/HockeyAppUnityAndroid/hockeyappunity.jar
Binary file not shown.
11 changes: 9 additions & 2 deletions ExampleGame/Assets/HockeyAppUnityAndroid/hockeyappunity.jar.meta

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

Binary file modified ExampleGame/ProjectSettings/GraphicsSettings.asset
Binary file not shown.
Binary file modified ExampleGame/ProjectSettings/ProjectSettings.asset
Binary file not shown.
2 changes: 1 addition & 1 deletion ExampleGame/ProjectSettings/ProjectVersion.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
m_EditorVersion: 5.2.0f3
m_EditorVersion: 5.3.0b5
m_StandardAssetsVersion: 0
4 changes: 2 additions & 2 deletions HockeyAppUnity/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.hockeyapp.unity"
android:versionCode="7"
android:versionName="1.0.7" >
android:versionCode="8"
android:versionName="1.0.8" >

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* <pre>
* Copyright (c) 2011-2015 Bit Stadium GmbH
*
* Version 1.1.0
* Version 1.0.8
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
Expand Down
4 changes: 2 additions & 2 deletions Plugins/HockeyAppUnityAndroid/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.hockeyapp.unity"
android:versionCode="7"
android:versionName="1.0.7" >
android:versionCode="8"
android:versionName="1.0.8" >

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Author: Christoph Wendt
*
* Version: 1.0.7
* Version: 1.0.8
*
* Copyright (c) 2013-2015 HockeyApp, Bit Stadium GmbH.
* All rights reserved.
Expand Down Expand Up @@ -47,8 +47,8 @@ public class HockeyAppAndroid : MonoBehaviour {
public string appID = "your-hockey-app-id";
public string packageID = "your-package-identifier";
public string serverURL = "your-custom-server-url";
public bool exceptionLogging = false;
public bool autoUpload = false;
public bool exceptionLogging = false;
public bool updateManager = false;

void Awake(){
Expand Down
Binary file not shown.
Binary file modified Plugins/HockeyAppUnityAndroid/hockeyappunity.jar
Binary file not shown.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@

The HockeyAppUnity-Android plugin implements support for using HockeyApp in your Unity-Android builds. It easily lets you keep track of crashes that have been caused by your scripts or native Java code.

## Requirements (Version 1.0.7)
## Requirements (Version 1.0.8)

* 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).
* Android 2.1 or newer.

###Changelog:###

1.0.8:

- Update SDK to use HockeySDK 3.6.2 for Android
- Fix minor bug

1.0.7:

- Update SDK to use HockeySDK 3.6.1 for Android
Expand Down

0 comments on commit f03b8f2

Please sign in to comment.