Files
AppDev/FastNotes/app.json
2026-03-19 22:53:34 +01:00

75 lines
2.0 KiB
JSON

{
"expo": {
"name": "FastNotes",
"slug": "FastNotes",
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "fastnotes",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.fastnotes.app",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"package": "com.fastnotes.app",
"adaptiveIcon": {
"backgroundColor": "#E6F4FE",
"foregroundImage": "./assets/images/android-icon-foreground.png",
"backgroundImage": "./assets/images/android-icon-background.png",
"monochromeImage": "./assets/images/android-icon-monochrome.png"
},
"permissions": [
"POST_NOTIFICATIONS"
],
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false
},
"web": {
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-image-picker",
{
"photosPermission": "Allow FastNotes to access your photo library so you can attach images to notes.",
"cameraPermission": "Allow FastNotes to use your camera so you can take photos for notes."
}
],
"expo-notifications",
[
"expo-splash-screen",
{
"image": "./assets/images/splash-icon.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff",
"dark": {
"backgroundColor": "#000000"
}
}
],
"expo-sqlite",
"expo-secure-store"
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
},
"extra": {
"supabaseUrl": "https://mogieparkvgcobaukpsr.supabase.co",
"supabaseKey": "sb_publishable_V_59BIi7RykQTnH7HNMWbg_dWN9hlbS",
"router": {},
"eas": {
"projectId": "7eb7c779-f343-49c8-8412-286e56ee15f9"
}
}
}
}