forked from fitculator-ai/Team4_iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.swift
More file actions
59 lines (58 loc) · 2.02 KB
/
Project.swift
File metadata and controls
59 lines (58 loc) · 2.02 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
import ProjectDescription
let project = Project(
name: "Fitculator",
options: .options(
automaticSchemesOptions: .disabled,
defaultKnownRegions: ["en", "ko"],
developmentRegion: "ko",
textSettings: .textSettings(usesTabs: false, indentWidth: 4, tabWidth: 4)
),
targets: [
.target(
name: "Fitculator",
destinations: .iOS,
product: .app,
bundleId: "io.tuist.Fitculator",
deploymentTargets: .iOS("17.0"),
infoPlist: .extendingDefault(
with: [
"UILaunchScreen": [
"UIColorName": "",
"UIImageName": ""
],
"NSCameraUsageDescription" : "NSCameraUsageDescription",
"NSPhotoLibraryUsageDescription" : "NSPhotoLibraryUsageDescription",
"NSAppTransportSecurity": [
"NSAllowsArbitraryLoads": true
]
]
),
sources: [
"Fitculator/Sources/App/**",
"Fitculator/Sources/Data/**",
"Fitculator/Sources/Domain/**",
"Fitculator/Sources/Networking/**",
"Fitculator/Sources/Presentation/**",
"Fitculator/Sources/Utils/**",
],
resources: ["Fitculator/Resources/**"],
dependencies: [
.external(name: "Alamofire"),
.external(name: "Kingfisher")
],
settings: .settings(base: [
"RUN_EXECUTABLE_PATH": "$(BUILT_PRODUCTS_DIR)/Fitculator.app"
])
),
.target(
name: "FitculatorTests",
destinations: .iOS,
product: .unitTests,
bundleId: "io.tuist.FitculatorTests",
infoPlist: .default,
sources: ["Fitculator/Tests/**"],
resources: [],
dependencies: [.target(name: "Fitculator")]
),
]
)