move app object
This commit is contained in:
parent
48588d6dc1
commit
76534820e9
66
dist/0.0.1_beta.json
vendored
66
dist/0.0.1_beta.json
vendored
@ -2,39 +2,6 @@
|
|||||||
"key": -1,
|
"key": -1,
|
||||||
"name": "Test Subscription",
|
"name": "Test Subscription",
|
||||||
"version": "0.0.1_beta",
|
"version": "0.0.1_beta",
|
||||||
"apps": {
|
|
||||||
"hhjapp": {
|
|
||||||
"hhjapp": {
|
|
||||||
"packageName": "tech.cqxqg.hhjapp",
|
|
||||||
"name": "小新记账",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"rules": [
|
|
||||||
{
|
|
||||||
"key": 0,
|
|
||||||
"selector": "[text='记账']",
|
|
||||||
"action": "click"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": 1,
|
|
||||||
"selector": "[desc='备注'] + Button + EditText",
|
|
||||||
"action": "click",
|
|
||||||
"actionDelay": 50,
|
|
||||||
"activityId": "tech.cqxqg.hhjapp.MainActivity",
|
|
||||||
"classId": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": 2,
|
|
||||||
"selecotr": "[desc='备注'] + Button + EditText]",
|
|
||||||
"preAction": 1,
|
|
||||||
"action": "setText",
|
|
||||||
"args": "自动填充内容",
|
|
||||||
"activityId": "tech.cqxqg.hhjapp.MainActivity",
|
|
||||||
"classId": ""
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"global": {
|
"global": {
|
||||||
"name": "全局测试",
|
"name": "全局测试",
|
||||||
"rules": [
|
"rules": [
|
||||||
@ -51,5 +18,36 @@
|
|||||||
"enable": true
|
"enable": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
},
|
||||||
|
"apps": [
|
||||||
|
{
|
||||||
|
"packageName": "tech.cqxqg.hhjapp",
|
||||||
|
"name": "小新记账",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"key": 0,
|
||||||
|
"selector": "[text='记账']",
|
||||||
|
"action": "click"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": 1,
|
||||||
|
"selector": "[desc='备注'] + Button + EditText",
|
||||||
|
"action": "click",
|
||||||
|
"actionDelay": 50,
|
||||||
|
"activityId": "tech.cqxqg.hhjapp.MainActivity",
|
||||||
|
"classId": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": 2,
|
||||||
|
"selecotr": "[desc='备注'] + Button + EditText]",
|
||||||
|
"preAction": 1,
|
||||||
|
"action": "setText",
|
||||||
|
"args": "自动填充内容",
|
||||||
|
"activityId": "tech.cqxqg.hhjapp.MainActivity",
|
||||||
|
"classId": ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
@ -10,12 +10,15 @@ version = "0.0.1_beta"
|
|||||||
def get_subscription():
|
def get_subscription():
|
||||||
apps_folder = "apps"
|
apps_folder = "apps"
|
||||||
apps = get_global_vars_from_apps(apps_folder)
|
apps = get_global_vars_from_apps(apps_folder)
|
||||||
|
apps_arr = []
|
||||||
|
for app_name in apps:
|
||||||
|
apps_arr.append(apps[app_name][app_name])
|
||||||
return {
|
return {
|
||||||
"key": key,
|
"key": key,
|
||||||
"name": name,
|
"name": name,
|
||||||
"version": version,
|
"version": version,
|
||||||
"apps": apps,
|
|
||||||
"global": global_rules,
|
"global": global_rules,
|
||||||
|
"apps": apps_arr,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user