forked from taylorcox75/qRemote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
51 lines (49 loc) · 1.26 KB
/
app.config.js
File metadata and controls
51 lines (49 loc) · 1.26 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
const packageJson = require('./package.json');
module.exports = {
expo: {
name: 'qRemote',
slug: 'qremote',
version: packageJson.version, // Single source of truth: package.json
orientation: 'portrait',
icon: './assets/icon.png',
userInterfaceStyle: 'automatic',
scheme: 'qRemote',
splash: {
image: './assets/splash-icon.png',
resizeMode: 'contain',
backgroundColor: '#0A0A0A',
},
ios: {
supportsTablet: true,
bundleIdentifier: 'com.qRemote.app',
infoPlist: {
UIViewControllerBasedStatusBarAppearance: true,
ITSAppUsesNonExemptEncryption: false,
NSAppTransportSecurity: {
NSAllowsArbitraryLoads: true,
},
},
},
android: {
adaptiveIcon: {
foregroundImage: './assets/adaptive-icon.png',
backgroundColor: '#0A0A0A',
},
edgeToEdgeEnabled: true,
predictiveBackGestureEnabled: false,
package: 'com.qRemote.app',
usesCleartextTraffic: true,
},
web: {
favicon: './assets/favicon.png',
},
plugins: ['expo-router', 'expo-localization'],
extra: {
router: {},
eas: {
projectId: 'e2539074-777d-46d3-ae9e-9e584f9e9bb0',
},
},
owner: 'taylorcox75',
},
};