From 274a33d5b7e2aec1eaf3240887ba3d8596d68f56 Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Fri, 13 Oct 2023 01:14:43 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E4=B8=A4=E6=AD=A5=E8=B7=AF=E6=88=B7?= =?UTF-8?q?=E5=A4=96=E5=8A=A9=E6=89=8B):=20=E5=BC=80=E5=B1=8F=E5=B9=BF?= =?UTF-8?q?=E5=91=8A,=E6=9B=B4=E6=96=B0=E5=BC=B9=E7=AA=97=20(#969)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat 开屏广告 * feat 更新弹窗 close #956 --- src/apps/com.lolaage.tbulu.tools.ts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/apps/com.lolaage.tbulu.tools.ts diff --git a/src/apps/com.lolaage.tbulu.tools.ts b/src/apps/com.lolaage.tbulu.tools.ts new file mode 100644 index 00000000..df862813 --- /dev/null +++ b/src/apps/com.lolaage.tbulu.tools.ts @@ -0,0 +1,25 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.lolaage.tbulu.tools', + name: '两步路户外助手', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: 'com.lolaage.tbulu.tools.ui.activity.WelcomeActivity', + matchLauncher: true, + quickFind: true, + rules: '[id="com.lolaage.tbulu.tools:id/skipPart"]', + snapshotUrls: 'https://gkd-kit.songe.li/import/12882538', + }, + { + key: 1, + name: '更新弹窗', + activityIds: 'com.lolaage.tbulu.tools.upgrade', + rules: + '[id="com.lolaage.tbulu.tools:id/tvFullUpgrade"] + [id="com.lolaage.tbulu.tools:id/tvCancel"]', + snapshotUrls: 'https://gkd-kit.songe.li/import/12882550', + }, + ], +});