HDL-ON_Android/Properties/AndroidManifest.xml
@@ -42,9 +42,9 @@ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <!--极光推送 Required 一些系统要求的权限,如访问网络等--> <!-- Required 一些系统要求的权限,如访问网络等--> <permission android:name="Application.GetRealHeight(74).permission.JPUSH_MESSAGE" android:protectionLevel="signature" /> <permission android:name="com.santan.smartcontrol.permission.JPUSH_MESSAGE" android:protectionLevel="signature" /> <!-- Required --> <uses-permission android:name="Application.GetRealHeight(74).permission.JPUSH_MESSAGE" /> <uses-permission android:name="com.santan.smartcontrol.permission.JPUSH_MESSAGE" /> <uses-permission android:name="android.permission.RECEIVE_USER_PRESENT" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> @@ -56,7 +56,7 @@ <uses-permission android:name="android.permission.READ_LOGS" /> <!-- 极光推送结束 --> <application android:allowBackup="true" android:debuggable="false" android:icon="@drawable/Icon" android:requestLegacyExternalStorage="true" android:networkSecurityConfig="@xml/network_security_config" android:largeHeap="true" android:label="想天智控"> <provider android:name="android.support.v4.content.FileProvider" android:authorities="Application.GetRealHeight(74).fileProvider" android:grantUriPermissions="true" android:exported="false"> <provider android:name="android.support.v4.content.FileProvider" android:authorities="com.santan.smartcontrol.fileProvider" android:grantUriPermissions="true" android:exported="false"> <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" /> </provider> <!--极光推送--> @@ -72,22 +72,22 @@ </intent-filter> </service> <!-- since 3.0.9 Required SDK 核心功能--> <provider android:authorities="Application.GetRealHeight(74).DataProvider" android:name="cn.jpush.android.service.DataProvider" android:exported="true" /> <provider android:authorities="com.santan.smartcontrol.DataProvider" android:name="cn.jpush.android.service.DataProvider" android:exported="true" /> <!-- since 1.8.0 option 可选项。用于同一设备中不同应用的 JPush 服务相互拉起的功能。 --> <!-- 若不启用该功能可删除该组件,或把 enabled 设置成 false ;App 不会被其他 App 拉起,但会拉起其他的 App。 --> <service android:name="cn.jpush.android.service.DaemonService" android:enabled="false" android:exported="true"> <intent-filter> <action android:name="cn.jpush.android.intent.DaemonService" /> <category android:name="Application.GetRealHeight(74)" /> <category android:name="com.santan.smartcontrol" /> </intent-filter> </service> <!-- since 3.1.0 Required SDK 核心功能--> <provider android:authorities="Application.GetRealHeight(74).DownloadProvider" android:name="cn.jpush.android.service.DownloadProvider" android:exported="true" /> <provider android:authorities="com.santan.smartcontrol.DownloadProvider" android:name="cn.jpush.android.service.DownloadProvider" android:exported="true" /> <!-- Required SDK 核心功能--> <receiver android:name="cn.jpush.android.service.PushReceiver" android:enabled="true"> <intent-filter android:priority="1000"> <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" /> <category android:name="Application.GetRealHeight(74)" /> <category android:name="com.santan.smartcontrol" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.USER_PRESENT" /> @@ -106,7 +106,7 @@ <intent-filter> <action android:name="cn.jpush.android.ui.PushActivity" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="Application.GetRealHeight(74)" /> <category android:name="com.santan.smartcontrol" /> </intent-filter> </activity> <!-- SDK 核心功能--> @@ -114,14 +114,14 @@ <activity android:name="cn.jpush.android.ui.PopWinActivity" android:configChanges="orientation|keyboardHidden" android:exported="false" android:theme="@style/MyDialogStyle"> <intent-filter> <category android:name="android.intent.category.DEFAULT" /> <category android:name="Application.GetRealHeight(74)" /> <category android:name="com.santan.smartcontrol" /> </intent-filter> </activity> <!-- since 3.6.0 --> <activity android:name="cn.jpush.android.service.DActivity" android:enabled="true" android:exported="true" android:theme="@android:style/Theme.Translucent.NoTitleBar" android:taskAffinity="jpush.custom"> <intent-filter> <action android:name="cn.jpush.android.intent.DActivity" /> <category android:name="Application.GetRealHeight(74)" /> <category android:name="com.santan.smartcontrol" /> </intent-filter> </activity> <!-- Required SDK 核心功能--> @@ -132,7 +132,7 @@ <activity android:name="cn.jpush.android.service.JNotifyActivity" android:exported="true" android:taskAffinity="jpush.custom" android:theme="@android:style/Theme.Translucent.NoTitleBar"> <intent-filter> <action android:name="cn.jpush.android.intent.JNotifyActivity" /> <category android:name="Application.GetRealHeight(74)" /> <category android:name="com.santan.smartcontrol" /> </intent-filter> </activity> <!-- Required. For publish channel feature --> HDL-ON_Android/SplashActivity.cs
@@ -27,7 +27,7 @@ { if (!OnAppConfig.Instance.FirstRunApp) { ////打开baseActivity //打开baseActivity Intent i = new Intent(this, typeof(BaseActivity));//Intent intent=new Intent( 起始组件对象 , 目标 Service.class); StartActivityForResult(i, 1); OverridePendingTransition(0, 0); HDL-ON_iOS/APP_IOS.csproj
@@ -25,9 +25,9 @@ <MtouchArch>x86_64</MtouchArch> <MtouchLink>Full</MtouchLink> <MtouchDebug>true</MtouchDebug> <CodesignKey>iPhone Developer</CodesignKey> <CodesignKey>Apple Development: Zhongwu Zhu (BLBN6556AU)</CodesignKey> <MtouchExtraArgs>-gcc_flags="-dead_strip -ObjC"</MtouchExtraArgs> <CodesignProvision>OnPro2307291-Dev</CodesignProvision> <CodesignProvision>001_SantanOnPro_Dev_2024-04-15</CodesignProvision> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <MtouchI18n>cjk</MtouchI18n> </PropertyGroup> @@ -52,7 +52,7 @@ <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> <MtouchArch>ARM64</MtouchArch> <CodesignKey>Apple Development: xuebiao huang (4P32GXQWWK)</CodesignKey> <CodesignKey>Apple Development: Zhongwu Zhu (BLBN6556AU)</CodesignKey> <MtouchDebug>true</MtouchDebug> <MtouchI18n>cjk</MtouchI18n> <MtouchLink>None</MtouchLink> @@ -60,7 +60,7 @@ <MtouchEnableSGenConc>false</MtouchEnableSGenConc> <CodesignEntitlements>Entitlements.plist</CodesignEntitlements> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <CodesignProvision>OnPro2307291-Dev</CodesignProvision> <CodesignProvision>001_SantanOnPro_Dev_2024-04-15</CodesignProvision> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' "> <DebugType>none</DebugType> @@ -70,12 +70,12 @@ <WarningLevel>4</WarningLevel> <CodesignEntitlements>Entitlements.plist</CodesignEntitlements> <MtouchArch>ARM64</MtouchArch> <CodesignKey>Apple Distribution: HDL Automation Co., Ltd (BVTA78PRYA)</CodesignKey> <CodesignKey>Apple Distribution: Zhongwu Zhu (TD9BRHLD68)</CodesignKey> <MtouchLink>SdkOnly</MtouchLink> <MtouchExtraArgs>-gcc_flags="-dead_strip -ObjC"</MtouchExtraArgs> <MtouchI18n>cjk</MtouchI18n> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <CodesignProvision>OnPro240130-1-Hoc</CodesignProvision> <CodesignProvision>001_SantanOnPro_AdH_2024-04-15</CodesignProvision> </PropertyGroup> <ItemGroup> <Reference Include="System" /> @@ -92,37 +92,22 @@ <Reference Include="Shared.IOS.JLCountryCode"> <HintPath>..\DLL\IOS\Shared.IOS.JLCountryCode.dll</HintPath> </Reference> <Reference Include="Shared.IOS.HDLSceneSiri"> <HintPath>..\DLL\IOS\Shared.IOS.HDLSceneSiri.dll</HintPath> </Reference> <Reference Include="HDL.Shared.IOS.ScanQRCode"> <HintPath>..\DLL\IOS\HDL.Shared.IOS.ScanQRCode.dll</HintPath> </Reference> <Reference Include="Shared.IOS.HDLLinphoneSDK"> <HintPath>..\DLL\Linphone\iOS\Shared.IOS.HDLLinphoneSDK.dll</HintPath> </Reference> <Reference Include="Shared.IOS.LCVideoOnSDK"> <HintPath>..\DLL\LC\IOS\Shared.IOS.LCVideoOnSDK.dll</HintPath> </Reference> <Reference Include="Shared.IOS.HDLCNVRSDK"> <HintPath>..\DLL\IOS\Shared.IOS.HDLCNVRSDK.dll</HintPath> </Reference> <Reference Include="Shared.IOS.ESVideoOnSDK"> <HintPath>..\DLL\FL\iOS\Shared.IOS.ESVideoOnSDK.dll</HintPath> </Reference> <Reference Include="Shared.IOS.HDLFVSDK"> <HintPath>..\DLL\IOS\Shared.IOS.HDLFVSDK.dll</HintPath> </Reference> <Reference Include="EZSDK.IOS"> <HintPath>..\DLL\IOS\EZSDK.IOS.dll</HintPath> </Reference> <Reference Include="Shared.IOS"> <HintPath>..\DLL\Shared.IOS.dll</HintPath> </Reference> <Reference Include="Shared.IOS.HDLSceneSiri"> <HintPath>..\DLL\IOS\Shared.IOS.HDLSceneSiri.dll</HintPath> </Reference> </ItemGroup> <ItemGroup> <PackageReference Include="Newtonsoft.Json"> <Version>13.0.1</Version> <Version>13.0.3</Version> </PackageReference> <PackageReference Include="MQTTnet"> <Version>3.1.0</Version> @@ -440,20 +425,6 @@ <ImageAsset Include="Assets.xcassets\wifi_bg.imageset\wifi_bg.png" /> <ImageAsset Include="Assets.xcassets\device_bg.imageset\Contents.json" /> <ImageAsset Include="Assets.xcassets\device_bg.imageset\device_bg.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\12422688.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\8281792.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\26881242.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\1792828.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\11252436.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\24361125.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\640960.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\6401136.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\320480.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\640960-1.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\6401136-1.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\12422208.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\7501334.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\22081242.png" /> <ImageAsset Include="Resources\Assets.xcassets\Contents.json" /> <ImageAsset Include="Resources\Assets.xcassets\launchIcon2.imageset\Contents.json" /> <ImageAsset Include="Resources\Assets.xcassets\launchIcon2.imageset\launchIcon2.png" /> @@ -462,6 +433,13 @@ <ImageAsset Include="Resources\Assets.xcassets\launchIcon1.imageset\launchIcon1.png" /> <ImageAsset Include="Resources\Assets.xcassets\launchIcon1.imageset\Contents.json" /> <ImageAsset Include="Resources\Assets.xcassets\.DS_Store" /> <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\180x180.png" /> <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\.DS_Store" /> <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\1024-1.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\640x960.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\1125x2436.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\750x1334.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\640x1136.png" /> </ItemGroup> <ItemGroup> <Folder Include="Resources\" /> @@ -508,10 +486,6 @@ <InterfaceDefinition Include="LaunchScreen.storyboard" /> <InterfaceDefinition Include="Main.storyboard" /> <InterfaceDefinition Include="Resources\LaunchScreen.xib" /> <InterfaceDefinition Include="Resources\EZ\Base.lproj\EZVideoTalkViewcontroller.xib" /> <InterfaceDefinition Include="Resources\EZ\Base.lproj\EZSupportViewController.xib" /> <InterfaceDefinition Include="Resources\EZ\Base.lproj\EZMain.storyboard" /> <InterfaceDefinition Include="Resources\EZ\Base.lproj\AddDevice.storyboard" /> </ItemGroup> <ItemGroup> <None Include="Info.plist" /> @@ -1724,35 +1698,6 @@ <BundleResource Include="Resources\Phone\FunctionIcon\EnvirSensor\IlluminationIcon.png" /> <BundleResource Include="Resources\Phone\Collection\GatewayOnlineTipIcon.png" /> <BundleResource Include="Resources\Phone\FunctionIcon\FunctionBg\AksFunctionBg.png" /> <BundleResource Include="Resources\h5\index.html" /> <BundleResource Include="Resources\h5\static\index.63b34199.css" /> <BundleResource Include="Resources\h5\static\images\coal-save-ic.png" /> <BundleResource Include="Resources\h5\static\images\inverter-center.svg" /> <BundleResource Include="Resources\h5\static\images\equal-plant-ic.png" /> <BundleResource Include="Resources\h5\static\images\left-icon-unselect.png" /> <BundleResource Include="Resources\h5\static\images\eidt.png" /> <BundleResource Include="Resources\h5\static\images\switch-off.svg" /> <BundleResource Include="Resources\h5\static\images\circle-ic.png" /> <BundleResource Include="Resources\h5\static\images\inverter-center.png" /> <BundleResource Include="Resources\h5\static\images\pan_ic.png" /> <BundleResource Include="Resources\h5\static\images\right-icon-unselect.png" /> <BundleResource Include="Resources\h5\static\images\up-icon-unselect.png" /> <BundleResource Include="Resources\h5\static\images\switch-on.svg" /> <BundleResource Include="Resources\h5\static\images\inverter-center.webp" /> <BundleResource Include="Resources\h5\static\images\yinying.png" /> <BundleResource Include="Resources\h5\static\images\down-icon-unselect.png" /> <BundleResource Include="Resources\h5\static\images\co2-reduction-ic.png" /> <BundleResource Include="Resources\h5\static\images\left-icon.png" /> <BundleResource Include="Resources\h5\static\js\pages-index-index.a5a00a32.js" /> <BundleResource Include="Resources\h5\static\js\index.3517131b.js" /> <BundleResource Include="Resources\h5\static\js\chunk-vendors.56c88730.js" /> <BundleResource Include="Resources\h5\static\js\pages-inverter-index.e5e9499f.js" /> <BundleResource Include="Resources\h5\static\js\pages-index-index~pages-inverter-index.0253e8cd.js" /> <BundleResource Include="Resources\h5\static\img\inverter-center.18b181f4.png" /> <BundleResource Include="Resources\h5\static\img\co2-reduction-ic.9c75228c.png" /> <BundleResource Include="Resources\h5\static\img\equal-plant-ic.7ef6befa.png" /> <BundleResource Include="Resources\h5\static\img\coal-save-ic.6c5fd125.png" /> <BundleResource Include="Resources\h5\static\font\SourceHanSansCN-Normal.otf" /> <BundleResource Include="Resources\Phone\FunctionIcon\GroupControl\gp_all_off_home_click.png" /> <BundleResource Include="Resources\Phone\FunctionIcon\GroupControl\gp_all_off_home.png" /> <BundleResource Include="Resources\Phone\FunctionIcon\GroupControl\gp_all_off.png" /> @@ -1794,39 +1739,14 @@ <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\80x80.png" /> <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\120x120.png" /> <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\120x120-1.png" /> <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\180.png" /> <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\20x20.png" /> <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\40x40-1.png" /> <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\29x29.png" /> <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\58x58-1.png" /> <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\40x40-2.png" /> <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\80x80-1.png" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\.DS_Store" /> <ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\Contents.json" /> <ImageAsset Include="Assets.xcassets\AppIcon.appiconset\1024.png" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\SiriIntents\SiriIntents.csproj"> <IsAppExtension>true</IsAppExtension> <Project>{760980F5-1CD3-4F4F-9134-34D87BECD790}</Project> <Name>SiriIntents</Name> </ProjectReference> <ProjectReference Include="..\SiriIntentsUI\SiriIntentsUI.csproj"> <IsAppExtension>true</IsAppExtension> <Project>{ACC48A7F-250B-4915-A250-9BC399DBD6B3}</Project> <Name>SiriIntentsUI</Name> </ProjectReference> <ProjectReference Include="..\SiriKit\SiriKit.csproj"> <Project>{8B1652FA-5158-4D57-B90D-07BB91766625}</Project> <Name>SiriKit</Name> </ProjectReference> <ProjectReference Include="..\HdlBluWi\Blufi.csproj"> <Project>{2DDF4C3C-6998-432E-9F43-6786D82F0630}</Project> <Name>Blufi</Name> </ProjectReference> <ProjectReference Include="..\UMSdk\UMSdk.csproj"> <Project>{5CD1B2DE-1ABD-4B46-8C97-CCB6EA90346A}</Project> <Name>UMSdk</Name> </ProjectReference> </ItemGroup> <ItemGroup> HDL-ON_iOS/AppDelegate.cs
@@ -303,15 +303,6 @@ }; #endregion //设置全视通状态 //string systemVersion = UIKit.UIDevice.CurrentDevice.SystemVersion; //string errorVersion = "16.2.0"; //if (systemVersion.CompareTo(errorVersion) < 0)///全视通不兼容ios16以上的系统,不要加载这个先 //{ // Shared.IOS.HDLFVSDK.Video.FVapplication(application, new NSDictionary()); //} Console.WriteLine("111111111111"); SetCurrentLanguage(); //Shared.Application.FontSize = 12; //Bugly.Bugly.StartWithAppId("1dc40c170a"); @@ -331,24 +322,9 @@ SharedMethod.SharedMethod.sharedApp = application; //NSString* nsCount = [[NSLocale currentLocale] objectForKey: NSLocaleCountryCode]; application.StatusBarStyle = UIStatusBarStyle.DarkContent; //window.AccessibilityNavigationStyle = UIAccessibilityNavigationStyle.Automatic; // check for a notification DealWithPushMes(launchOptions); //if (UIApplication.SharedApplication.ApplicationIconBadgeNumber > 0) //{ // //RemoteInfo.Current.ReadMsgList(true); //} try { UMSdk.HDLUMSDK.InitUMSDKWithAppKey("61d56642e0f9bb492bbc3e72", "IOS"); } catch(Exception ex) { Console.WriteLine("启动友盟SDK异常:"+ex.Message); } Console.WriteLine("FinishedLaunching"); return true; } HDL-ON_iOS/Assets.xcassets/AppIcon.appiconset/1024-1.png
HDL-ON_iOS/Assets.xcassets/AppIcon.appiconset/180.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/AppIcon.appiconset/180x180.png
HDL-ON_iOS/Assets.xcassets/AppIcon.appiconset/20x20.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/AppIcon.appiconset/29x29.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/AppIcon.appiconset/40x40-1.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/AppIcon.appiconset/40x40-2.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/AppIcon.appiconset/58x58-1.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/AppIcon.appiconset/80x80-1.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -43,43 +43,37 @@ "size" : "60x60" }, { "filename" : "180.png", "filename" : "180x180.png", "idiom" : "iphone", "scale" : "3x", "size" : "60x60" }, { "filename" : "20x20.png", "idiom" : "ipad", "scale" : "1x", "size" : "20x20" }, { "filename" : "40x40-1.png", "idiom" : "ipad", "scale" : "2x", "size" : "20x20" }, { "filename" : "29x29.png", "idiom" : "ipad", "scale" : "1x", "size" : "29x29" }, { "filename" : "58x58-1.png", "idiom" : "ipad", "scale" : "2x", "size" : "29x29" }, { "filename" : "40x40-2.png", "idiom" : "ipad", "scale" : "1x", "size" : "40x40" }, { "filename" : "80x80-1.png", "idiom" : "ipad", "scale" : "2x", "size" : "40x40" @@ -110,7 +104,7 @@ "size" : "60x60" }, { "filename" : "1024.png", "filename" : "1024-1.png", "idiom" : "ios-marketing", "scale" : "1x", "size" : "1024x1024" @@ -276,6 +270,7 @@ "subtype" : "49mm" }, { "filename" : "1024.png", "idiom" : "watch-marketing", "scale" : "1x", "size" : "1024x1024" HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/11252436.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/1125x2436.png
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/12422208.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/12422688.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/1792828.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/22081242.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/24361125.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/26881242.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/320480.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/6401136-1.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/6401136.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/640960-1.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/640960.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/640x1136.png
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/640x960.png
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/7501334.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/750x1334.png
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/8281792.pngBinary files differ
HDL-ON_iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json
@@ -2,7 +2,7 @@ "images" : [ { "extent" : "full-screen", "filename" : "11252436.png", "filename" : "1125x2436.png", "idiom" : "iphone", "minimum-system-version" : "11.0", "orientation" : "portrait", @@ -11,7 +11,6 @@ }, { "extent" : "full-screen", "filename" : "24361125.png", "idiom" : "iphone", "minimum-system-version" : "11.0", "orientation" : "landscape", @@ -34,7 +33,6 @@ }, { "extent" : "full-screen", "filename" : "12422208.png", "idiom" : "iphone", "minimum-system-version" : "8.0", "orientation" : "portrait", @@ -43,7 +41,6 @@ }, { "extent" : "full-screen", "filename" : "22081242.png", "idiom" : "iphone", "minimum-system-version" : "8.0", "orientation" : "landscape", @@ -52,7 +49,7 @@ }, { "extent" : "full-screen", "filename" : "7501334.png", "filename" : "750x1334.png", "idiom" : "iphone", "minimum-system-version" : "8.0", "orientation" : "portrait", @@ -61,7 +58,7 @@ }, { "extent" : "full-screen", "filename" : "640960.png", "filename" : "640x960.png", "idiom" : "iphone", "minimum-system-version" : "7.0", "orientation" : "portrait", @@ -69,7 +66,7 @@ }, { "extent" : "full-screen", "filename" : "6401136.png", "filename" : "640x1136.png", "idiom" : "iphone", "minimum-system-version" : "7.0", "orientation" : "portrait", @@ -106,21 +103,18 @@ }, { "extent" : "full-screen", "filename" : "320480.png", "idiom" : "iphone", "orientation" : "portrait", "scale" : "1x" }, { "extent" : "full-screen", "filename" : "640960-1.png", "idiom" : "iphone", "orientation" : "portrait", "scale" : "2x" }, { "extent" : "full-screen", "filename" : "6401136-1.png", "idiom" : "iphone", "orientation" : "portrait", "scale" : "2x", HDL-ON_iOS/Entitlements.plist
@@ -12,7 +12,7 @@ <true/> <key>com.apple.security.application-groups</key> <array> <string>group.com.hdl.onpro</string> <string>group.com.santian.hdlon</string> </array> <key>com.apple.developer.networking.multicast</key> <true/> HDL-ON_iOS/Info.plist
@@ -5,13 +5,13 @@ <key>CFBundleAllowMixedLocalizations</key> <true/> <key>CFBundleDisplayName</key> <string>On Pro</string> <string>想天智控</string> <key>CFBundleIdentifier</key> <string>com.hdl.onpro</string> <string>com.santian.hdlon</string> <key>CFBundleName</key> <string>On Pro</string> <string>想天智控</string> <key>CFBundleShortVersionString</key> <string>2.4.4</string> <string>4.1.0</string> <key>CFBundleURLTypes</key> <array> <dict> @@ -36,7 +36,7 @@ </dict> </array> <key>CFBundleVersion</key> <string>2.4.4</string> <string>4.1.0</string> <key>LSApplicationQueriesSchemes</key> <array> <string>weixinULAPI</string> @@ -88,7 +88,7 @@ <key>NSPhotoLibraryUsageDescription</key> <string>App wants to access your photo library to set the background image of the room</string> <key>NSSiriUsageDescription</key> <string>On Pro data will be send to Siri.</string> <string>App data will be send to Siri.</string> <key>NSUserActivityTypes</key> <array> <string>HDLRunSceneIntent</string>