forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1module.exports = {
2 name: "Rocksky",
3 slug: "rocksky",
4 version: "1.0.0",
5 orientation: "portrait",
6 icon: "./assets/images/icon.png",
7 scheme: "rocksky",
8 userInterfaceStyle: "automatic",
9 newArchEnabled: true,
10 extra: {
11 storybookEnabled: process.env.STORYBOOK_ENABLED,
12 },
13 ios: {
14 supportsTablet: true,
15 },
16 android: {
17 adaptiveIcon: {
18 foregroundImage: "./assets/images/adaptive-icon.png",
19 backgroundColor: "#ffffff",
20 },
21 edgeToEdgeEnabled: true,
22 package: "com.anonymous.rocksky",
23 },
24 web: {
25 bundler: "metro",
26 output: "static",
27 favicon: "./assets/images/favicon.png",
28 },
29 plugins: [
30 "expo-router",
31 [
32 "expo-splash-screen",
33 {
34 image: "./assets/images/splash-icon.png",
35 imageWidth: 200,
36 resizeMode: "contain",
37 backgroundColor: "#ffffff",
38 },
39 ],
40 ],
41 experiments: {
42 typedRoutes: true,
43 },
44};