-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
56 lines (55 loc) · 1.24 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
import { ExpoConfig, ConfigContext } from 'expo/config';
export default ({ config }: ConfigContext): ExpoConfig => ({
...config,
name: 'Memorii Sync',
slug: 'memorii-sync',
version: '1.0.3',
orientation: 'portrait',
icon: './src/assets/icon.png',
splash: {
image: './src/assets/splash.png',
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ['**/*'],
ios: {
supportsTablet: true,
},
android: {
googleServicesFile: './google-services.json',
versionCode: 3,
package: 'com.minkstudios.memoriisync',
adaptiveIcon: {
foregroundImage: './src/assets/adaptive-icon.png',
backgroundColor: '#FFFFFF',
},
blockedPermissions: ['android.permission.RECORD_AUDIO'],
},
web: {
favicon: './src/assets/favicon.png',
},
plugins: [
'@react-native-firebase/app',
[
'expo-build-properties',
{
ios: {
useFrameworks: 'static',
deploymentTarget: '13.0',
},
android: {
compileSdkVersion: 33,
targetSdkVersion: 33,
buildToolsVersion: '33.0.0',
},
},
],
],
extra: {
eas: {
projectId: '6de1e02f-14b4-4b0c-8274-b313220edcf5',
},
},
owner: 'minkstudios',
});