-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
46 lines (46 loc) · 985 Bytes
/
manifest.json
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
{
"_version": "1.8.0",
"sap.app": {
"id": "com.demo.textarea.autocomplete",
"type": "application",
"i18n": "i18n/i18n.properties",
"title": "TextArea Autocomplete",
"description": "TextArea Autocomplete",
"applicationVersion": {
"version": "1.0.0"
}
},
"sap.ui": {
"technology": "UI5",
"deviceTypes": {
"desktop": true,
"tablet": true,
"phone": true
}
},
"sap.ui5": {
"rootView": {
"viewName": "com.demo.textarea.autocomplete.view.App",
"type": "XML",
"async": true,
"id": "app"
},
"dependencies": {
"minUI5Version": "1.30",
"libs": {
"sap.m": {},
"sap.viz": {}
}
},
"models": {
"dicData": {
"type": "sap.ui.model.json.JSONModel",
"uri": "model/dic.json"
}
},
"resources": {
"js": [{ "uri": "libs/jquery.textcomplete.js" }],
"css": [{ "uri": "styles/autocomplete.css" }]
}
}
}