Skip to content

Commit ce64d9d

Browse files
author
Anastasia Kubova
committed
Resolve feedbacks
1 parent d55914b commit ce64d9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/AppCenter/Editor/AppCenterPostBuild.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,8 +424,8 @@ private static void OnPostprocessInfo(PlistDocumentWrapper info, AppCenterSettin
424424
var schemes = new List<string>() { "appcenter-" + settings.iOSAppSecret };
425425

426426
// Create a reflection call for getting custom schemes from iOS settings.
427-
Type playerSettingsClass = typeof(PlayerSettings.iOS);
428-
MethodInfo iOSURLSchemesMethod = playerSettingsClass.GetMethod("GetURLSchemes", BindingFlags.Static | BindingFlags.NonPublic);
427+
var playerSettingsClass = typeof(PlayerSettings.iOS);
428+
var iOSURLSchemesMethod = playerSettingsClass.GetMethod("GetURLSchemes", BindingFlags.Static | BindingFlags.NonPublic);
429429

430430
// Verify that method exists and call it for getting custom schemes.
431431
if (iOSURLSchemesMethod != null)

0 commit comments

Comments
 (0)