-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathmanifest.json
More file actions
89 lines (89 loc) · 1.78 KB
/
manifest.json
File metadata and controls
89 lines (89 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"_version": "1.12.0",
"sap.app": {
"id": "ui5.challenge",
"type": "application",
"applicationVersion": {
"version": "0.0.1"
},
"title": "{{appTitle}}",
"description": "{{appDescription}}"
},
"sap.ui": {
"technology": "UI5",
"icons": {
"icon": "",
"favIcon": "",
"phone": "",
"phone@2": "",
"tablet": "",
"tablet@2": ""
},
"deviceTypes": {
"desktop": true,
"tablet": true,
"phone": true
}
},
"sap.ui5": {
"dependencies": {
"minUI5Version": "1.60.0",
"libs": {
"sap.m": {},
"sap.ui.core": {}
}
},
"contentDensities": {
"compact": true,
"cozy": true
},
"routing": {
"config": {
"routerClass": "sap.m.routing.Router",
"viewType": "XML",
"async": true,
"viewPath": "ui5.challenge.view",
"controlAggregation": "pages",
"controlId": "app",
"clearControlAggregation": false
},
"routes": [
{
"name": "default",
"pattern": "",
"target": "Main"
},
{
"name": "detail",
"pattern": "RouteDetail",
"target": "detail"
}
],
"targets": {
"Main": {
"viewId": "Main",
"viewName": "Main"
},
"detail": {
"viewName": "detail",
"viewId": "Detail",
"viewLevel": 2
}
}
},
"rootView": {
"viewName": "ui5.challenge.view.App",
"type": "XML",
"async": true,
"id": "app"
},
"models": {
"i18n": {
"type": "sap.ui.model.resource.ResourceModel",
"settings": {
"bundleName": "ui5.challenge.i18n.i18n"
}
}
}
}
}