-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
83 lines (82 loc) · 2.12 KB
/
app.config.js
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
import 'dotenv/config';
export default {
expo: {
name: 'image-reminder-mobile',
slug: 'photo-reminder',
scheme: 'com.image-reminder-mobile.image-reminder-mobile',
version: '1.0.4',
orientation: 'portrait',
notification: {
icon: './assets/img/favicon.png',
color: '#ffffff',
iosDisplayInForeground: true,
androidMode: 'default',
androidCollapsedTitle: '#{unread_notifications} new notifications',
},
icon: './assets/img/favicon.png',
userInterfaceStyle: 'light',
splash: {
image: './assets/img/adaptive-icon.png',
resizeMode: 'contain',
backgroundColor: '#cfedf7',
},
ios: {
supportsTablet: true,
bundleIdentifier: 'com.image-reminder-mobile.image-reminder-mobile',
infoPlist: {
NSPhotoLibraryUsageDescription: 'This app requires access to your photo library to select and save photos.',
NSCameraUsageDescription: 'This app requires access to your camera to take photos.',
},
},
android: {
adaptiveIcon: {
foregroundImage: './assets/img/adaptive-icon.png',
backgroundColor: '#cfedf7',
},
permissions: [
'READ_EXTERNAL_STORAGE',
'WRITE_EXTERNAL_STORAGE',
'CAMERA',
'POST_NOTIFICATIONS',
'INTERNET',
'ACCESS_NETWORK_STATE',
],
googleServicesFile: './google-services.json',
package: 'com.matipendino2001.imagereminder',
versionCode: 8,
manifestPlaceholders: {
googleMobileAdsDelayAppMeasurementInit: true,
},
},
web: {
favicon: './assets/img/favicon.png',
},
plugins: [
'expo-router',
[
'react-native-google-mobile-ads',
{
androidAppId: process.env.ADMOB_ID,
iosAppId: process.env.ADMOB_ID,
},
],
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
}
}
]
],
extra: {
router: {
origin: false,
},
eas: {
projectId: process.env.EXPO_PROJECT_ID,
},
},
owner: 'matipendino2001',
},
};