-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
43 lines (43 loc) · 1.35 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
{
"expo": {
"name": "Musicoin",
"description": "Musicoin app",
"slug": "Musicoin",
"privacy": "public",
"sdkVersion": "31.0.0",
"platforms": [
"ios",
"android"
],
"version": "2.1.1",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"primaryColor": "#1A1D21",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "cover",
"backgroundColor": "#1A1D21"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "org.musicoin.musicoin",
"buildNumber": "2.1.0",
"publishBundlePath": "ios/musicoin/Supporting/shell-app.bundle",
"publishManifestPath": "ios/musicoin/Supporting/shell-app-manifest.json"
},
"android": {
"package": "org.musicoin.musicoin",
"publishBundlePath": "android/app/src/main/assets/shell-app.bundle",
"publishManifestPath": "android/app/src/main/assets/shell-app-manifest.json"
},
"scheme": "musicoin",
"isDetached": true,
"detach": {
"iosExpoViewUrl": "https://s3.amazonaws.com/exp-exponent-view-code/ios-v2.9.0-sdk31.0.0-250a3991-b623-4f9c-b07f-0b9ed7e8c4c9.tar.gz",
"androidExpoViewUrl": "https://s3.amazonaws.com/exp-exponent-view-code/android-v2.9.2-sdk31.0.0-d1776f37-d524-4fee-872d-6807b0fd83ff.tar.gz"
}
}
}