-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.yml
More file actions
executable file
·85 lines (85 loc) · 2.35 KB
/
project.yml
File metadata and controls
executable file
·85 lines (85 loc) · 2.35 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
name: OpenMusicPlayer
options:
xcodeVersion: "12.0"
minimumXcodeGenVersion: "2.11.0"
createIntermediateGroups: true
deploymentTarget:
iOS: "14.0"
bundleIdPrefix: com.molayab.musicplayer
settings:
base:
SDKROOT: "iphoneos"
VERSIONING_SYSTEM: "apple-generic"
SWIFT_VERSION: "5.2"
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED: YES
configs:
Debug:
DEBUG: "1"
ONLY_ACTIVE_ARCH: YES
ENABLE_TESTABILITY: YES
GCC_SYMBOLS_PRIVATE_EXTERN: NO
ASSETCATALOG_COMPILER_OPTIMIZATION: "time"
OTHER_SWIFT_FLAGS:
-Onone
-enable-batch-mode
Release:
DEBUG: "0"
SWIFT_OPTIMIZATION_LEVEL: "-Osize"
SWIFT_COMPILATION_MODE: "wholemodule"
ASSETCATALOG_COMPILER_OPTIMIZATION: "space"
BUILD_LIBRARY_FOR_DISTRIBUTION: YES
targets:
App:
info:
path: App/Info.plist
properties:
UIApplicationSceneManifest:
UIApplicationSupportsMultipleScenes: true
UIApplicationSupportsIndirectInputEvents: true
UILaunchScreen: ""
UIRequiredDeviceCapabilities: [armv7]
UISupportedInterfaceOrientations:
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
UISupportedInterfaceOrientations:
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
NSAppleMusicUsageDescription: "This app requires access to play music"
platform: iOS
type: application
sources: [App]
dependencies:
- target: Core
- target: UI
- sdk: Foundation.framework
- sdk: Combine.framework
AppTests:
type: bundle.unit-test
platform: iOS
sources: [Tests/AppTests]
dependencies:
- target: App
UI:
info:
path: UI/Info.plist
type: framework
platform: iOS
sources:
- UI
- UI/Resources/Assets.xcassets
- UI/Resources/Colors.xcassets
Core:
info:
path: Core/Info.plist
type: framework
platform: iOS
sources: [Core]
CoreTests:
type: bundle.unit-test
platform: iOS
sources: [Tests/CoreTests]
dependencies:
- target: Core