generated from pasin7793/Tuist_Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.swift
42 lines (40 loc) · 891 Bytes
/
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
import ProjectDescription
import ProjectDescriptionHelpers
let projectName = "Glog"
let orginazationIden = "Glog"
let project = Project.executable(
name: projectName,
platform: .iOS,
packages: [
.Then,
.SnapKit,
.Alamofire,
.Moya,
.RxSwift,
.KeychainSwift,
.RxFlow,
.Gifu,
.Kingfisher,
.Markdownosaur,
.MarkupEditor,
.RichTextKit,
.SVGKit
],
product: .app,
deploymentTarget: .iOS(targetVersion: "16.0", devices: [.iphone, .ipad]),
dependencies: [
.SPM.Then,
.SPM.SnapKit,
.SPM.Alamofire,
.SPM.RxMoya,
.SPM.RxSwift,
.SPM.KeychainSwift,
.SPM.RxFlow,
.SPM.Gifu,
.SPM.Kingfisher,
.SPM.Markdownosaur,
.SPM.MarkupEditor,
.SPM.RichTextKit,
.SPM.SVGKit
]
)