-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
96 lines (95 loc) · 2.81 KB
/
project.yml
File metadata and controls
96 lines (95 loc) · 2.81 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
name: Linkstr
options:
deploymentTarget:
iOS: 18.0
createIntermediateGroups: true
xcodeVersion: "26.3"
settings:
base:
SWIFT_VERSION: "5.10"
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS: "YES"
ENABLE_USER_SCRIPT_SANDBOXING: "YES"
STRING_CATALOG_GENERATE_SYMBOLS: "YES"
packages:
NostrSDK:
url: https://github.com/nostr-sdk/nostr-sdk-ios.git
branch: main
EmojiKit:
url: https://github.com/danielsaidi/EmojiKit.git
from: 2.0.0
schemes:
Linkstr:
build:
targets:
Linkstr: all
run:
config: Debug
test:
config: Debug
targets:
- name: LinkstrTests
profile:
config: Release
analyze:
config: Debug
archive:
config: Release
targets:
Linkstr:
type: application
platform: iOS
deploymentTarget: 18.0
sources:
- path: LinkstrApp
dependencies:
- package: NostrSDK
- package: EmojiKit
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.parmscript.linkstr
TARGETED_DEVICE_FAMILY: "1,2"
CODE_SIGN_IDENTITY: Apple Development
CODE_SIGN_STYLE: Automatic
INFOPLIST_FILE: LinkstrApp/Info.plist
DEVELOPMENT_TEAM: "7654L3CX5L"
LINKSTR_PUSH_SERVICE_BASE_URL: "https://linkstr-push-service.fly.dev"
configs:
Debug:
CODE_SIGN_ENTITLEMENTS[sdk=iphoneos*]: LinkstrApp/Linkstr.Debug.entitlements
Release:
CODE_SIGN_ENTITLEMENTS[sdk=iphoneos*]: LinkstrApp/Linkstr.Release.entitlements
info:
path: LinkstrApp/Info.plist
properties:
CFBundleDisplayName: linkstr
CFBundleShortVersionString: "1.2.1"
CFBundleVersion: "11"
LinkstrPushServiceBaseURL: $(LINKSTR_PUSH_SERVICE_BASE_URL)
UIApplicationSceneManifest:
UIApplicationSupportsMultipleScenes: false
NSCameraUsageDescription: Camera access is used to scan Contact Key (npub) QR codes.
NSPhotoLibraryAddUsageDescription: Photo access is used only to save locally downloaded videos to your gallery.
UILaunchStoryboardName: LaunchScreen
NSAppTransportSecurity:
NSAllowsArbitraryLoadsInWebContent: true
ITSAppUsesNonExemptEncryption: false
UISupportedInterfaceOrientations:
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
CFBundleURLTypes:
- CFBundleURLName: com.parmscript.linkstr.deeplink
CFBundleURLSchemes:
- linkstr
LinkstrTests:
type: bundle.unit-test
platform: iOS
deploymentTarget: 18.0
sources:
- path: LinkstrTests
dependencies:
- target: Linkstr
settings:
base:
GENERATE_INFOPLIST_FILE: YES