Skip to content

Commit 70a7384

Browse files
authored
chore: eas build 설정 (#4)
1 parent 3d297ac commit 70a7384

File tree

3 files changed

+38
-35
lines changed

3 files changed

+38
-35
lines changed

frontend/app.config.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
55
name: 'dailyfate',
66
slug: 'dailyfate',
77
version: '1.0.0',
8+
extra: {
9+
eas: {
10+
projectId: '7eaf22a0-8a86-4d38-96f4-5c8eb183393b',
11+
},
12+
},
813
orientation: 'portrait',
914
icon: './assets/icon.png',
1015
userInterfaceStyle: 'light',
@@ -15,17 +20,25 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
1520
},
1621
assetBundlePatterns: ['**/*'],
1722
ios: {
23+
...config.ios,
1824
supportsTablet: true,
1925
bundleIdentifier: 'com.dailyfate.frontend',
26+
infoPlist: {
27+
...config.ios?.infoPlist,
28+
ITSAppUsesNonExemptEncryption: false,
29+
},
2030
},
2131
android: {
32+
...config.android,
2233
adaptiveIcon: {
34+
...(config.android?.adaptiveIcon ?? {}),
2335
foregroundImage: './assets/adaptive-icon.png',
2436
backgroundColor: '#ffffff',
2537
},
2638
package: 'com.dailyfate.frontend',
2739
},
2840
web: {
41+
...config.web,
2942
favicon: './assets/favicon.png',
3043
},
3144
scheme: 'frontend',

frontend/app.json

Lines changed: 0 additions & 30 deletions
This file was deleted.

frontend/eas.json

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,44 @@
11
{
22
"cli": {
3-
"version": ">= 13.2.1",
4-
"appVersionSource": "remote"
3+
"version": ">= 11.0.0",
4+
"appVersionSource": "local"
55
},
66
"build": {
77
"development": {
88
"developmentClient": true,
9-
"distribution": "internal"
9+
"distribution": "internal",
10+
"android": {
11+
"buildType": "apk"
12+
},
13+
"ios": {
14+
"simulator": true
15+
}
1016
},
1117
"preview": {
1218
"distribution": "internal",
19+
"android": {
20+
"buildType": "apk"
21+
},
1322
"ios": {
1423
"simulator": true
1524
}
1625
},
1726
"production": {
18-
"autoIncrement": true
27+
"distribution": "store",
28+
"android": {
29+
"buildType": "app-bundle"
30+
},
31+
"ios": {
32+
"simulator": false
33+
}
1934
}
2035
},
2136
"submit": {
22-
"production": {}
37+
"production": {
38+
"ios": {
39+
"appleId": "[email protected]",
40+
"appleTeamId": "GQ89YG5G9R"
41+
}
42+
}
2343
}
2444
}

0 commit comments

Comments
 (0)