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.1.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
chrwend committed Mar 14, 2017
2 parents e438bcb + a5e1441 commit d522034
Show file tree
Hide file tree
Showing 24 changed files with 42 additions and 26 deletions.
7 changes: 7 additions & 0 deletions Documentation/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
###Changelog:###

### 1.1.3
* [IMPROVEMENT] Update to HockeySDK Android version 4.1.3
* [FIX] Thanks to Ivan Matkov, it's no longer possible to avoid providing login information and circumvent authentication. [#208](https://github.com/bitstadium/HockeySDK-Android/pull/208)
* [FIX] Thanks to Guillaume Perrot, the google play store detection was fixed for emulators running Android Nougat. [#209](https://github.com/bitstadium/HockeySDK-Android/pull/209)
* [IMPROVEMENT] It's now possible to scroll within the `FeedbackActivity` while the keyboard is up. Previously, when providing a lot of feedback, the keyboard could hide the submit-button. [#207](https://github.com/bitstadium/HockeySDK-Android/pull/207)
* [IMPROVEMENT] In case the app is offline, the Update feature will no longer log the IOException to avoid confusion. [#209](https://github.com/bitstadium/HockeySDK-Android/pull/209)

### 1.1.2
* [BUGFIX] Installing an app through HockeyApp would falsely report this as a store installation on Android Nougat
* [BUGFIX] Workaround an issue when installing updates and targeting SDK version 24
Expand Down
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="12"
android:versionName="1.1.2" >
android:versionCode="13"
android:versionName="1.1.3" >

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

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
Expand Down

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

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

Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using UnityEngine;
/*
* Version: 1.1.3
*/

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using System;
Expand Down

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

Binary file not shown.
Binary file not shown.

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

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/TestScene.unity
Binary file not shown.
Binary file modified ExampleGame/ProjectSettings/GraphicsSettings.asset
Binary file not shown.
Binary file modified ExampleGame/ProjectSettings/ProjectSettings.asset
Binary file not shown.
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.4.1f1
m_StandardAssetsVersion: 0
m_EditorVersion: 5.5.2f1
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 23
compileSdkVersion 25
buildToolsVersion "23.0.3"

defaultConfig {
minSdkVersion 9
targetSdkVersion 23
targetSdkVersion 25
}

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

dependencies {
compile(name:'HockeySDK-4.1.2', ext:'aar')
compile(name:'HockeySDK-4.1.3', 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="12"
android:versionName="1.1.2" >
android:versionCode="13"
android:versionName="1.1.3" >

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

<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,4 +1,8 @@
using UnityEngine;
/*
* Version: 1.1.3
*/

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using System;
Expand Down
Binary file removed Plugins/HockeyAppUnityAndroid/HockeySDK-4.1.2.aar
Binary file not shown.
Binary file added Plugins/HockeySDK-4.1.3.aar
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Version 1.1.2
## Version 1.1.3
=======

## Introduction
Expand All @@ -21,15 +21,15 @@ The following features are currently supported:

This document contains the following sections:

1. [Requirements (Version 1.1.2)](#1)
1. [Requirements (Version 1.1.3)](#1)
2. [Installation & Setup](#2)
3. [Examples](#3)
4. [Troubleshooting](#4)
5. [Code of Conduct](#5)
6. [Contributor License](#6)
7. [Licenses](#7)

## <a name="1"></a>Requirements (Version 1.1.2)
## <a name="1"></a>Requirements (Version 1.1.3)

* [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 d522034

Please sign in to comment.