-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcap-config.yml
34 lines (34 loc) · 1.02 KB
/
cap-config.yml
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
platforms:
ios:
targets:
App:
strings:
- file: App/en.lproj/InfoPlist.strings
set:
"CFBundleDisplayName": "My app name"
- file: App/de.lproj/InfoPlist.strings
set:
"CFBundleDisplayName": "Meine App"
android:
xml:
- resFile: values/strings.xml
target: /resources
merge: |
<resources>
<string name="app_name">My app</string>
<string name="title_activity_main">My app</string>
</resources>
- resFile: values-fr/strings.xml
target: /resources
merge: |
<resources>
<string name="app_name">Mon appli</string>
<string name="title_activity_main">Mon appli</string>
</resources>
- resFile: values-de/strings.xml
target: /resources
merge: |
<resources>
<string name="app_name">Meine App</string>
<string name="title_activity_main">Meine App</string>
</resources>