-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.yml
More file actions
182 lines (164 loc) · 6.39 KB
/
project.yml
File metadata and controls
182 lines (164 loc) · 6.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
name: WhereFam
include:
- app/addons/addons.yml
packages:
ConcentricOnboarding:
url: https://github.com/exyte/ConcentricOnboarding.git
from: 1.1.1
BareKit:
url: https://github.com/holepunchto/bare-kit-swift
branch: main
MapLibreNative:
url: https://github.com/maplibre/maplibre-gl-native-distribution
from: 6.25.0
SQLiteData:
url: https://github.com/pointfreeco/sqlite-data
from: 1.6.1
targets:
App:
type: application
platform: iOS
deploymentTarget: 17.0
settings:
base:
PRODUCT_NAME: WhereFam
PRODUCT_BUNDLE_IDENTIFIER: com.wherefam.ios
MARKETING_VERSION: "2.0.0"
CURRENT_PROJECT_VERSION: "1"
INFOPLIST_KEY_CFBundleDisplayName: "WhereFam"
INFOPLIST_KEY_LSApplicationCategoryType: "public.app-category.social-networking"
SWIFT_VERSION: 5.0
ASSETCATALOG_COMPILER_APPICON_NAME: "WhereFam"
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS: YES
DEVELOPMENT_TEAM: ${DEVELOPMENT_TEAM}
CODE_SIGN_STYLE: Manual
OTHER_LDFLAGS: "$(inherited) -weak_framework SwiftUICore"
info:
path: app/Info.plist
properties:
UISupportedInterfaceOrientations:
- UIInterfaceOrientationPortrait
UISupportedInterfaceOrientations~ipad:
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
NSLocationWhenInUseUsageDescription: "WhereFam shares your location only with people you trust, directly over an encrypted peer-to-peer connection."
NSLocationAlwaysAndWhenInUseUsageDescription: "WhereFam needs background location to keep your circle updated even when the app is closed. Your location is never sent to any server."
NSLocationAlwaysUsageDescription: "WhereFam needs background location to keep your circle updated even when the app is closed."
NSCameraUsageDescription: "WhereFam uses the camera to scan family member invite codes."
UILaunchStoryboardName: "LaunchScreen.storyboard"
UIBackgroundModes:
- location
- fetch
- processing
BGTaskSchedulerPermittedIdentifiers:
- com.wherefam.locationburst
NSLocalNetworkUsageDescription: "We need access to your local network to connect to nearby devices."
NSAppTransportSecurity:
NSAllowsArbitraryLoads: true
UIRequiresFullScreen: true
CFBundleURLTypes:
- CFBundleURLName: com.wherefam.ios
CFBundleURLSchemes:
- wherefam
CFBundleShortVersionString: "$(MARKETING_VERSION)"
CFBundleVersion: "$(CURRENT_PROJECT_VERSION)"
entitlements:
path: app/WhereFam.entitlements
properties:
com.apple.security.cs.allow-jit: true
# com.apple.developer.background-task-scheduler-permitted-identifiers:
# - com.wherefam.locationburst
capabilities:
- inAppPurchase: true
- backgroundModes:
modes:
- location
- fetch
- processing
dependencies:
- package: ConcentricOnboarding
- package: BareKit
- framework: app/frameworks/BareKit.xcframework
- package: MapLibreNative
product: MapLibre
- package: SQLiteData
product: SQLiteData
sources:
- path: app/app.bundle
optional: true
- path: app/NotificationService.swift
- path: app/LaunchScreen.storyboard
- path: app/WhereFam.icon
- path: app/Application/App.swift
group: app/Application
- path: app/Application/AppDelegate.swift
- path: app/Application/AppCoordinator.swift
- path: app/Core/Root/ContentView.swift
group: app/Core/Root
- path: app/Core/Home/View/HomeView.swift
group: app/Core/Home/View
- path: app/Core/Home/View/PeopleView.swift
- path: app/Core/Home/View/PersonDetailView.swift
- path: app/Core/Home/View/PlacesView.swift
- path: app/Core/Home/View/SafetyView.swift
- path: app/Core/Home/View/ShareIDView.swift
- path: app/Core/Home/View/SimpleMapView.swift
- path: app/Core/Home/View/StoreKitPaywallView.swift
- path: app/Core/Home/View/AboutView.swift
- path: app/Core/Home/View/CoordinatePickerView.swift
- path: app/Core/Onboarding/View/FirstPageView.swift
group: app/Core/Onboarding/View
- path: app/Core/Onboarding/View/SecondPageView.swift
- path: app/Core/Onboarding/View/ThirdPageView.swift
- path: app/Core/Onboarding/View/FourthPageView.swift
- path: app/Core/Onboarding/View/FifthPageView.swift
- path: app/Core/Onboarding/View/SixthPageView.swift
- path: app/Core/RPC/RPCViewModel.swift
group: app/Core/RPC
- path: app/Core/RPC/Worker.swift
- path: app/Manager/LocationManager.swift
group: app/Manager
- path: app/Manager/PlaceManager.swift
- path: app/Manager/SafetyManager.swift
- path: app/Manager/BatteryManager.swift
- path: app/Manager/BackgroundTaskManager.swift
- path: app/Manager/AppEnvironment.swift
- path: app/Manager/StoreKitManager.swift
- path: app/Manager/DeepLinkHandler.swift
- path: app/Models/Person.swift
group: app/Models
- path: app/Models/Place.swift
- path: app/Models/LocationHistory.swift
- path: app/Database/Database.swift
group: app/Database
- path: app/Database/AppDatabase.swift
- path: app/js/app.js
group: app/js
- path: app/js/ipc.js
- path: app/js/constants.js
- path: app/js/hyperbee-manager.js
- path: app/js/identity-manager.js
- path: app/js/feed-manager.js
- path: app/js/hyperswarm-manager.js
- path: app/js/protocol-manager.js
- path: app/js/push.js
scheme:
preActions:
- name: Link
script: |
PATH="${PATH}" "${PWD}/node_modules/.bin/bare-link" \
--host ios-arm64 \
--host ios-arm64-simulator \
--out ${PWD}/app/addons \
${PWD}
- name: Pack
script: |
PATH="${PATH}" "${PWD}/node_modules/.bin/bare-pack" \
--host ios-arm64 \
--host ios-arm64-simulator \
--linked \
--base ${PWD} \
--out ${PWD}/app/app.bundle \
${PWD}/app/js/app.js