forked from disc-in/UltimateApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
49 lines (48 loc) · 1.28 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
import 'dotenv/config';
export default {
name: 'Disc In',
description: 'Empowering Ultimate coaches to prepare appropriate trainings for their teams',
slug: 'ultimate-app',
privacy: 'public',
platforms: ['ios', 'android', 'web'],
version: '1.4.0',
githubUrl: 'https://github.com/disc-in/UltimateApp',
orientation: 'portrait',
scheme: 'discin',
primaryColor: '#2a9e91',
icon: './assets/icon.png',
splash: {
image: './assets/splash.png',
resizeMode: 'cover',
backgroundColor: '#ffffff',
},
assetBundlePatterns: ['assets/**/*'],
ios: {
bundleIdentifier: 'com.discin.discin',
buildNumber: '1.4.0',
supportsTablet: true,
infoPlist: {
CFBundleAllowMixedLocalizations: true,
},
associatedDomains: [`applinks:${process.env.EXPO_FIREBASE_URL_PREFIX.replace('https://', '').replace(/\/$/, '')}`],
},
android: {
package: 'com.discin.discin',
versionCode: 8,
permissions: [],
intentFilters: [
{
action: 'VIEW',
autoVerify: true,
data: [
{
scheme: 'https',
host: process.env.EXPO_FIREBASE_URL_PREFIX.replace('https://', '').replace(/\/$/, ''),
pathPrefix: '/',
},
],
category: ['BROWSABLE', 'DEFAULT'],
},
],
},
};