Google.JarResolver.PlayServicesSupport.CreateInstance C# (CSharp) Méthode

CreateInstance() public static méthode

Creates an instance of PlayServicesSupport. This instance is used to add dependencies for the calling client and invoke the resolution.
public static CreateInstance ( string clientName, string sdkPath, string settingsDirectory, LogMessage logger = null ) : PlayServicesSupport
clientName string Client name. Must be a valid filename. /// This is used to uniquely identify /// the calling client so that dependencies can be associated with a specific /// client to help in resetting dependencies.
sdkPath string Sdk path for Android SDK.
settingsDirectory string The relative path to the directory /// to save the settings. For Unity projects this is "ProjectSettings"
logger LogMessage Delegate used to write messages to the log.
Résultat PlayServicesSupport
        public static PlayServicesSupport CreateInstance(
            string clientName,
            string sdkPath,
            string settingsDirectory,
            LogMessage logger = null)
        {
            return CreateInstance(clientName, sdkPath, null, settingsDirectory, logger: logger);
        }

Same methods

PlayServicesSupport::CreateInstance ( string clientName, string sdkPath, string additionalRepositories, string settingsDirectory, LogMessage logger = null ) : PlayServicesSupport