-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
62 lines (59 loc) · 1.54 KB
/
app.config.ts
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
import { ExpoConfig } from "expo/config";
const isDev = process.env.APP_VARIANT === "development";
const config: ExpoConfig = {
name: isDev ? "쇼빌리티 Dev" : "쇼빌리티",
slug: "showbility",
owner: "showbility",
version: "1.2.0",
runtimeVersion: "1.1.0",
orientation: "portrait",
icon: "./assets/icon.png",
userInterfaceStyle: "light",
splash: {
image: "./assets/splash.png",
resizeMode: "contain",
backgroundColor: "#ffffff",
},
assetBundlePatterns: ["**/*"],
ios: {
usesAppleSignIn: true,
supportsTablet: false,
bundleIdentifier: `com.showbility.app.${isDev ? "ShowbilityDev" : "Showbility"}`,
infoPlist: {
NSPhotoLibraryUsageDescription:
"사진 업로드를 위해 사진 접근 권한이 필요합니다.",
ITSAppUsesNonExemptEncryption: false,
},
},
android: {
package: `com.showbility.app.${isDev ? "ShowbilityDev" : "Showbility"}`,
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#ffffff",
},
},
web: {
favicon: "./assets/favicon.png",
},
extra: {
eas: {
projectId: "c78be390-3769-4983-be83-9888018dbb02",
},
},
plugins: [
"expo-secure-store",
"expo-build-properties",
"expo-apple-authentication",
[
"@react-native-seoul/kakao-login",
{
kakaoAppKey: process.env.EXPO_PUBLIC_KAKAO_KEY,
kotlinVersion: "1.8.0",
},
],
],
updates: {
url: "https://u.expo.dev/c78be390-3769-4983-be83-9888018dbb02",
},
};
export default config;