fork
Configure Feed
Select the types of activity you want to include in your feed.
mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 "expo": {
3 "name": "Bluesky",
4 "slug": "bluesky",
5 "scheme": "bluesky",
6 "owner": "blueskysocial",
7 "version": "1.48.0",
8 "runtimeVersion": {
9 "policy": "appVersion"
10 },
11 "orientation": "portrait",
12 "icon": "./assets/icon.png",
13 "userInterfaceStyle": "automatic",
14 "splash": {
15 "image": "./assets/cloud-splash.png",
16 "resizeMode": "cover",
17 "backgroundColor": "#ffffff"
18 },
19 "ios": {
20 "buildNumber": "1",
21 "supportsTablet": false,
22 "bundleIdentifier": "xyz.blueskyweb.app",
23 "config": {
24 "usesNonExemptEncryption": false
25 },
26 "infoPlist": {
27 "UIBackgroundModes": [
28 "remote-notification"
29 ],
30 "NSCameraUsageDescription": "Used for profile pictures, posts, and other kinds of content.",
31 "NSMicrophoneUsageDescription": "Used for posts and other kinds of content.",
32 "NSPhotoLibraryAddUsageDescription": "Used to save images to your library.",
33 "NSPhotoLibraryUsageDescription": "Used for profile pictures, posts, and other kinds of content"
34 },
35 "associatedDomains": ["applinks:bsky.app", "applinks:staging.bsky.app"]
36 },
37 "androidStatusBar": {
38 "barStyle": "dark-content",
39 "backgroundColor": "#ffffff"
40 },
41 "android": {
42 "versionCode": 35,
43 "adaptiveIcon": {
44 "foregroundImage": "./assets/adaptive-icon.png",
45 "backgroundColor": "#ffffff"
46 },
47 "googleServicesFile": "./google-services.json",
48 "package": "xyz.blueskyweb.app",
49 "intentFilters": [
50 {
51 "action": "VIEW",
52 "autoVerify": true,
53 "data": [
54 {
55 "scheme": "https",
56 "host": "bsky.app"
57 }
58 ],
59 "category": ["BROWSABLE", "DEFAULT"]
60 }
61 ]
62 },
63 "web": {
64 "favicon": "./assets/favicon.png"
65 },
66 "updates": {
67 "enabled": true,
68 "fallbackToCacheTimeout": 1000,
69 "url": "https://u.expo.dev/55bd077a-d905-4184-9c7f-94789ba0f302"
70 },
71 "plugins": [
72 "expo-localization",
73 "sentry-expo",
74 [
75 "expo-build-properties",
76 {
77 "android": {
78 "compileSdkVersion": 34,
79 "targetSdkVersion": 34,
80 "buildToolsVersion": "34.0.0",
81 "kotlinVersion": "1.8.0"
82 }
83 }
84 ],
85 [
86 "expo-updates",
87 {
88 "username": "blueskysocial"
89 }
90 ]
91 ],
92 "extra": {
93 "eas": {
94 "projectId": "55bd077a-d905-4184-9c7f-94789ba0f302"
95 }
96 },
97 "hooks": {
98 "postPublish": [
99 {
100 "file": "sentry-expo/upload-sourcemaps",
101 "config": {
102 "organization": "blueskyweb",
103 "project": "react-native"
104 }
105 }
106 ]
107 }
108 }
109}