-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
107 lines (107 loc) · 2.78 KB
/
app.json
File metadata and controls
107 lines (107 loc) · 2.78 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"expo": {
"name": "모아동",
"slug": "moadong-app",
"version": "1.4.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "moadongapp",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"ios": {
"supportsTablet": false,
"googleServicesFile": "./GoogleService-Info.plist",
"bundleIdentifier": "com.moadong.moadong",
"associatedDomains": [
"applinks:www.moadong.com"
],
"entitlements": {
"aps-environment": "development"
},
"infoPlist": {
"NSUserTrackingUsageDescription": "동아리 지원 시 입력한 이름과 전화번호를 동아리 관리자에게 전달하는 용도로만 사용됩니다."
},
"appleTeamId": "2QMK9GBWN6"
},
"android": {
"versionCode": 9,
"adaptiveIcon": {
"backgroundColor": "#E6F4FE",
"foregroundImage": "./assets/images/android-icon-foreground.png",
"backgroundImage": "./assets/images/android-icon-background.png",
"monochromeImage": "./assets/images/android-icon-monochrome.png"
},
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false,
"package": "com.moadong.moadong",
"googleServicesFile": "./google-services.json",
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https",
"host": "www.moadong.com"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
],
"permissions": [
"com.google.android.gms.permission.AD_ID"
]
},
"web": {
"output": "static",
"favicon": "./assets/images/icon.png"
},
"plugins": [
"@react-native-firebase/app",
"@react-native-firebase/auth",
"@react-native-firebase/crashlytics",
"expo-router",
[
"expo-notifications",
{
"icon": "./assets/images/icon.png",
"color": "#FF5414",
"sounds": []
}
],
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static",
"buildReactNativeFromSource": true
}
}
],
[
"expo-splash-screen",
{
"image": "./assets/images/ic-splash-background.png",
"imageWidth": 1024,
"resizeMode": "cover",
"backgroundColor": "#FF4500"
}
],
"expo-tracking-transparency",
"./plugins/withFcmNotificationColorFix"
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
},
"extra": {
"router": {},
"eas": {
"projectId": "e75c3373-9a0c-41ec-b232-c0d86142bf86"
}
}
}
}