-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.js
62 lines (61 loc) · 1.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
export const name = 'nm';
export default ({config}) => ({
...config,
name: '내일모래',
slug: 'nm',
owner: 'obb8923',
// owner: 'bongjs',
version: '1.0.0',
orientation: 'portrait',
icon: './assets/images/logo/app/app_logo_yellow.png',
extra: {
storybookEnabled: process.env.STORYBOOK_ENABLED,
eas: {
projectId: '78435b24-b21d-4edc-8b96-fa1e666218e7', // obb8923
// projectId: '5fb90edd-f98c-44dd-a11e-3dd38dd2b57a', // bongjs
},
},
splash: {
image: './assets/images/logo/typo/typo_logo_white.png',
resizeMode: 'contain',
backgroundColor: '#252738',
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ['**/*'],
ios: {
supportsTablet: true,
},
android: {
adaptiveIcon: {
foregroundImage: './assets/pngs/logo/NMLOGO.png',
backgroundColor: '#252738',
},
package: 'com.nail.morae',
googleServicesFile: './google-services.json',
},
web: {
favicon: './assets/pngs/logo/NMLOGO.png',
},
newArchEnabled: true,
plugins: [
[
'@react-native-seoul/kakao-login',
{
kakaoAppKey: 'f75a34680c8df270b1e012834770bae4',
kotlinVersion: '1.9.0',
},
],
[
'expo-build-properties',
{
android: {
extraMavenRepos: [
'https://devrepo.kakao.com/nexus/content/groups/public/',
],
},
},
],
],
});