-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.js
92 lines (92 loc) · 2.18 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
export default {
name: "Sheltie",
slug: "sheltie-app",
owner: "camhammel",
version: "1.2.4",
orientation: "portrait",
icon: "./assets/appIcon.png",
primaryColor: "#3F77B9",
jsEngine: "hermes",
updates: {
fallbackToCacheTimeout: 0,
url: "https://u.expo.dev/b02e7b71-f109-4b47-8196-fd8a10d2b529"
},
assetBundlePatterns: [
"**/*"
],
ios: {
bundleIdentifier: "app.sheltie",
buildNumber: "1.2.5",
supportsTablet: false,
splash: {
image: "./assets/splash.png",
resizeMode: "cover"
},
infoPlist: {
NSLocationWhenInUseUsageDescription: "This app uses Location to determine animal shelters closest to you for results.",
NSLocationAlwaysAndWhenInUseUsageDescription: "This app uses Location to determine animal shelters closest to you for results."
},
associatedDomains: [
"applinks:*.sheltie.app",
"applinks:sheltie.app",
"applinks:https://sheltie.app",
"applinks:www.sheltie.app"
]
},
android: {
package: "app.sheltie",
versionCode: 16,
permissions: [
"ACCESS_COARSE_LOCATION"
],
splash: {
image: "./assets/splash.png",
resizeMode: "cover"
},
intentFilters: [
{
action: "VIEW",
autoVerify: true,
data: [
{
scheme: "http",
host: "sheltie.app"
},
{
scheme: "https",
host: "sheltie.app"
},
{
scheme: "https",
host: "*.sheltie.app"
}
],
category: [
"BROWSABLE",
"DEFAULT"
]
}
]
},
web: {
favicon: "./assets/appIcon.png"
},
scheme: "sheltie",
description: "Search for pets available for adoption from local shelters. This app uses the Petfinder API and does not claim ownership to the data provided by Petfinder. ",
extra: {
eas: {
projectId: "b02e7b71-f109-4b47-8196-fd8a10d2b529"
},
PETFINDER_KEY: process.env.PETFINDER_KEY,
PETFINDER_SECRET: process.env.PETFINDER_SECRET
},
runtimeVersion: "exposdk:47.0.0",
plugins: [
[
"expo-updates",
{
"username": "camhammel"
}
]
]
}