您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
19 行
725 B
19 行
725 B
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HuaweiService.location
|
|
{
|
|
public class ActivityIdentification_Data : IHmsBaseClass{
|
|
public string name => "com.huawei.hms.location.ActivityIdentification";
|
|
}
|
|
public class ActivityIdentification :HmsClass<ActivityIdentification_Data>
|
|
{
|
|
public ActivityIdentification (): base() { }
|
|
public static ActivityIdentificationService getService(Activity arg0) {
|
|
return CallStatic<ActivityIdentificationService>("getService", arg0);
|
|
}
|
|
public static ActivityIdentificationService getService(Context arg0) {
|
|
return CallStatic<ActivityIdentificationService>("getService", arg0);
|
|
}
|
|
}
|
|
}
|