-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
88 lines (88 loc) · 2.43 KB
/
app.json
File metadata and controls
88 lines (88 loc) · 2.43 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"expo": {
"name": "My taskly",
"slug": "mytaskly",
"version": "1.0.0",
"orientation": "default",
"icon": "./assets/icons/ios-light.png",
"userInterfaceStyle": "automatic",
"newArchEnabled": false,
"scheme": "mytaskly",
"ios": {
"supportsTablet": true,
"infoPlist": {
"NSMicrophoneUsageDescription": "Questa app richiede l'accesso al microfono per registrare messaggi vocali.",
"ITSAppUsesNonExemptEncryption": false
},
"bundleIdentifier": "com.Gabry848Studio.Mytaskly",
"jsEngine": "jsc",
"icon": {
"dark": "assets/icons/ios-dark.png",
"light": "assets/icons/ios-light.png",
"tinted": "assets/icons/ios-tinted.png"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/icons/adaptive-icon.png",
"monochromeImage": "./assets/icons/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.Gabry848Studio.Mytaskly",
"permissions": [
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS",
"android.permission.POST_NOTIFICATIONS",
"android.permission.RECEIVE_BOOT_COMPLETED",
"android.permission.WAKE_LOCK"
],
"googleServicesFile": "./google-services.json",
"jsEngine": "jsc"
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-asset",
[
"expo-splash-screen",
{
"backgroundColor": "#ffffff",
"image": "./assets/icons/splash-icon-dark.png",
"imageWidth": 200,
"dark": {
"backgroundColor": "#000000",
"image": "./assets/icons/splash-icon-light.png"
}
}
],
"react-native-edge-to-edge",
[
"expo-notifications",
{
"icon": "./assets/icons/adaptive-icon.png",
"color": "#ffffff",
"sounds": [],
"mode": "production"
}
],
[
"@react-native-google-signin/google-signin",
{
"iosUrlScheme": "com.googleusercontent.apps.643213673162-7lk71d5c0ov3703qo5c8mrcfsqipdjlp"
}
],
"expo-dev-client",
"expo-router",
"expo-audio",
"./plugins/force-browser-version"
],
"extra": {
"eas": {
"projectId": "6f04e3fe-7171-43c8-b80f-9e4b2c8349a4"
},
"router": {}
},
"owner": "gabry848-studio"
}
}