-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.swift
More file actions
56 lines (51 loc) · 2 KB
/
Project.swift
File metadata and controls
56 lines (51 loc) · 2 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
import ProjectDescription
import ProjectDescriptionHelpers
let infoPlist: [String: InfoPlist.Value] = [
"CFBundleShortVersionString": "1.0",
"CFBundleVersion": "1",
"UILaunchStoryboardName": "LaunchScreen",
"NSAppTransportSecurity" : ["NSAllowsArbitraryLoads":true],
"UISupportedInterfaceOrientations" : ["UIInterfaceOrientationPortrait"],
"UIUserInterfaceStyle":"Light",
"UIApplicationSceneManifest" : ["UIApplicationSupportsMultipleScenes":true,
"UISceneConfigurations":[
"UIWindowSceneSessionRoleApplication":[[
"UISceneConfigurationName":"Default Configuration",
"UISceneDelegateClassName":"$(PRODUCT_MODULE_NAME).SceneDelegate"
]]
]
]
]
let project = Project(
name: "HelpMeChooseIOS",
organizationName: "JYKang",
settings: .settings(configurations: [
.debug(name: "Debug"),
.release(name: "Release")
]),
targets: [
Target(
name: "HelpMeChooseIOS",
platform: .iOS,
product: .app,
bundleId: "io.tuist.HelpMeChoose",
deploymentTarget : .iOS(targetVersion: "13.0.0", devices: .iphone),
infoPlist: .extendingDefault(with: infoPlist),
sources: ["Targets/HelpMeChooseIOS/Sources/**"],
resources: ["Targets/HelpMeChooseIOS/Resources/**"],
dependencies: [
]
),
Target(
name: "HelpMeChooseIOSTests",
platform: .iOS,
product: .unitTests,
bundleId: "io.tuist.HelpMeChooseTests",
deploymentTarget : .iOS(targetVersion: "13.0.0", devices: .iphone),
infoPlist: .default,
sources: ["Targets/HelpMeChooseIOS/Tests/**"],
dependencies: [
]
)
]
)