-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmanifest.json
More file actions
126 lines (124 loc) · 2.61 KB
/
manifest.json
File metadata and controls
126 lines (124 loc) · 2.61 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"_version": "1.3.0",
"sap.app": {
"_version": "1.3.0",
"id": "sap.ui.demo.SapRestDemo",
"type": "application",
"i18n": "i18n/appTexts.properties",
"title": "{{appTitle}}",
"description": "{{appDescription}}",
"applicationVersion": {
"version": "1.0.0"
},
"ach": "CA-UI5-DOC"
},
"sap.ui": {
"_version": "1.3.0",
"technology": "UI5",
"deviceTypes": {
"desktop": true,
"tablet": true,
"phone": true
},
"supportedThemes": ["sap_hcb","sap_bluecrystal"],
"icons": {
"icon": "sap-icon://detail-view",
"phone" : "img/57_iPhone_Desktop_Launch.png",
"phone@2" : "img/114_iPhone-Retina_Web_Clip.png",
"tablet" : "img/72_iPad_Desktop_Launch.png",
"tablet@2" : "img/144_iPad_Retina_Web_Clip.png",
"favicon" : "img/favicon.ico"
}
},
"sap.ui5": {
"_version": "1.2.0",
"rootView": "sap.ui.demo.SapRestDemo.view.App",
"resources": {
"js": [
{
"uri": "localService/BaseController.js",
"uri": "localService/tools.js"
}
],
"css": [
{
"uri": "css/style.css"
}
]
},
"dependencies": {
"minUI5Version": "1.34",
"libs": {
"sap.ui.core": {
"minVersion": "1.34.0"
},
"sap.m": {
"minVersion": "1.34.0"
},
"sap.ui.layout" : {
"minVersion": "1.34.0"
}
}
},
"contentDensities": {
"compact": true,
"cozy": true
},
"models": {
"i18n": {
"type": "sap.ui.model.resource.ResourceModel",
"settings": {
"bundleName": "sap.ui.demo.SapRestDemo.i18n.appTexts"
}
}
},
"routing": {
"config": {
"routerClass": "sap.m.routing.Router",
"viewType": "XML",
"viewPath": "sap.ui.demo.SapRestDemo.view",
"controlId": "splitApp",
"controlAggregation": "pages",
"transition": "slide",
"bypassed": {
"target": ["home" , "notFound"]
},
"async": true
},
"routes": [
{
"pattern": "",
"name": "Master",
"target": "Master"
},
{
"pattern": "Detail/{id}",
"name": "Detail",
"target": ["Master" , "Detail"]
}
],
"targets": {
"Detail": {
"viewName": "Detail",
"viewLevel": 2,
"controlAggregation": "detailPages"
},
"Master": {
"viewName": "Master",
"viewLevel": 1,
"controlAggregation": "masterPages"
},
"notFound": {
"viewName": "NotFound",
"viewLevel": 2,
"controlAggregation": "detailPages"
},
"welcome": {
"viewName": "Welcome",
"viewLevel": 0,
"controlAggregation": "detailPages"
}
}
}
}
}