-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.yml
73 lines (59 loc) · 1.71 KB
/
project.yml
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
name: CodeSample
options:
preGenCommand: swiftgen
generateEmptyDirectories: true
createIntermediateGroups: true
projectReferences:
Core:
path: Modules/Core/Core.xcodeproj
embed: true
Components:
path: Modules/Components/Components.xcodeproj
embed: true
targets:
CodeSample:
type: application
platform: iOS
deploymentTarget: "13.0"
sources: CodeSample
settings:
base:
ASSETCATALOG_COMPILER_APPICON_NAME: "AppIcon"
PRODUCT_BUNDLE_IDENTIFIER: "com.adauto.CodeSample"
DEVELOPMENT_TEAM: C2BTWK9QR9
TARGETED_DEVICE_FAMILY: 1
MARKETING_VERSION: "1.1.2"
CURRENT_PROJECT_VERSION: "1"
configs:
Debug:
CODE_SIGN_STYLE: Automatic
Release:
CODE_SIGN_IDENTITY: iPhone Distribution
CODE_SIGN_STYLE: Manual
PROVISIONING_PROFILE_SPECIFIER: "match AppStore com.adauto.CodeSample"
dependencies:
- framework: Carthage/Build/RxSwift.xcframework
- framework: Carthage/Build/RxCocoa.xcframework
- framework: Carthage/Build/RxRelay.xcframework
- framework: Carthage/Build/TinyConstraints.xcframework
- framework: Carthage/Build/AloeStackView.xcframework
- target: Core/Core
- target: Components/Components
preBuildScripts:
- script: swiftgen
name: Swiftgen
- script: swiftlint
name: Swiftlint
CodeSampleTests:
type: bundle.unit-test
platform: iOS
sources: CodeSampleTests
schemes:
testTargets:
- CodeSampleTests
gatherCoverageData: true
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.adauto.CodeSampleTests
dependencies:
- target: CodeSample