-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathapp.config.js
43 lines (42 loc) · 1.2 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
import 'dotenv-flow/config';
export default () => {
return {
name: "Account Recovery",
description: "This app shows how you can use contract-based account functionality from tasit to set up account recovery for the user.",
slug: "account-recovery",
version: "0.0.30",
orientation: "portrait",
privacy: "public", // ensures that this shows up at https://expo.io/@tasit/
icon: "./assets/images/TasitAccountRecovery1024.png",
scheme: "account-recovery",
userInterfaceStyle: "automatic",
splash: {
image: "./assets/images/TasitAccoutRecoverySplash.png",
resizeMode: "contain",
backgroundColor: "#07FFC2"
},
updates: {
"fallbackToCacheTimeout": 0
},
assetBundlePatterns: [
"**/*"
],
ios: {
"supportsTablet": true,
"bundleIdentifier": "io.tasit.accountrecovery",
"buildNumber": "0.0.30"
},
android: {
"package": "io.tasit.accountrecovery",
"versionCode": 30
},
web: {
"favicon": "./assets/images/TasitFavicon.png"
},
// env vars from .env files are passed through to the app here
extra: {
baseURL: process.env.BASE_URL,
network: process.env.NETWORK,
},
}
}