initial commit

This commit is contained in:
2026-06-29 01:59:27 -04:00
commit d988695498
34 changed files with 9397 additions and 0 deletions
+61
View File
@@ -0,0 +1,61 @@
{
"expo": {
"name": "hotdog",
"slug": "hotdog",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.soconnor.hotdog",
"icon": "./assets/hotdog-app.icon",
"infoPlist": {
"NSCameraUsageDescription": "Hotdog needs the camera to detect whether you're looking at a hot dog.",
"NSPhotoLibraryAddUsageDescription": "Hotdog saves scanned photos to your library.",
"NSPhotoLibraryUsageDescription": "Hotdog needs photo access to import images from your gallery."
}
},
"plugins": [
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "17.0"
}
}
],
[
"expo-camera",
{
"cameraPermission": "Hotdog needs the camera to detect whether you're looking at a hot dog."
}
],
[
"expo-image-picker",
{
"photosPermission": "Hotdog needs photo access to import images from your gallery."
}
],
[
"expo-media-library",
{
"photosPermission": "Hotdog saves scanned photos to your library.",
"savePhotosPermission": "Hotdog saves scanned photos to your library."
}
]
],
"android": {
"adaptiveIcon": {
"backgroundColor": "#E6F4FE",
"foregroundImage": "./assets/android-icon-foreground.png",
"backgroundImage": "./assets/android-icon-background.png",
"monochromeImage": "./assets/android-icon-monochrome.png"
},
"predictiveBackGestureEnabled": false
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}