expo app json

Solutions on MaxInterview for expo app json by the best coders in the world

showing results for - "expo app json"
Matt
28 Feb 2017
1{
2  "expo": {
3    "name": "Kleva Shopper",
4    "slug": "smart-shopper",
5    "privacy": "public",
6    "sdkVersion": "35.0.0",
7    "platforms": [
8      "ios",
9      "android",
10      "web"
11    ],
12    "version": "1.0.0",
13    "orientation": "portrait",
14    "icon": "./assets/icons/icon.png",
15    "splash": {
16      "image": "./assets/icons/splash.png",
17      "resizeMode": "contain",
18      "backgroundColor": "#ffffff"
19    },
20    "updates": {
21      "fallbackToCacheTimeout": 0
22    },
23    "assetBundlePatterns": [
24      "**/*"
25    ],
26    "ios": {
27      "supportsTablet": true
28    },
29    "android": {
30      "package": "com.leumasco.klavashopper"
31    },
32    "extra": {
33        "test": {
34          "message": "I am a message"
35        },
36        "FIRE_BASE": {}
37    },
38    "description": ""
39  }
40}
41
Felipe
11 Oct 2016
1{
2  "expo": {
3    "name": "My app",
4    "slug": "my-app",
5    "sdkVersion": "UNVERSIONED",
6    "privacy": "public"
7  }
8}
9