initial add

This commit is contained in:
Paul 2020-11-02 16:40:41 -06:00
parent 2756a93231
commit 62951d0b80
13 changed files with 5825 additions and 0 deletions

32
app.json Executable file
View file

@ -0,0 +1,32 @@
{
"expo": {
"name": "csrv",
"slug": "csrv",
"privacy": "public",
"sdkVersion": "36.0.0",
"platforms": [
"android"
],
"version": "1.2.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"package": "com.rpicsrv.csrv",
"versionCode": 2
}
}
}