diff --git a/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GuildInteractiveNotificationItem.java b/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GuildInteractiveNotificationItem.java new file mode 100644 index 00000000..3480201e --- /dev/null +++ b/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GuildInteractiveNotificationItem.java @@ -0,0 +1,4 @@ +package com.tencent.qqnt.kernel.nativeinterface; + +public class GuildInteractiveNotificationItem { +} diff --git a/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GuildNotificationAbstractInfo.java b/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GuildNotificationAbstractInfo.java new file mode 100644 index 00000000..b917d0da --- /dev/null +++ b/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GuildNotificationAbstractInfo.java @@ -0,0 +1,4 @@ +package com.tencent.qqnt.kernel.nativeinterface; + +public class GuildNotificationAbstractInfo { +} diff --git a/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/IKernelMsgListener.java b/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/IKernelMsgListener.java index c9a9201c..f2a42556 100644 --- a/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/IKernelMsgListener.java +++ b/qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/IKernelMsgListener.java @@ -42,6 +42,10 @@ public interface IKernelMsgListener { void onGroupTransferInfoUpdate(GroupFileListResult groupFileListResult); + void onGuildInteractiveUpdate(GuildInteractiveNotificationItem guildInteractiveNotificationItem); + + void onGuildNotificationAbstractUpdate(GuildNotificationAbstractInfo guildNotificationAbstractInfo); + void onHitCsRelatedEmojiResult(DownloadRelateEmojiResultInfo downloadRelateEmojiResultInfo); void onHitEmojiKeywordResult(HitRelatedEmojiWordsResult hitRelatedEmojiWordsResult); diff --git a/xposed/src/main/java/moe/fuqiuluo/shamrock/remote/service/listener/AioListener.kt b/xposed/src/main/java/moe/fuqiuluo/shamrock/remote/service/listener/AioListener.kt index 01305526..11cf001d 100644 --- a/xposed/src/main/java/moe/fuqiuluo/shamrock/remote/service/listener/AioListener.kt +++ b/xposed/src/main/java/moe/fuqiuluo/shamrock/remote/service/listener/AioListener.kt @@ -358,7 +358,7 @@ internal object AioListener: IKernelMsgListener { } override fun onRichMediaUploadComplete(notifyInfo: FileTransNotifyInfo) { - //LogCenter.log("onRichMediaUploadComplete($notifyInfo)", Level.DEBUG) + LogCenter.log("onRichMediaUploadComplete($notifyInfo)", Level.DEBUG) RichMediaUploadHandler.notify(notifyInfo) } @@ -398,6 +398,14 @@ internal object AioListener: IKernelMsgListener { LogCenter.log("onGroupTransferInfoUpdate: " + groupFileListResult.toString(), Level.DEBUG) } + override fun onGuildInteractiveUpdate(guildInteractiveNotificationItem: GuildInteractiveNotificationItem?) { + + } + + override fun onGuildNotificationAbstractUpdate(guildNotificationAbstractInfo: GuildNotificationAbstractInfo?) { + + } + override fun onHitCsRelatedEmojiResult(downloadRelateEmojiResultInfo: DownloadRelateEmojiResultInfo?) { }