Tong
2021-09-02 e552072d347efcfaed35ebb8050beb741f77badd
解决home键、荧石sdk冲突
1个文件已添加
4个文件已修改
23 ■■■■■ 已修改文件
DLL/EZvizMonitor/ys.dll 补丁 | 查看 | 原始文档 | blame | 历史
DLL/Shared.Droid.dll 补丁 | 查看 | 原始文档 | blame | 历史
HDL-ON_Android/HDL-ON_Android.csproj 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
HDL-ON_Android/SplashActivity.cs 22 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ys/Jars/app-release.aar 补丁 | 查看 | 原始文档 | blame | 历史
DLL/EZvizMonitor/ys.dll
Binary files differ
DLL/Shared.Droid.dll
Binary files differ
HDL-ON_Android/HDL-ON_Android.csproj
@@ -189,6 +189,7 @@
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="Application.cs" />
    <Compile Include="Scan.cs" />
    <Compile Include="SplashActivity.cs" />
    <Compile Include="ZXingCustomScanView.cs" />
    <Compile Include="ZXingOverlayView.cs" />
    <Compile Include="Other\JLCountrycode.cs" />
HDL-ON_Android/SplashActivity.cs
New file
@@ -0,0 +1,22 @@
using Android.App;
using Android.Content;
using Android.OS;
using Shared;
namespace HDL_ON_Android
{
    [Activity(Label = "SplashActivity", Theme = "@style/MyTheme", MainLauncher = true)]
    public class SplashActivity : Activity
    {
        protected override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);
            Intent i = new Intent(this, typeof(BaseActivity));//Intent intent=new Intent( 起始组件对象 , 目标 Service.class);
            i.SetFlags(ActivityFlags.NewTask);
            StartActivity(i);
            Finish();
        }
    }
}
ys/Jars/app-release.aar
Binary files differ