Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
S2-group
GitHub Repository: S2-group/android-runner
Path: blob/master/examples/perfetto/config.json
907 views
1
{
2
"type": "native",
3
"devices": {
4
"pixel3": {}
5
},
6
"repetitions": 5,
7
"duration": 6000,
8
"apps": [
9
"com.google.android.apps.messaging"
10
11
],
12
"profilers": {
13
"perfetto": {
14
"config_file" : "examples/perfetto/perfetto_config.pbtx",
15
"subject_aggregation" : "aggregate_scripts/aggregate_subject.py",
16
"config_file_format" : "text"
17
}
18
},
19
"scripts": {
20
"before_experiment": "Scripts/before_experiment.py",
21
"before_run": "Scripts/before_run.py",
22
"after_launch": "Scripts/after_launch.py",
23
"interaction": [
24
{
25
"type": "python3",
26
"path": "Scripts/interaction.py",
27
"timeout": 500,
28
"logcat_regex": "some keyword"
29
}
30
],
31
"before_close": "Scripts/before_close.py",
32
"after_run": "Scripts/after_run.py",
33
"after_experiment": "Scripts/after_experiment.py"
34
},
35
"time_between_run": 500
36
}
37
38
39