This repository has been archived by the owner on Sep 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
80 lines (78 loc) · 2.29 KB
/
app.config.ts
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
import type { WithAndroidWidgetsParams } from 'react-native-android-widget'
const widgetConfig: WithAndroidWidgetsParams = {
fonts: ['./assets/material.ttf'],
widgets: [
{
name: 'Grades', // This name will be the **name** with which we will reference our widget.
label: 'Course Grades', // Label shown in the widget picker
minWidth: '320dp',
minHeight: '120dp',
previewImage: './assets/grades-widget.png'
}
]
}
export default {
expo: {
name: 'GradeHelper',
slug: 'Summit',
version: '1.3.23',
orientation: 'portrait',
icon: './assets/icon.png',
platforms: ['android', 'ios'],
splash: { image: './assets/splash.png', resizeMode: 'contain', backgroundColor: '#FEF156' },
updates: {
fallbackToCacheTimeout: 0
},
assetBundlePatterns: ['**/*'],
ios: {
userInterfaceStyle: 'automatic',
supportsTablet: true,
bundleIdentifier: 'com.vaporys.Summit'
},
android: {
userInterfaceStyle: 'automatic',
adaptiveIcon: {
foregroundImage: './assets/adaptive-icon.png',
backgroundColor: '#FEF156'
},
package: 'com.vaporys.Summit',
softwareKeyboardLayoutMode: 'pan',
versionCode: 53
},
plugins: [
[
'expo-notifications',
{
icon: './assets/notification-icon.png'
}
],
['./withAndroidSplashScreen.js'],
[
'expo-build-properties',
{
android: {
enableProguardInReleaseBuilds: true,
compileSdkVersion: 33
}
}
],
'sentry-expo',
['react-native-android-widget', widgetConfig],
'react-native-background-fetch'
],
userInterfaceStyle: 'automatic',
extra: {
LOGIN_BANNER_IOS: process.env.LOGIN_BANNER_IOS,
LOGIN_BANNER_ANDROID: process.env.LOGIN_BANNER_ANDROID,
COURSES_BANNER_IOS: process.env.COURSES_BANNER_IOS,
COURSES_BANNER_ANDROID: process.env.COURSES_BANNER_ANDROID,
DETAILS_BANNER_IOS: process.env.DETAILS_BANNER_IOS,
DETAILS_BANNER_ANDROID: process.env.DETAILS_BANNER_ANDROID,
COURSES_INTER_IOS: process.env.COURSES_INTER_IOS,
COURSES_INTER_ANDROID: process.env.COURSES_INTER_ANDROID,
eas: {
projectId: 'd59960c3-3bf2-4243-b9d3-22051792b8bc'
}
}
}
}