-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
48 lines (48 loc) · 1.05 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
{
"expo": {
"name": "GenerateKey",
"slug": "GenerateKey",
"version": "1.0.0",
"privacy": "public",
"plugins": [
[
"expo-local-authentication",
{
"faceIDPermission": "Allow $(PRODUCT_NAME) to use Face ID."
}
]
],
"platforms": [
"ios",
"android"
],
"orientation": "portrait",
"userInterfaceStyle": "automatic",
"assetBundlePatterns": [
"**/*"
],
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#040F13"
},
"android": {
"userInterfaceStyle": "automatic",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#040F13"
},
"package": "com.gabriel85.GenerateKey"
},
"ios": {
"userInterfaceStyle": "automatic",
"bundleIdentifier": "com.gabriel85.GenerateKey"
},
"extra": {
"eas": {
"projectId": "4e78f2bc-f508-44ab-9fb1-af09312e04c0"
}
}
}
}