siyao
4 年前
当前提交
b5b9601d
共有 10 个文件被更改,包括 157 次插入 和 17 次删除
-
4Assets/HuaweiHms/Android/res/xml/remote_config.xml
-
12Assets/HuaweiHms/src/hms/Wrapper/remote_config/ConfigValues.cs
-
60Assets/HuaweiHmsDemo/Scripts/test/RemoteConfigTest.cs
-
5ProjectSettings/EditorBuildSettings.asset
-
18Assets/HuaweiHms/src/hms/Wrapper/base/Boolean.cs
-
11Assets/HuaweiHms/src/hms/Wrapper/base/Boolean.cs.meta
-
22Assets/HuaweiHms/src/hms/Wrapper/base/Double.cs
-
11Assets/HuaweiHms/src/hms/Wrapper/base/Double.cs.meta
-
20Assets/HuaweiHms/src/hms/Wrapper/base/Long.cs
-
11Assets/HuaweiHms/src/hms/Wrapper/base/Long.cs.meta
|
|||
using UnityEngine; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace HuaweiHms |
|||
{ |
|||
public class Boolean_Data : IHmsBaseClass{ |
|||
public string name => "java.lang.Boolean"; |
|||
} |
|||
public class Boolean :HmsClass<Boolean_Data> |
|||
{ |
|||
public Boolean (bool arg0): base(arg0) { } |
|||
public Boolean (string arg0): base(arg0) { } |
|||
public Boolean (): base() { } |
|||
public bool booleanValue() { |
|||
return Call<bool>("booleanValue"); |
|||
} |
|||
} |
|||
} |
|
|||
fileFormatVersion: 2 |
|||
guid: 60da03e015d6549228044cdcfd0502b9 |
|||
MonoImporter: |
|||
externalObjects: {} |
|||
serializedVersion: 2 |
|||
defaultReferences: [] |
|||
executionOrder: 0 |
|||
icon: {instanceID: 0} |
|||
userData: |
|||
assetBundleName: |
|||
assetBundleVariant: |
|
|||
using UnityEngine; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace HuaweiHms |
|||
{ |
|||
public class Double_Data : IHmsBaseClass{ |
|||
public string name => "java.lang.Double"; |
|||
} |
|||
public class Double :HmsClass<Double_Data> |
|||
{ |
|||
public const int MAX_EXPONENT = 1023; |
|||
public const int MIN_EXPONENT = -1022; |
|||
public const int SIZE = 64; |
|||
public const int BYTES = 8; |
|||
public Double (double arg0): base(arg0) { } |
|||
public Double (string arg0): base(arg0) { } |
|||
public Double (): base() { } |
|||
public double doubleValue() { |
|||
return Call<double>("doubleValue"); |
|||
} |
|||
} |
|||
} |
|
|||
fileFormatVersion: 2 |
|||
guid: 3e1efe72df37644a3a717f562e25252c |
|||
MonoImporter: |
|||
externalObjects: {} |
|||
serializedVersion: 2 |
|||
defaultReferences: [] |
|||
executionOrder: 0 |
|||
icon: {instanceID: 0} |
|||
userData: |
|||
assetBundleName: |
|||
assetBundleVariant: |
|
|||
using UnityEngine; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace HuaweiHms |
|||
{ |
|||
public class Long_Data : IHmsBaseClass{ |
|||
public string name => "java.lang.Long"; |
|||
} |
|||
public class Long :HmsClass<Long_Data> |
|||
{ |
|||
public const int SIZE = 64; |
|||
public const int BYTES = 8; |
|||
public Long (string arg0): base(arg0) { } |
|||
public Long (long arg0): base(arg0) { } |
|||
public Long (): base() { } |
|||
public long longValue() { |
|||
return Call<long>("longValue"); |
|||
} |
|||
} |
|||
} |
|
|||
fileFormatVersion: 2 |
|||
guid: 315cff457cf1b42928803b09ea44e7fc |
|||
MonoImporter: |
|||
externalObjects: {} |
|||
serializedVersion: 2 |
|||
defaultReferences: [] |
|||
executionOrder: 0 |
|||
icon: {instanceID: 0} |
|||
userData: |
|||
assetBundleName: |
|||
assetBundleVariant: |
撰写
预览
正在加载...
取消
保存
Reference in new issue