-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
53 lines (53 loc) · 1.54 KB
/
app.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"expo": {
"name": "Playtab",
"slug": "Playtab",
"version": "1.0.0",
"orientation": "portrait",
"scheme": "playtab",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.anonymous.Playtab",
"infoPlist": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
},
"NSLocationWhenInUseUsageDescription": "사용자의 현재 위치를 기반으로 축제 부스 위치 안내 및 스탬프 투어 기능을 제공하기 위해 위치 정보를 사용합니다."
}
},
"android": {
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false,
"permissions": [
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO",
"android.permission.NFC"
],
"package": "com.playtap.app"
},
"experiments": {
"reactCompiler": true
},
"plugins": [
"expo-secure-store",
[
"expo-camera",
{
"cameraPermission": "QR코드 스캔을 위해 카메라 접근이 필요합니다."
}
],
"react-native-nfc-manager",
"expo-localization",
["expo-location", {
"locationWhenInUsePermission": "사용자의 현재 위치를 기반으로 축제 부스 위치 안내 및 스탬프 투어 기능을 제공하기 위해 위치 정보를 사용합니다."
}]
],
"extra": {
"eas": {
"projectId": "dc778950-6ca3-4ccc-b0d1-e587cf55b319"
}
}
}
}