Files
han-app/VM4_Expo-mobile/app.config.ts
T

51 lines
1.1 KiB
TypeScript

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;