-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.config.js
47 lines (46 loc) · 1010 Bytes
/
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
import 'dotenv/config';
module.exports = {
expo: {
name: 'Shield Authenticator',
slug: 'timepass',
version: '1.12.0',
orientation: 'portrait',
icon: './assets/logo.png',
splash: {
image: './assets/splash.png',
resizeMode: 'cover',
backgroundColor: '#003554',
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ['**/*'],
android: {
adaptiveIcon: {
foregroundImage: './assets/logo.png',
backgroundColor: '#FFFFFF',
},
package: 'com.displaynone.timepass',
versionCode: 1120000,
},
scheme: 'shield-authenticator',
plugins: [
'expo-localization',
'@morrowdigital/watermelondb-expo-plugin',
'expo-document-picker',
[
'expo-build-properties',
{
android: {
kotlinVersion: '1.6.10',
},
},
],
],
extra: {
eas: {
projectId: process.env.EAS_PROJECT_ID,
},
},
},
};