This repository was archived by the owner on Apr 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 396
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and rename com.flutter3.ctangxin.ef0eee.ts to com.flutter3.cta…
…ngxin.vf0egg.ts
- Loading branch information
1 parent
c365ca6
commit 1e42ab6
Showing
2 changed files
with
67 additions
and
40 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import { defineAppConfig } from '../types'; | ||
|
||
export default defineAppConfig({ | ||
id: 'com.flutter3.ctangxin.vf0egg', // 注意 appId 有随机后缀, 每个版本都变,需修改为你自己的 appId | ||
name: '糖心Vlog', | ||
groups: [ | ||
{ | ||
enable: false, | ||
key: 0, | ||
name: '开屏广告', | ||
desc: '虚假按钮,实际点击无法跳过,规则暂时保留', | ||
matchTime: 10000, | ||
actionMaximum: 1, | ||
resetMatch: 'app', | ||
rules: [ | ||
{ | ||
matches: | ||
'FrameLayout > View > View > View > View > @View[clickable=true && desc.length=2] + ImageView[childCount=1]', | ||
snapshotUrls: 'https://i.gkd.li/import/12836857', | ||
}, | ||
], | ||
}, | ||
{ | ||
key: 1, | ||
name: '全屏广告-广告弹窗', // 目前已叠加了三层广告 | ||
//matchDelay: 6500, // 待无法跳过的5s开屏广告过后,能够主动执行匹配 | ||
matchTime: 10000, | ||
actionCd: 100, | ||
resetMatch: 'app', | ||
activityIds: ['com.example.flutter3_frame.MainActivity'], | ||
rules: [ | ||
{ | ||
action: 'back', | ||
matches: | ||
'FrameLayout > View > View > View[index=0] > View > ImageView[childCount=1] + View[clickable=true && desc=null]', | ||
snapshotUrls: 'https://i.gkd.li/import/12836891', | ||
}, | ||
], | ||
}, | ||
{ | ||
key: 2, | ||
name: '全屏广告-公告弹窗', | ||
matchTime: 10000, | ||
resetMatch: 'app', | ||
activityIds: ['com.example.flutter3_frame.MainActivity'], | ||
rules: [ | ||
{ | ||
action: 'back', | ||
matches: '[desc="公告"] +2 [desc="取消"][clickable=true]', | ||
snapshotUrls: 'https://i.gkd.li/import/12836854', | ||
}, | ||
], | ||
}, | ||
{ | ||
// key1、2的延迟工具,matchDelay如在key1、2,有时候开屏广告时切了后台, | ||
// 后台恢复时,界面上的弹窗就得等6.5s了 | ||
key: 3, | ||
name: '全屏广告-延迟工具(协助key1、2)', | ||
desc: '5s开屏广告后主动触发匹配', | ||
matchDelay: 6500, // 时间太小会导致低性能手机赶不上 | ||
matchTime: 10000, | ||
resetMatch: 'app', | ||
quickFind: true, | ||
rules: 'TextView[text="xxxxx"]', | ||
}, | ||
], | ||
}); |