-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
51 lines (48 loc) · 1.2 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
import { type ExpoConfig } from 'expo/config';
import 'ts-node/register'; // Add this to import TypeScript files
const value = (prodValue: string, devValue: string) => (process.env.NODE_ENV === 'production' ? prodValue : devValue);
const config: ExpoConfig = {
name: 'fzuhelper-app',
slug: 'fzuhelper-app',
version: '7.0.0',
orientation: 'portrait',
icon: './assets/images/icon.png',
scheme: 'fzuhelper',
userInterfaceStyle: 'automatic',
splash: {
image: './assets/images/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
},
ios: {
bundleIdentifier: 'FzuHelper.FzuHelper',
buildNumber: '7.0.0',
supportsTablet: true,
},
android: {
package: value('com.helper.west2ol.fzuhelper', 'com.helper.west2ol.fzuhelper.dev'),
versionCode: 700001,
},
web: {
bundler: 'metro',
output: 'static',
favicon: './assets/images/icon.png',
},
plugins: [
'expo-router',
[
'expo-build-properties',
{
android: {
useLegacyPackaging: true,
enableProguardInReleaseBuilds: true,
},
},
],
'./inject-android-config',
],
experiments: {
typedRoutes: true,
},
};
export default config;