-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
49 lines (49 loc) · 1.48 KB
/
app.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
47
48
49
{
"expo": {
"description": "Simple Push Notifications & Approvals",
"slug": "pushme",
"originalFullName": "@tgxn/pushme",
"version": "2.4.1",
"githubUrl": "https://github.com/pushme-tgxn/PushMeApp",
"orientation": "portrait",
"userInterfaceStyle": "automatic",
"primaryColor": "#A845FF",
"icon": "./assets/logo.png",
"notification": {
"icon": "./assets/logo.png",
"color": "#A845FF",
"iosDisplayInForeground": true
},
"scheme": "net.tgxn.pushme",
"assetBundlePatterns": ["**/*"],
"ios": {
"icon": "./assets/logo.png",
"supportsTablet": true
},
"android": {
"icon": "./assets/logo.png",
"versionCode": 241,
"permissions": [],
"useNextNotificationsApi": true,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundImage": "./assets/adaptive-icon-bg.png"
}
},
"web": {
"favicon": "./assets/logo.png"
},
"plugins": [
"@react-native-google-signin/google-signin",
"./plugins/fix-night-mode",
[
"expo-build-properties",
{
"android": {
"enableProguardInReleaseBuilds": true
}
}
]
]
}
}