From c53a46858f11e00490eb1b734402649536f0b7e2 Mon Sep 17 00:00:00 2001
From: wxr <wxr@hdlchina.com.cn>
Date: 星期二, 11 六月 2024 14:19:13 +0800
Subject: [PATCH] 修复门锁呼叫问题
---
HDL-ON_Android/Other/JPush/JPushOpenClickActivity.cs | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/HDL-ON_Android/Other/JPush/JPushOpenClickActivity.cs b/HDL-ON_Android/Other/JPush/JPushOpenClickActivity.cs
index b974874..0b7a9f6 100644
--- a/HDL-ON_Android/Other/JPush/JPushOpenClickActivity.cs
+++ b/HDL-ON_Android/Other/JPush/JPushOpenClickActivity.cs
@@ -9,12 +9,12 @@
namespace HDL_ON_Android
{
[Activity(
- Exported = true, Enabled = true, Name = "com.hdl.onpro.JPushOpenClickActivity"
+ Exported = true, Enabled = true, Name = "com.santan.smartcontrol.JPushOpenClickActivity"
, Theme = "@android:style/Theme.Translucent.NoTitleBar")]
- [IntentFilter(new string[] { "com.hdl.onpro.JPushOpenClickActivity", Intent.ActionView },
+ [IntentFilter(new string[] { "com.santan.smartcontrol.JPushOpenClickActivity", Intent.ActionView },
Categories = new string[]
{
- "com.hdl.onpro",Intent.CategoryDefault
+ "com.santan.smartcontrol",Intent.CategoryDefault
})
]
public class JPushOpenClickActivity : Activity
@@ -30,8 +30,8 @@
protected void HandleOpenClick(Intent intent)
{
Intent broadcastIntent = new Intent();
- broadcastIntent.SetAction("com.hdl.onpro.jpush.firm.NOTIFICATION_OPENED");
- ComponentName componentName = new ComponentName(PackageName, "com.hdl.onpro.JPushFirmBroadcast");
+ broadcastIntent.SetAction("com.santan.smartcontrol.jpush.firm.NOTIFICATION_OPENED");
+ ComponentName componentName = new ComponentName(PackageName, "com.santan.smartcontrol.JPushFirmBroadcast");
if (Build.VERSION.SdkInt >= BuildVersionCodes.O)
{
--
Gitblit v1.8.0