Первая версия мобильного приложения

This commit is contained in:
mi
2026-08-21 17:37:12 +03:00
parent d2415fcfeb
commit c1e49fb15d
60 changed files with 14106 additions and 6 deletions
+50
View File
@@ -0,0 +1,50 @@
import type { ExpoConfig } from "expo/config";
const config: ExpoConfig = {
name: "HAN Chat",
slug: "han-chat",
owner: "anzh",
version: "1.0.0",
scheme: "han-chat",
icon: "./.assets/icons/icon.png",
orientation: "portrait",
userInterfaceStyle: "light",
android: {
package: "ru.han.chat",
softwareKeyboardLayoutMode: "resize",
adaptiveIcon: {
foregroundImage: "./.assets/icons/adaptive-foreground.png",
monochromeImage: "./.assets/icons/adaptive-monochrome.png",
backgroundColor: "#4A0E1E",
},
intentFilters: [
{
action: "VIEW",
autoVerify: false,
data: [
{
scheme: "han-chat",
host: "auth",
pathPrefix: "/callback",
},
],
category: ["BROWSABLE", "DEFAULT"],
},
],
},
experiments: {
typedRoutes: true,
},
extra: {
eas: {
projectId: "53d1a38c-f888-40ca-b485-58f5301e4dff",
},
},
plugins: [
"expo-router",
"expo-secure-store",
"expo-document-picker",
],
};
export default config;