File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
source/AndroidResolver/src Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -444,7 +444,7 @@ private static BuildTargetGroup ConvertBuildTargetToBuildTargetGroup(BuildTarget
444444 /// <returns>Application identifier if it can be retrieved, null otherwise.</returns>
445445 private static string GetUnity56AndAboveApplicationIdentifier ( BuildTarget buildTarget ) {
446446 var getApplicationIdentifierMethod =
447- typeof ( UnityEditor . PlayerSettings ) . GetMethod ( "GetApplicationIdentifier" ) ;
447+ typeof ( UnityEditor . PlayerSettings ) . GetMethod ( "GetApplicationIdentifier" , new [ ] { typeof ( BuildTargetGroup ) } ) ;
448448 if ( getApplicationIdentifierMethod == null ) return null ;
449449 var buildTargetGroup = ConvertBuildTargetToBuildTargetGroup ( buildTarget ) ;
450450 if ( buildTargetGroup == BuildTargetGroup . Unknown ) return null ;
You can’t perform that action at this time.
0 commit comments