-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
62 lines (62 loc) · 1.62 KB
/
app.json
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
{
"expo": {
"name": "顔面神経麻痺ケア",
"slug": "facial-paralysis-care",
"owner": "shugomatsuzawa",
"version": "1.1.0",
"githubUrl": "https://github.com/shugomatsuzawa/Facial-Paralysis-Care",
"orientation": "portrait",
"userInterfaceStyle": "automatic",
"icon": "./assets/icon.png",
"locales": { "ja": "./languages/ja.json" },
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.shugomatsuzawa",
"buildNumber": "1.1.005",
"requireFullScreen": true,
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ebf2f8",
"dark": {
"backgroundColor": "#001e2c"
}
},
"infoPlist": {
"CFBundleLocalizations" : ["ja"],
"CFBundleDevelopmentRegion" : "ja",
"UIRequiredDeviceCapabilities": [
"front-facing-camera"
]
}
},
"android": {
"package": "com.shugomatsuzawa.FacialParalysisCare",
"versionCode": 6,
"permissions": [
"CAMERA"
],
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
// "monochromeImage": "./assets/adaptive-icon-monochrome.png",
"backgroundColor": "#ebf2f8"
},
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ebf2f8",
"dark": {
"backgroundColor": "#001e2c"
}
}
},
"extra": {
"eas": {
"projectId": "d1aa2769-5f92-47fb-a128-ba7cbccdf85c"
}
}
}
}