本演示项目在Unity for Android Build中启用部分华为HMS和AGC服务,对应的类和函数的名称和用法相同。
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

44 行
1.4 KiB

using UnityEngine;
using System.Collections.Generic;
namespace HuaweiHms
{
public class Bundle_Data : IHmsBaseClass{
public string name => "android.os.Bundle";
}
public class Bundle :HmsClass<Bundle_Data>
{
public Bundle (PersistableBundle arg0): base(arg0) { }
public Bundle (Bundle arg0): base(arg0) { }
public Bundle (int arg0): base(arg0) { }
public Bundle (ClassLoader arg0): base(arg0) { }
public Bundle (): base() { }
public void putByte(string arg0, byte arg1) {
Call("putByte", arg0, arg1);
}
public void putShort(string arg0, short arg1) {
Call("putShort", arg0, arg1);
}
public void putChar(string arg0, char arg1) {
Call("putChar", arg0, arg1);
}
public void putFloat(string arg0, float arg1) {
Call("putFloat", arg0, arg1);
}
public void putBoolean(string arg0, bool arg1) {
Call("putBoolean", arg0, arg1);
}
public void putInt(string arg0, int arg1) {
Call("putInt", arg0, arg1);
}
public void putLong(string arg0, long arg1) {
Call("putLong", arg0, arg1);
}
public void putDouble(string arg0, double arg1) {
Call("putDouble", arg0, arg1);
}
public void putString(string arg0, string arg1) {
Call("putString", arg0, arg1);
}
}
}