-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathapp.json
47 lines (47 loc) · 1.37 KB
/
app.json
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
{
"expo": {
"name": "Ory Profile App",
"slug": "kratos-selfservice-ui-react-native",
"scheme": "kratos-selfservice-ui-react-native",
"version": "0.5.14",
"orientation": "portrait",
"githubUrl": "https://github.com/ory/kratos-selfservice-ui-react-native",
"icon": "./assets/icon.png",
"privacy": "public",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#f0f0f1"
},
"updates": {
"fallbackToCacheTimeout": 1000
},
"assetBundlePatterns": ["src/assets/*", "src/assets/**/*", "assets/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.ory.kratos-selfservice-ui-react-native"
},
"android": {
"package": "com.ory.kratos_self_service_ui_react_native",
"versionCode": 63,
"permissions": []
},
"web": {
"favicon": "./assets/favicon.png"
},
"platforms": ["ios", "android", "web"],
"description": "An example app demonstrating login, registration, profile settings, 2fa, account recovery, and more using the Ory Kratos open source project.",
"plugins": ["sentry-expo"],
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "ory-corp",
"project": "ory-profile-app"
}
}
]
}
}
}