-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProject.swift
More file actions
43 lines (42 loc) · 1.17 KB
/
Project.swift
File metadata and controls
43 lines (42 loc) · 1.17 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
import ProjectDescription
let project = Project(
name: "FeedbackApp",
settings: .settings(
base: [
"DEVELOPMENT_TEAM": "X5RYB6DN28"
]
),
targets: [
.target(
name: "FeedbackApp",
destinations: .iOS,
product: .app,
bundleId: "com.urcomputeringpal.FeedbackApp",
deploymentTargets: .iOS("26.1"),
infoPlist: .extendingDefault(
with: [
"UILaunchScreen": [
"UIColorName": "",
"UIImageName": "",
],
]
),
buildableFolders: [
"FeedbackApp/Sources",
"FeedbackApp/Resources",
],
dependencies: []
),
.target(
name: "FeedbackAppTests",
destinations: .iOS,
product: .unitTests,
bundleId: "com.urcomputeringpal.FeedbackAppTests",
infoPlist: .default,
buildableFolders: [
"FeedbackApp/Tests"
],
dependencies: [.target(name: "FeedbackApp")]
),
]
)