suna/apps/mobile/app.json

102 lines
2.7 KiB
JSON
Raw Normal View History

{
"expo": {
2025-06-17 04:21:36 +08:00
"name": "Suna",
"slug": "suna-mobile",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
2025-07-02 04:00:56 +08:00
"owner": "kortix",
"scheme": "sunamobile",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
2025-06-17 04:21:36 +08:00
"description": "Suna is a fully open source AI assistant that helps you accomplish real-world tasks with ease. Through natural conversation, Suna becomes your digital companion for research, data analysis, and everyday challenges.",
2025-07-03 02:43:38 +08:00
"primaryColor": "#121215",
2025-06-17 04:21:36 +08:00
"privacy": "public",
"platforms": [
"ios",
"android",
"web"
],
"keywords": [
"AI",
"artificial intelligence",
"browser automation",
"web scraping",
"file management",
"AI assistant",
"open source",
"research",
"data analysis"
],
"githubUrl": "https://github.com/kortix-ai/suna",
"ios": {
2025-06-17 04:21:36 +08:00
"supportsTablet": true,
"bundleIdentifier": "com.kortix.suna",
"buildNumber": "1.0.0",
"infoPlist": {
"CFBundleDisplayName": "Suna",
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
}
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
2025-06-17 04:21:36 +08:00
"edgeToEdgeEnabled": true,
"package": "com.kortix.suna",
"versionCode": 1,
"permissions": [
"INTERNET",
"CAMERA",
"RECORD_AUDIO"
]
},
"web": {
"bundler": "metro",
"output": "static",
2025-06-17 04:21:36 +08:00
"favicon": "./assets/images/favicon.png",
"name": "Suna - Open Source Generalist AI Agent",
"shortName": "Suna",
"description": "Suna is a fully open source AI assistant that helps you accomplish real-world tasks with ease through natural conversation.",
"startUrl": "/",
"display": "standalone",
"orientation": "portrait",
2025-07-03 02:43:38 +08:00
"themeColor": "#121215",
"backgroundColor": "#121215",
2025-06-17 04:21:36 +08:00
"lang": "en",
"scope": "/",
"crossorigin": "use-credentials"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
2025-07-03 02:43:38 +08:00
"image": "./assets/images/kortix-splash.png",
"imageWidth": 400,
"resizeMode": "contain",
2025-07-03 02:43:38 +08:00
"backgroundColor": "#121215"
}
2025-06-17 04:21:36 +08:00
],
2025-06-24 05:15:02 +08:00
"expo-font",
"expo-web-browser"
],
"experiments": {
"typedRoutes": true
2025-06-17 04:21:36 +08:00
},
"extra": {
"metadata": {
"applicationName": "Suna",
"authors": "Kortix Team",
"creator": "Kortix Team",
"publisher": "Kortix Team",
"category": "Technology",
"siteUrl": "https://suna.so",
"twitterHandle": "@kortixai"
}
}
}
2025-07-02 04:00:56 +08:00
}