initial commit

This commit is contained in:
Carlos Gutierrez
2025-09-02 23:12:22 -04:00
commit 3029582bb4
19 changed files with 14951 additions and 0 deletions

30
app.json Normal file
View File

@@ -0,0 +1,30 @@
{
"expo": {
"name": "UC Biosketch App",
"slug": "uc-biosketch-app",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#e60026"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#e60026"
}
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}