fix:1、接入合作方的sdk。2、支付逻辑接入sdk中的接口
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace AD.VosacoSDK
|
||||
{
|
||||
// ISDKInitCallback.cs
|
||||
public class ISDKInitCallback : AndroidJavaProxy
|
||||
{
|
||||
public Action<bool, string> onInitResult;
|
||||
|
||||
public ISDKInitCallback() : base("com.rixengine.unity_plugin.ISDKInit") { }
|
||||
|
||||
public void initResult(bool success, string message)
|
||||
{
|
||||
onInitResult?.Invoke(success, message);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user