This repository has been archived by the owner on Feb 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
68 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 15 additions & 15 deletions
30
ExampleGame/Assets/HockeyAppUnityAndroid/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="net.hockeyapp.unity" | ||
android:versionCode="11" | ||
android:versionName="1.1.1" > | ||
|
||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
android:versionCode="12" | ||
android:versionName="1.1.2" > | ||
|
||
<uses-sdk | ||
android:minSdkVersion="9" | ||
android:targetSdkVersion="23" /> | ||
android:targetSdkVersion="24" /> | ||
|
||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
|
||
<application> | ||
|
||
<activity android:name=".UpdateActivity" /> | ||
<activity android:name=".FeedbackActivity" /> | ||
<activity android:name=".PaintActivity" /> | ||
<activity android:name=".LoginActivity" /> | ||
<activity android:name=".ExpiryInfoActivity" /> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme" > | ||
|
||
<activity android:name="net.hockeyapp.android.UpdateActivity" /> | ||
<activity android:name="net.hockeyapp.android.FeedbackActivity" /> | ||
<activity android:name="net.hockeyapp.android.PaintActivity" /> | ||
</application> | ||
|
||
</manifest> |
4 changes: 2 additions & 2 deletions
4
ExampleGame/Assets/HockeyAppUnityAndroid/AndroidManifest.xml.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions
4
...ityAndroid/hockeysdk-unity-1.1.1.aar.meta → ...yAppUnityAndroid/HockeySDK-4.1.2.aar.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file renamed
BIN
+61.3 KB
...AppUnityAndroid/hockeysdk-unity-1.1.1.aar → ...AppUnityAndroid/hockeysdk-unity-1.1.2.aar
Binary file not shown.
13 changes: 10 additions & 3 deletions
13
...yAppUnityAndroid/HockeySDK-4.0.1.aar.meta → ...ityAndroid/hockeysdk-unity-1.1.2.aar.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
m_EditorVersion: 5.3.4f1 | ||
m_EditorVersion: 5.4.1f1 | ||
m_StandardAssetsVersion: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
30 changes: 13 additions & 17 deletions
30
HockeyAppUnityPlugin/hockeysdk-unity/src/main/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="net.hockeyapp.unity" | ||
android:versionCode="10" | ||
android:versionName="1.1.0" > | ||
|
||
<manifest | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="net.hockeyapp.unity"> | ||
|
||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
|
||
<application> | ||
|
||
<uses-sdk | ||
android:minSdkVersion="9" | ||
android:targetSdkVersion="23" /> | ||
<activity android:name=".UpdateActivity" /> | ||
<activity android:name=".FeedbackActivity" /> | ||
<activity android:name=".PaintActivity" /> | ||
<activity android:name=".LoginActivity" /> | ||
<activity android:name=".ExpiryInfoActivity" /> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme" > | ||
|
||
<activity android:name="net.hockeyapp.android.UpdateActivity" /> | ||
<activity android:name="net.hockeyapp.android.FeedbackActivity" /> | ||
</application> | ||
|
||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="net.hockeyapp.unity" | ||
android:versionCode="11" | ||
android:versionName="1.1.1" > | ||
|
||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
android:versionCode="12" | ||
android:versionName="1.1.2" > | ||
|
||
<uses-sdk | ||
android:minSdkVersion="9" | ||
android:targetSdkVersion="23" /> | ||
android:targetSdkVersion="24" /> | ||
|
||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
|
||
<application> | ||
|
||
<activity android:name=".UpdateActivity" /> | ||
<activity android:name=".FeedbackActivity" /> | ||
<activity android:name=".PaintActivity" /> | ||
<activity android:name=".LoginActivity" /> | ||
<activity android:name=".ExpiryInfoActivity" /> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme" > | ||
|
||
<activity android:name="net.hockeyapp.android.UpdateActivity" /> | ||
<activity android:name="net.hockeyapp.android.FeedbackActivity" /> | ||
<activity android:name="net.hockeyapp.android.PaintActivity" /> | ||
</application> | ||
|
||
</manifest> |
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+61.3 KB
...AppUnityAndroid/hockeysdk-unity-1.1.1.aar → ...AppUnityAndroid/hockeysdk-unity-1.1.2.aar
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters