mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1{
2 "expo": {
3 "name": "Bluesky",
4 "slug": "bluesky",
5 "scheme": "bluesky",
6 "owner": "blueskysocial",
7 "version": "1.45.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 "fetch",
29 "processing"
30 ],
31 "BGTaskSchedulerPermittedIdentifiers": [
32 "com.transistorsoft.fetch"
33 ],
34 "NSCameraUsageDescription": "Used for profile pictures, posts, and other kinds of content.",
35 "NSMicrophoneUsageDescription": "Used for posts and other kinds of content.",
36 "NSPhotoLibraryAddUsageDescription": "Used to save images to your library.",
37 "NSPhotoLibraryUsageDescription": "Used for profile pictures, posts, and other kinds of content"
38 },
39 "associatedDomains": ["applinks:bsky.app", "applinks:staging.bsky.app"],
40 "entitlements": {
41 "com.apple.developer.networking.wifi-info": true
42 }
43 },
44 "androidStatusBar": {
45 "barStyle": "dark-content",
46 "backgroundColor": "#ffffff"
47 },
48 "android": {
49 "versionCode": 32,
50 "adaptiveIcon": {
51 "foregroundImage": "./assets/adaptive-icon.png",
52 "backgroundColor": "#ffffff"
53 },
54 "package": "xyz.blueskyweb.app",
55 "intentFilters": [
56 {
57 "action": "VIEW",
58 "autoVerify": true,
59 "data": [
60 {
61 "scheme": "https",
62 "host": "bsky.app"
63 }
64 ],
65 "category": ["BROWSABLE", "DEFAULT"]
66 }
67 ]
68 },
69 "web": {
70 "favicon": "./assets/favicon.png"
71 },
72 "updates": {
73 "enabled": true,
74 "fallbackToCacheTimeout": 1000,
75 "url": "https://u.expo.dev/55bd077a-d905-4184-9c7f-94789ba0f302"
76 },
77 "plugins": [
78 "expo-localization",
79 "react-native-background-fetch",
80 "sentry-expo",
81 [
82 "expo-build-properties",
83 {
84 "android": {
85 "compileSdkVersion": 34,
86 "targetSdkVersion": 34,
87 "buildToolsVersion": "34.0.0",
88 "kotlinVersion": "1.8.0"
89 }
90 }
91 ],
92 [
93 "expo-updates",
94 {
95 "username": "blueskysocial"
96 }
97 ]
98 ],
99 "extra": {
100 "eas": {
101 "projectId": "55bd077a-d905-4184-9c7f-94789ba0f302"
102 }
103 },
104 "hooks": {
105 "postPublish": [
106 {
107 "file": "sentry-expo/upload-sourcemaps",
108 "config": {
109 "organization": "blueskyweb",
110 "project": "react-native"
111 }
112 }
113 ]
114 }
115 }
116}