-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
65 lines (64 loc) · 1.65 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
import 'dotenv/config';
export default {
expo: {
name: 'chinese-newcomers',
slug: 'chinese-newcomers',
version: '1.0.0',
orientation: 'portrait',
icon: './src/assets/icon.png',
userInterfaceStyle: 'light',
splash: {
image: './src/assets/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ['**/*'],
ios: {
supportsTablet: true,
bundleIdentifier: 'org.calblueprint.cnsc',
bitcode: 'Debug',
buildNumber: '2',
},
android: {
adaptiveIcon: {
foregroundImage: './src/assets/adaptive-icon.png',
backgroundColor: '#FFFFFF',
},
package: 'org.calblueprint.cnsc',
},
web: {
favicon: './src/assets/favicon.png',
},
extra: {
firebaseApiKey: process.env.FIREBASE_API_KEY,
firebaseAuthDomain: process.env.FIREBASE_AUTH_DOMAIN,
firebaseProjectId: process.env.FIREBASE_PROJECT_ID,
firebaseStorageBucket: process.env.FIREBASE_STORAGE_BUCKET,
firebaseMessagingSenderId: process.env.FIREBASE_MESSAGING_SENDER_ID,
firebaseAppId: process.env.FIREBASE_APP_ID,
eas: {
projectId: 'cd93534f-9ad5-4519-8be6-424af925ef8a',
},
},
plugins: [
[
'expo-build-properties',
{
android: {
compileSdkVersion: 31,
targetSdkVersion: 31,
buildToolsVersion: '31.0.0',
},
ios: {
deploymentTarget: '13.0',
useFrameworks: 'static',
newArchEnabled: true,
},
},
],
],
},
};