From 25429f085093d89d543a0b90e30d0d62d1b7dac9 Mon Sep 17 00:00:00 2001 From: hxb <hxb@hdlchina.com.cn> Date: 星期二, 30 八月 2022 09:37:38 +0800 Subject: [PATCH] 合并了IOS的代码 --- ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/HdlResidenceLogic.cs | 24 ++++++++++++++++++++++-- 1 files changed, 22 insertions(+), 2 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/HdlResidenceLogic.cs b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/HdlResidenceLogic.cs index 459e2bd..3e4fbe8 100644 --- a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/HdlResidenceLogic.cs +++ b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/HdlResidenceLogic.cs @@ -1,8 +1,6 @@ 锘縰sing Shared.Common; using System; using System.Collections.Generic; -using System.Text; -using Shared.IOS.HDLFVSDK; namespace Shared.Phone.UserCenter { /// <summary> @@ -116,6 +114,13 @@ Shared.IOS.HDLFVSDK.Video.Logout(); //閲嶆柊鐧诲綍鍏ㄨ閫� Shared.IOS.HDLFVSDK.Video.Init("", residenceId); +#endif +#if Android + string userName = residenceId; + string uuid = "0E6AD0F4-FC17-45B4-AB63-08DAD3B09516"; + string code = "T0061"; + string httpServer = "120.25.212.198"; + Com.Evoyohome.Sphonelibs.Global.Global.Login(Application.Activity, userName, uuid, code, httpServer, null); #endif @@ -306,14 +311,29 @@ Shared.IOS.HDLFVSDK.Video.Init("", listHouse[0].Id); #endif +#if Android + string userName = listHouse[0].Id; + string uuid = "0E6AD0F4-FC17-45B4-AB63-08DAD3B09516"; + string code = "T0061"; + string httpServer = "120.25.212.198"; + Com.Evoyohome.Sphonelibs.Global.Global.Login(Application.Activity, userName, uuid, code, httpServer, null); +#endif } } else { #if iOS Console.WriteLine(Config.Instance.HomeId); //鍒濆鍖栧叏瑙嗛�� + Shared.IOS.HDLFVSDK.Video.Init("", Config.Instance.HomeId); #endif +#if Android + string userName = Config.Instance.HomeId; + string uuid = "0E6AD0F4-FC17-45B4-AB63-08DAD3B09516"; + string code = "T0061"; + string httpServer = "120.25.212.198"; + Com.Evoyohome.Sphonelibs.Global.Global.Login(Application.Activity, userName, uuid, code, httpServer, null); +#endif } Config.Instance.Save(); } -- Gitblit v1.8.0