123456789101112131415161718192021222324 |
- namespace GFGGame
- {
- public class QDBiliBiliManager : SingletonBase<QDBiliBiliManager>
- {
- public void InitSDK()
- {
- string merchant_id = "1060";
- string app_id = "8192";
- string server_id = "7360";
- string app_key = "3a54f1fbe34940fba256954dc9d66e3e";
- string sandboxKey = "";//ios特有
- GSCSdkInterface.init(merchant_id, app_id, server_id, app_key, sandboxKey);
- //结果通过类GSCCallbackListerner中的回调触发
- }
- public void Login()
- {
- ViewManager.Show<ModalStatusView>("登录中...");
- GSCSdkInterface.login();
- //结果通过类GSCCallbackListerner中的回调触发
- }
- }
- }
|