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
444
444
/// <returns>Application identifier if it can be retrieved, null otherwise.</returns>
445
445
private static string GetUnity56AndAboveApplicationIdentifier ( BuildTarget buildTarget ) {
446
446
var getApplicationIdentifierMethod =
447
- typeof ( UnityEditor . PlayerSettings ) . GetMethod ( "GetApplicationIdentifier" ) ;
447
+ typeof ( UnityEditor . PlayerSettings ) . GetMethod ( "GetApplicationIdentifier" , new [ ] { typeof ( BuildTargetGroup ) } ) ;
448
448
if ( getApplicationIdentifierMethod == null ) return null ;
449
449
var buildTargetGroup = ConvertBuildTargetToBuildTargetGroup ( buildTarget ) ;
450
450
if ( buildTargetGroup == BuildTargetGroup . Unknown ) return null ;
You can’t perform that action at this time.
0 commit comments