-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.yml
77 lines (73 loc) · 2.33 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
74
75
76
77
name: BloodyMary
options:
minimumXcodeGenVersion: "2.11.0"
bundleIdPrefix: com.theInkedEngineer
indentWidth: 2
xcodeVersion: 11.3
deploymentTarget:
iOS: "10.0"
generateEmptyDirectories: true
targets:
BloodyMary:
type: framework
platform: iOS
attributes:
ProvisioningStyle: Automatic
sources: [BloodyMary]
info:
path: BloodyMary/Resources/Info.plist
properties:
CFBundleIdentifier: "$(PRODUCT_BUNDLE_IDENTIFIER)"
CFBundleInfoDictionaryVersion: "6.0"
CFBundleExecutable: "$(EXECUTABLE_NAME)"
CFBundleName: "$(PRODUCT_NAME)"
CFBundleDevelopmentRegion: "$(DEVELOPMENT_LANGUAGE)"
CFBundleShortVersionString: "1.1.0"
CFBundleVersion: "$(CURRENT_PROJECT_VERSION)"
CFBundlePackageType: "FMWK"
settings:
TARGETED_DEVICE_FAMILY: 1
BloodyMaryDemo:
type: application
platform: iOS
attributes:
ProvisioningStyle: Automatic
sources: [BloodyMaryDemo]
dependencies:
- target: BloodyMary
info:
path: BloodyMaryDemo/Resources/Info.plist
properties:
CFBundleIdentifier: "$(PRODUCT_BUNDLE_IDENTIFIER)"
CFBundleInfoDictionaryVersion: "6.0"
CFBundleExecutable: "$(EXECUTABLE_NAME)"
CFBundleName: "$(PRODUCT_NAME)"
CFBundleDevelopmentRegion: "$(DEVELOPMENT_LANGUAGE)"
CFBundleShortVersionString: "1.0"
CFBundleVersion: "1"
CFBundlePackageType: "APPL"
LSRequiresIPhoneOS: true
UILaunchStoryboardName: "LaunchScreen"
UIRequiredDeviceCapabilities: ["armv7"]
UISupportedInterfaceOrientations: ["UIInterfaceOrientationPortrait"]
settings:
TARGETED_DEVICE_FAMILY: 1
BloodyMaryUnitTests:
type: bundle.unit-test
platform: iOS
sources:
- path: BloodyMaryUnitTests
dependencies:
- target: BloodyMary
- target: BloodyMaryDemo
info:
path: BloodyMaryUnitTests/Resources/Info.plist
properties:
CFBundleDevelopmentRegion: "$(DEVELOPMENT_LANGUAGE)"
CFBundleExecutable: "$(EXECUTABLE_NAME)"
CFBundleIdentifier: "$(PRODUCT_BUNDLE_IDENTIFIER)"
CFBundleInfoDictionaryVersion: "6.0"
CFBundleName: "$(PRODUCT_NAME)"
CFBundlePackageType: "$(PRODUCT_BUNDLE_PACKAGE_TYPE)"
CFBundleShortVersionString: "1.0"
CFBundleVersion: "1"