-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.ts
More file actions
60 lines (57 loc) · 1.6 KB
/
app.config.ts
File metadata and controls
60 lines (57 loc) · 1.6 KB
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
import { ExpoConfig } from '@expo/config-types';
const IS_INT_DEV = process.env.APP_VARIANT === 'internal_development';
const config: ExpoConfig = {
name: IS_INT_DEV ? 'Expo Counter' : 'Counter',
description: 'Quick and Versatile Counter',
githubUrl: 'https://github.com/hbiede/Counter',
slug: 'Counter',
entryPoint: './index.js',
privacy: 'public',
platforms: ['ios', 'android'],
version: '1.3.2',
orientation: 'default',
icon: './assets/icon.png',
splash: {
image: './assets/splash.png',
resizeMode: 'contain',
backgroundColor: '#2262B4',
},
ios: {
buildNumber: '2',
bundleIdentifier: IS_INT_DEV
? 'com.hbiede.intDev.Counter'
: 'com.hbiede.Counter',
infoPlist: {
ITSAppUsesNonExemptEncryption: false,
NSCameraUsageDescription:
'The camera is used to scan QR codes/barcodes, and to capture images for transactions.',
UIBackgroundModes: ['fetch'],
},
supportsTablet: true,
requireFullScreen: false,
userInterfaceStyle: 'automatic',
},
android: {
package: IS_INT_DEV ? 'com.hbiede.intDev.Counter' : 'com.hbiede.Counter',
softwareKeyboardLayoutMode: 'resize',
versionCode: 10302,
},
assetBundlePatterns: [
'resources/**',
'submodules/wedgekit/resources/**',
'submodules/wedgekit/**/resources/**',
],
extra: {
eas: {
projectId: '2bc8e381-5b34-4f55-ab86-4bd2de63a06e',
},
},
updates: {
url: 'https://u.expo.dev/2bc8e381-5b34-4f55-ab86-4bd2de63a06e',
},
jsEngine: IS_INT_DEV ? 'jsc' : 'hermes',
runtimeVersion: {
policy: 'sdkVersion',
},
};
export default config;