-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
45 lines (44 loc) · 1.07 KB
/
app.config.js
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
const LOCAL_IP_ADDRESS = require("ip").address().toString();
export default {
name: 'JobApplier',
slug: "mobileapp",
version: '1.0.13',
owner: "mahmoudmousahamad",
extra: {
LOCAL_IP_ADDRESS,
},
sdkVersion: "45.0.0",
icon: "./assets/icon.png",
backgroundColor: "#0C6CDC",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#0C6CDC"
},
ios: {
bundleIdentifier: "com.useapplier.jobapplier",
"supportsTablet": true
},
android: {
package: "com.jobapplier.app",
versionCode: 13,
googleServicesFile: "./google-services.json",
permissions: ["RECEIVE_BOOT_COMPLETED"],
"adaptiveIcon": {
"backgroundImage": "./assets/icon.png",
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#0C6CDC",
},
},
"plugins": [
[
"expo-notifications",
{
icon: "./assets/icon.png",
color: "#0C6CDC",
mode: "production",
sounds: [],
}
]
],
};