From 032a22c21bc9b2adb6b9ff3201433522a335df57 Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期二, 16 五月 2023 16:08:50 +0800 Subject: [PATCH] 安卓短信自动填充,首页插座改成总控 --- HDL-ON_iOS/AppDelegate.cs | 45 ++++++++++++++++++++++++++++++++------------- 1 files changed, 32 insertions(+), 13 deletions(-) diff --git a/HDL-ON_iOS/AppDelegate.cs b/HDL-ON_iOS/AppDelegate.cs index d735acc..f57bb02 100644 --- a/HDL-ON_iOS/AppDelegate.cs +++ b/HDL-ON_iOS/AppDelegate.cs @@ -4,9 +4,6 @@ using Shared; using UIKit; using UserNotifications; -using Microsoft.AppCenter; -using Microsoft.AppCenter.Analytics; -using Microsoft.AppCenter.Crashes; using HDL_ON.UI; using HDL_ON.DAL.Server; using Intents; @@ -262,7 +259,7 @@ { Language.CurrentLanguage = "russian"; } - else if (NSLocale.PreferredLanguages[0].Contains( "bul")) + else if (NSLocale.PreferredLanguages[0].Contains("bul")) { Language.CurrentLanguage = "斜褗谢谐邪褉褋泻懈"; } @@ -290,7 +287,7 @@ Console.WriteLine("111111111111"); SetCurrentLanguage(); //Shared.Application.FontSize = 12; - //Bugly.Bugly.StartWithAppId("b58fb35436"); + Bugly.Bugly.StartWithAppId("1dc40c170a"); //鍙栨秷EditText榛樿瀵嗙爜杈撳叆鏂瑰紡 //Shared.Application.IsEditTextContentTypePassword = false; //榛樿浣跨敤鑻规柟瀛椾綋 @@ -303,8 +300,6 @@ rootViewController = new UINavigationController(new ViewController()) { NavigationBarHidden = true }; Window.RootViewController = rootViewController; Window.MakeKeyAndVisible(); - - AppCenter.Start("e1add75a-82c6-4a5c-a902-4705b195748e", typeof(Analytics), typeof(Crashes)); SharedMethod.SharedMethod.sharedApp = application; //NSString* nsCount = [[NSLocale currentLocale] objectForKey: NSLocaleCountryCode]; @@ -327,10 +322,11 @@ return true; } - /// <summary> - /// 澶勭悊閫氱煡娑堟伅 - /// </summary> - void HandleNotificationMessageUserInfo(NSDictionary userInfo, bool bFinishedLaunching) + + /// <summary> + /// 澶勭悊閫氱煡娑堟伅 + /// </summary> + void HandleNotificationMessageUserInfo(NSDictionary userInfo, bool bFinishedLaunching) { try { @@ -413,13 +409,15 @@ } else { - HDLCommon.Current.AdjustPushMessage(pushMes); + //HDLCommon.Current.AdjustPushMessage(pushMes); + this.CommonAdjustPushMessage(pushMes);//2023骞�04鏈�13鏃�15:55:54 淇敼 } } } else { - HDLCommon.Current.AdjustPushMessage(pushMes); + //HDLCommon.Current.AdjustPushMessage(pushMes); + this.CommonAdjustPushMessage(pushMes); } } @@ -494,12 +492,33 @@ MainPage.IsEnterBackground = false; HDL_ON.DriverLayer.UdpSocket._BusSocket.Start(); + //閲嶈繛mqtt闃叉mqtt杩涘叆鍋囨鐘舵�� 2023-05-03 22:55:12 wxr + HDL_ON.DAL.Mqtt.MqttClient.InitState(); + + new AppUnlockPage().LoadPage(); UIApplication.SharedApplication.ApplicationIconBadgeNumber = 0; HDL_ON.DriverLayer.Control.Ins.SearchLoaclGateway(); } + public void CommonAdjustPushMessage(JPushMessageInfo pushMes) + { + new System.Threading.Thread(new System.Threading.ThreadStart(() => + { + while (MainPage.BasePageView == null) + { + System.Threading.Thread.Sleep(300); + } + Shared.Application.RunOnMainThread(() => + { + HDLCommon.Current.AdjustPushMessage(pushMes); + }); + })).Start(); + + } + + } } -- Gitblit v1.8.0