-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.config.ts
More file actions
78 lines (77 loc) · 1.82 KB
/
app.config.ts
File metadata and controls
78 lines (77 loc) · 1.82 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
// app.config.ts
import { ConfigContext, ExpoConfig } from '@expo/config';
import 'dotenv/config';
export default ({ config }: ConfigContext): ExpoConfig => ({
...config,
name: '웨더타고',
slug: 'weathertago-front',
version: '1.0.0',
orientation: 'portrait',
icon: './assets/images/logo/weathertago-app-icon.png',
scheme: 'weathertagofront',
userInterfaceStyle: 'automatic',
newArchEnabled: true,
ios: {
supportsTablet: true,
},
android: {
adaptiveIcon: {
foregroundImage: './assets/images/logo/weathertago-app-icon.png',
backgroundColor: '#ffffff',
},
edgeToEdgeEnabled: true,
package: 'com.tave.weathertago',
googleServicesFile: './google-services.json',
},
web: {
bundler: 'metro',
output: 'static',
favicon: './assets/images/logo/weathertago-app-icon.png',
},
splash: {
image: './assets/images/logo/weathertago-logo.png',
imageWidth: 200,
resizeMode: 'contain',
backgroundColor: '#ffffff',
},
plugins: [
'expo-router',
[
'expo-splash-screen',
{
image: './assets/images/logo/weathertago-logo.png',
imageWidth: 200,
resizeMode: 'contain',
backgroundColor: '#ffffff',
},
],
'expo-secure-store',
[
'expo-build-properties',
{
android: {
extraMavenRepos: ['https://devrepo.kakao.com/nexus/content/groups/public/'],
},
},
],
[
'@react-native-kakao/core',
{
nativeAppKey: '9aef26f6ceb633518048c01ef8689c10',
android: {
authCodeHandlerActivity: true,
},
},
],
],
experiments: {
typedRoutes: true,
},
extra: {
router: {},
eas: {
projectId: 'ab0def28-d2c0-4952-bbc4-da17eaece1a4',
},
EXPO_PUBLIC_API_BASE_URL: process.env.EXPO_PUBLIC_API_BASE_URL,
},
});