fix:1、添加sdk。2、修复bug

This commit is contained in:
barry
2026-06-11 18:30:41 +08:00
parent fcf9128dd3
commit 570f4635f2
1240 changed files with 111200 additions and 39704 deletions
+20
View File
@@ -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);
}
}
}