-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project.swift
59 lines (57 loc) · 1.92 KB
/
Project.swift
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 projectName = "Idea-Archive"
let orginazationIden = ".class"
let project = Project(
name: projectName,
organizationName: "\(projectName)-iOS",
packages: [
.remote(
url: "https://github.com/hackiftekhar/IQKeyboardManager.git",
requirement: .upToNextMajor(from: "6.5.0")
),
.remote(
url: "https://github.com/SnapKit/SnapKit.git",
requirement: .upToNextMajor(from: "5.0.1")
),
.remote(
url: "https://github.com/Moya/Moya.git",
requirement: .upToNextMajor(from: "15.0.0")
),
.remote(
url: "https://github.com/RxSwiftCommunity/RxKeyboard.git",
requirement: .upToNextMajor(from: "2.0.1")
),
.remote(
url: "https://github.com/devxoul/Then",
requirement: .upToNextMajor(from: "2")
),
.package(
url: "https://github.com/uuuunseo/AEOTPTextField.git",
.upToNextMajor(from: "1.0.0")
)
],
settings: nil,
targets: [
Target(
name: projectName,
platform: .iOS,
product: .app,
bundleId: "\(orginazationIden).\(projectName)",
deploymentTarget: .iOS(targetVersion: "15.0", devices: [.iphone, .ipad]),
infoPlist: .file(path: Path("\(projectName)/Support/Info.plist")),
sources: ["\(projectName)/Sources/**"],
resources: ["\(projectName)/Resources/**"],
dependencies: [
.package(product: "IQKeyboardManagerSwift"),
.package(product: "SnapKit"),
.package(product: "Moya"),
.package(product: "RxKeyboard"),
.package(product: "Then"),
.package(product: "AEOTPTextField")
]
)
],
fileHeaderTemplate: nil,
additionalFiles: [],
resourceSynthesizers: []
)