-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile-config.js
More file actions
24 lines (21 loc) · 855 Bytes
/
Copy pathmobile-config.js
File metadata and controls
24 lines (21 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
App.info({
// id: "edu.northwestern.delta.ce-platform",
id: "edu.northwestern.delta.A",
name: "Cerebro"
});
App.accessRule('*');
App.accessRule('blob:*');
App.accessRule('*.google.com/*');
App.accessRule('*.googleapis.com/*');
App.accessRule('*.gstatic.com/*');
App.appendToConfig(`<platform name="ios">
<config-file platform="ios" target="*-Info.plist" parent="NSPhotoLibraryUsageDescription">
<string>Collective Experiences needs photo library access to allow you to submit photos for Experiences.</string>
</config-file>
<config-file platform="ios" target="*-Info.plist" parent="NSCameraUsageDescription">
<string>Collective Experiences needs camera access to allow you to take photos for Experiences.</string>
</config-file>
</platform>`);
App.configurePlugin('phonegap-plugin-push', {
SENDER_ID: 12341234
});