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.0-beta.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
chrwend committed Apr 26, 2016
2 parents 8f50969 + 7f12c92 commit 46fe2ca
Show file tree
Hide file tree
Showing 64 changed files with 840 additions and 373 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ proguard/
*.ipr
*.iws
.idea/
gen-external-apklibs/
out/
target/
.gradle/
build/
/*/build/
*.log
infer-out

# =============== #
# Unity generated #
Expand Down
Binary file modified Documentation/01_add_plugin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Documentation/02_modify_manifest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Documentation/03_add_component.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Documentation/04_config_script.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Documentation/05_config_build_settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Documentation/06_trouble_manifest_merge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documentation/07_portal_metrics.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions Documentation/Changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
###Changelog:###

### 1.1.0-beta.1:

* [NEW] User Metrics (user and session tracking)
* [NEW] Authentication
* [UPDATE] Plugin now uses HockeySDK Android 4.0.0-beta.1
* [UPDATE] Minor bugfixes

### 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
- Fix minor bug

### 1.0.6:

- Append SDK and App information to crash reports
* SDK name
* SDK version
* App version name
9 changes: 5 additions & 4 deletions ExampleGame/Assets/HockeyAppUnityAndroid/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.hockeyapp.unity"
android:versionCode="8"
android:versionName="1.0.8" >
android:versionCode="9"
android:versionName="1.1.0-beta.1" >

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
android:minSdkVersion="9"
android:targetSdkVersion="23" />

<application
android:allowBackup="true"
Expand All @@ -19,6 +19,7 @@

<activity android:name="net.hockeyapp.android.UpdateActivity" />
<activity android:name="net.hockeyapp.android.FeedbackActivity" />
<activity android:name="net.hockeyapp.android.PaintActivity" />
</application>

</manifest>
Loading

0 comments on commit 46fe2ca

Please sign in to comment.