We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c4ed46 commit 5da4d94Copy full SHA for 5da4d94
source/AndroidResolver/src/UnityCompat.cs
@@ -444,7 +444,7 @@ private static BuildTargetGroup ConvertBuildTargetToBuildTargetGroup(BuildTarget
444
/// <returns>Application identifier if it can be retrieved, null otherwise.</returns>
445
private static string GetUnity56AndAboveApplicationIdentifier(BuildTarget buildTarget) {
446
var getApplicationIdentifierMethod =
447
- typeof(UnityEditor.PlayerSettings).GetMethod("GetApplicationIdentifier");
+ typeof(UnityEditor.PlayerSettings).GetMethod("GetApplicationIdentifier", new[]{typeof(BuildTargetGroup)});
448
if (getApplicationIdentifierMethod == null) return null;
449
var buildTargetGroup = ConvertBuildTargetToBuildTargetGroup(buildTarget);
450
if (buildTargetGroup == BuildTargetGroup.Unknown) return null;
0 commit comments