Initial app creation

This commit is contained in:
2019-09-23 20:14:06 +02:00
commit e7e63e399c
26 changed files with 7558 additions and 0 deletions

33
app.json Normal file
View File

@@ -0,0 +1,33 @@
{
"expo": {
"name": "5E Points Quizz",
"slug": "5e-points-quizz",
"privacy": "public",
"sdkVersion": "35.0.0",
"platforms": [
"ios",
"android",
"web"
],
"version": "1.1.0",
"orientation": "portrait",
"icon": "./assets/images/5E-icon-rounded.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffefd5"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"package": "com.fiveideas.five_e_points_quizz"
}
}
}