This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
59 lines (59 loc) · 1.43 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
{
"expo": {
"name": "Student Scoop",
"slug": "student-scoop",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./src/assets/images/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./src/assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#fff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"config": {
"usesNonExemptEncryption": false
},
"bundleIdentifier": "com.thelawlessdev.studentscoop"
},
"android": {
"googleServicesFile": "./google-services.json",
"adaptiveIcon": {
"foregroundImage": "./src/assets/images/adaptive-icon.png",
"backgroundColor": "#000"
},
"package": "com.thelawlessdev.studentscoop",
"permissions": [
"android.permission.RECORD_AUDIO"
]
},
"extra": {
"eas": {
"projectId": "b6fcf173-7639-4a88-a770-1ebadda976aa"
}
},
"owner": "thelawlessdev",
"plugins": [
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos to let you share them with your friends."
}
],
[
"@react-native-google-signin/google-signin"
],
[
"./plugins/withAndroidMainActivityAttributes",
{
"android:windowSoftInputMode": "adjustPan|adjustResize"
}
]
]
}
}