-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProject.swift
More file actions
88 lines (85 loc) · 2.67 KB
/
Copy pathProject.swift
File metadata and controls
88 lines (85 loc) · 2.67 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import ProjectDescription
let baseSettings: SettingsDictionary = [
"OTHER_LDFLAGS": "$(inherited) -ObjC"
]
let projectSettings = Settings.settings(
base: baseSettings,
configurations: [
.debug(name: "Debug", xcconfig: "Configs/Signing.xcconfig"),
.release(name: "Release", xcconfig: "Configs/Signing.xcconfig")
]
)
let project = Project(
name: "FaceInn",
packages: [
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", .upToNextMajor(from: "10.15.0")),
.package(url: "https://github.com/WenchaoD/FSCalendar", .upToNextMajor(from: "2.8.2")),
.package(url: "https://github.com/onevcat/Kingfisher.git", .upToNextMajor(from: "8.3.2")),
],
targets: [
.target(
name: "FaceInn",
destinations: .iOS,
product: .app,
bundleId: "io.tuist.FaceInn",
infoPlist: .extendingDefault(
with: [
"UIMainStoryboardFile": "",
"UILaunchScreen": [
"UIColorName": "",
"UIImageName": "",
],
"UIUserInterfaceStyle": "Light",
"NSCameraUsageDescription": "얼굴 정보를 등록하려면 카메라 접근이 필요합니다.",
"UIRequiredDeviceCapabilities": [
"arkit"
],
"UIApplicationSceneManifest": [
"UIApplicationSupportsMultipleScenes": false,
"UISceneConfigurations": [
"UIWindowSceneSessionRoleApplication": [
[
"UISceneConfigurationName": "Default Configuration",
"UISceneDelegateClassName": "$(PRODUCT_MODULE_NAME).SceneDelegate"
]
]
]
]
]
),
sources: [
"FaceInn/Sources/**/*.swift",
"FaceInn/Sources/MobileFaceNet.mlmodel"
],
resources: [
"FaceInn/Resources/**",
"FaceInn/GoogleService-Info.plist"
],
dependencies: [
.package(product: "FirebaseAnalytics"),
.package(product: "FirebaseAuth"),
.package(product: "FirebaseFirestore"),
.package(product: "FirebaseStorage"),
.package(product: "FirebaseDatabase"),
.package(product: "FirebaseMessaging"),
.package(product: "FSCalendar"),
.package(product: "Kingfisher"),
.sdk(name: "ARKit", type: .framework),
.sdk(name: "SceneKit", type: .framework),
],
settings: projectSettings
),
.target(
name: "FaceInnTests",
destinations: .iOS,
product: .unitTests,
bundleId: "io.tuist.FaceInnTests",
infoPlist: .default,
sources: ["FaceInn/Tests/**"],
resources: [],
dependencies: [
.target(name: "FaceInn")
]
),
]
)