-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
62 lines (62 loc) · 1.4 KB
/
app.json
File metadata and controls
62 lines (62 loc) · 1.4 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
54
55
56
57
58
59
60
61
62
{
"expo": {
"name": "Hook: Your AI Phishing Shield",
"slug": "hook",
"version": "1.0.0",
"scheme": "aiphishingshield",
"web": {
"favicon": "./assets/favicon.png"
},
"experiments": {
"tsconfigPaths": true
},
"plugins": [
"expo-router",
[
"expo-notifications",
{
"icon": "./assets/icon.png",
"color": "#ffffff"
}
],
"expo-background-task"
],
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/ai-phishing-shield-logo.png",
"resizeMode": "contain",
"backgroundColor": "#2563eb",
"dark": {
"image": "./assets/ai-phishing-shield-logo.png",
"backgroundColor": "#2563eb"
}
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"infoPlist": {
"UIBackgroundModes": [
"fetch"
]
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/ai-phishing-shield-logo.png",
"backgroundColor": "#ffffff"
},
"package": "com.basitbalogun10.hook"
},
"extra": {
"modelRegistryUrl": "https://ai-phishing-shield.onrender.com/models/catalog.json",
"router": {},
"eas": {
"projectId": "186b2aae-b7e3-45ed-bd86-b6067144b8c2"
}
}
}
}