-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
59 lines (58 loc) · 1.63 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
require('dotenv/config');
export default {
expo: {
name: 'Pickly',
slug: 'pickly',
version: '1.1.4',
orientation: 'portrait',
icon: './assets/images/icon.png',
scheme: 'picklyapp',
userInterfaceStyle: 'automatic',
splash: {
image: './assets/images/splash.png',
resizeMode: 'contain',
backgroundColor: '#50A973',
},
updates: {
url: 'https://u.expo.dev/2ff1c8d5-ce1d-47d7-86d7-ebe5d015089a',
},
runtimeVersion: '1.1.4',
assetBundlePatterns: ['**/*'],
notification: {
icon: './assets/images/notification-icon.png',
},
ios: {
bundleIdentifier: 'com.ww8007.pickly',
buildNumber: '12',
},
android: {
package: 'com.ww8007.pickly',
adaptiveIcon: {
foregroundImage: './assets/images/adaptive-icon.png',
backgroundColor: '#ffffff',
},
},
extra: {
eas: {
projectId: '2ff1c8d5-ce1d-47d7-86d7-ebe5d015089a',
},
apiKey: process.env.API_KEY,
authDomain: process.env.AUTH_DOMAIN,
projectId: process.env.PROJECT_ID,
storageBucket: process.env.STORAGE_BUCKET,
messagingSenderId: process.env.MESSAGING_SENDER_ID,
appId: process.env.APP_ID,
measurementId: process.env.MEASUREMENT_ID,
expoClientId: process.env.EXPO_CLIENT_ID,
iosClientId: process.env.IOS_CLIENT_ID,
androidClientId: process.env.ANDROID_CLIENT_ID,
serverEndpoint: process.env.SERVER_ENDPOINT,
clientUrl: process.env.CLIENT_URL,
},
plugins: [
'@react-native-firebase/app',
'@react-native-google-signin/google-signin',
],
owner: 'ww8007',
},
};