-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.config.js
40 lines (39 loc) · 954 Bytes
/
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
import 'dotenv/config';
export default {
expo: {
name: 'Amity Social Cloud',
slug: 'amity-social',
version: '0.1.0',
owner: 'amityexpo',
orientation: 'portrait',
icon: './src/assets/images/icon.png',
scheme: 'amity-react-native-sample-app',
userInterfaceStyle: 'automatic',
splash: {
image: './src/assets/images/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ['**/*'],
ios: {
supportsTablet: true,
},
android: {
adaptiveIcon: {
foregroundImage: './src/assets/images/adaptive-icon.png',
backgroundColor: '#ffffff',
},
package: 'co.amity.react_native_sample_app',
},
web: {
favicon: './src/assets/images/favicon.png',
},
extra: {
apiKey: process.env.API_KEY,
apiRegion: process.env.API_REGION,
},
},
};