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

Commit 5149145

Browse files
author
Christoph Wendt
committed
Fix warnings
1 parent f18e484 commit 5149145

File tree

68 files changed

+2228
-7
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+2228
-7
lines changed

ExampleGame/Assets/HockeyAppUnityIOS/HockeyAppUnityWrapper.m

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@ void HockeyApp_StartHockeyManager(char *appID, char *serverURL, char *authType,
1111
autoSendEnabled:autoSendEnabled];
1212
}
1313

14-
void HockeyApp_ShowFeedbackListView(){
14+
void HockeyApp_ShowFeedbackListView() {
1515

1616
[HockeyAppUnity showFeedbackListView];
1717
}
1818

19-
char* HockeyApp_GetAppVersion(){
19+
char* HockeyApp_GetAppVersion() {
2020

21-
NSString *appVersion = [[HockeyAppUnity appVersion] UTF8String];
21+
const char* appVersion = [[HockeyAppUnity appVersion] UTF8String];
2222
char* res = (char*)malloc(strlen(appVersion) + 1);
2323
strcpy(res, appVersion);
2424

2525
return res;
2626
}
2727

28-
char* HockeyApp_GetBundleIdentifier(){
28+
char* HockeyApp_GetBundleIdentifier() {
2929

30-
NSString *bundleIdentifier = [[HockeyAppUnity bundleIdentifier] UTF8String];
30+
const char* bundleIdentifier = [[HockeyAppUnity bundleIdentifier] UTF8String];
3131
char* res = (char*)malloc(strlen(bundleIdentifier) + 1);
3232
strcpy(res, bundleIdentifier);
3333

3434
return res;
35-
}
35+
}

ExampleGame/Assets/TestScene.unity

-1.92 KB
Binary file not shown.
4 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
m_EditorVersion: 5.0.0f1
1+
m_EditorVersion: 5.0.2f1
22
m_StandardAssetsVersion: 0

Plugin/HockeyAppUnityIOS/HockeyAppUnity-Scripts/HockeyAppIOS.cs.meta

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Plugin/HockeyAppUnityIOS/HockeySDKResources.bundle/Arrow.png.meta

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Plugin/HockeyAppUnityIOS/HockeySDKResources.bundle/[email protected]

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Plugin/HockeyAppUnityIOS/HockeySDKResources.bundle/[email protected]

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Plugin/HockeyAppUnityIOS/HockeySDKResources.bundle/Blur.png.meta

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Plugin/HockeyAppUnityIOS/HockeySDKResources.bundle/[email protected]

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)