forked from Vali-98/ChatterUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.js
90 lines (89 loc) · 2.87 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
module.exports = {
expo: {
name: 'ChatterUI',
slug: 'ChatterUI',
version: '0.8.2',
orientation: 'portrait',
icon: './assets/images/icon.png',
scheme: 'chatterui',
userInterfaceStyle: 'automatic',
splash: {
image: './assets/images/splash.png',
resizeMode: 'contain',
backgroundColor: '#000000',
},
assetBundlePatterns: ['**/*'],
ios: {
supportsTablet: true,
},
android: {
adaptiveIcon: {
foregroundImage: './assets/images/adaptive-icon-foreground.png',
backgroundImage: './assets/images//adaptive-icon-background.png',
monochromeImage: './assets/images/adaptive-icon-foreground.png',
backgroundColor: '#000',
},
package: 'com.Vali98.ChatterUI',
splash: {
image: './assets/images/splash.png',
resizeMode: 'contain',
backgroundColor: '#000000',
},
userInterfaceStyle: 'dark',
permissions: [
'android.permission.FOREGROUND_SERVICE',
'android.permission.WAKE_LOCK',
'android.permission.FOREGROUND_SERVICE_DATA_SYNC',
],
},
web: {
bundler: 'metro',
output: 'static',
favicon: './assets/images/adaptive-icon.png',
},
plugins: [
[
'expo-custom-assets',
{
assetsPaths: ['./assets/models'],
assetsDirName: 'appAssets',
},
],
'expo-router',
[
'expo-image-picker',
{
photosPermission:
'The app accesses your photos to let you share them with your friends.',
},
],
[
'expo-build-properties',
{
android: {
largeHeap: true,
usesCleartextTraffic: true,
enableProguardInReleaseBuilds: true,
enableShrinkResourcesInReleaseBuilds: true,
useLegacyPackaging: true,
extraProguardRules: '-keep class com.rnllama.** { *; }',
},
},
],
'./expo-build-plugins/bgactions.plugin.js',
'./expo-build-plugins/copyjni.plugin.js',
'./expo-build-plugins/usercert.plugin.js',
],
experiments: {
typedRoutes: true,
},
extra: {
router: {
origin: false,
},
eas: {
projectId: 'd588a96a-5eb0-457a-85bc-e21acfdc60e9',
},
},
},
}