From 3bd2b6632f68be8859f219a091f28e469f5e026a Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Thu, 21 Sep 2023 20:17:30 +0800 Subject: [PATCH] =?UTF-8?q?feat(Emobile7):=20=E6=9B=B4=E6=96=B0=E5=BC=B9?= =?UTF-8?q?=E7=AA=97=20(#210)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(EMobile7) * feat(EMobile7) * 增加 id --- src/apps/com.weaver.emobile7.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/apps/com.weaver.emobile7.ts diff --git a/src/apps/com.weaver.emobile7.ts b/src/apps/com.weaver.emobile7.ts new file mode 100644 index 00000000..4f9b50b9 --- /dev/null +++ b/src/apps/com.weaver.emobile7.ts @@ -0,0 +1,20 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.weaver.emobile7', + name: 'EMobile7', + groups: [ + { + key: 1, + name: '更新弹窗', + activityIds: 'weaver.fw.com.MainActivity', + rules: [ + { + matches: + '@[id="com.weaver.emobile7:id/sdl__negative_button"][text="取消"] +(2) [id="com.weaver.emobile7:id/sdl__positive_button"][text="更新"]', + snapshotUrls: ['https://gkd-kit.gitee.io/import/12673154'], + }, + ], + }, + ], +});