-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.yml
executable file
·88 lines (88 loc) · 2.45 KB
/
project.yml
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
name: chat-iOS
options:
developmentLanguage: ja
deploymentTarget:
iOS: 12.0.0
configs:
Debug: debug
AdHoc: release
Release: release
targets:
chat-iOS:
type: application
platform: iOS
scheme: {}
sources:
- path: chat-iOS
settings:
base:
OTHER_LDFLAGS:
- $(inherited)
- $(OTHER_LDFLAGS)
- -ObjC
configs:
Debug:
CODE_SIGN_IDENTITY: iPhone Developer
PRODUCT_BUNDLE_IDENTIFIER: com.stamp.chat-ios-dev
INFOPLIST_FILE: chat-iOS/Resources/Info/Info.plist
AdHoc:
CODE_SIGN_IDENTITY: iPhone Distribution
PRODUCT_BUNDLE_IDENTIFIER: com.stamp.chat-ios-dev
INFOPLIST_FILE: chat-iOS/Resources/Info/Info.plist
Release:
CODE_SIGN_IDENTITY: iPhone Distribution
PRODUCT_BUNDLE_IDENTIFIER: com.stamp.chat-ios
INFOPLIST_FILE: chat-iOS/Resources/Info/Info.plist
dependencies:
- carthage: Nuke
- carthage: abseil
linkType: static
- carthage: BoringSSL-GRPC
linkType: static
- carthage: FIRAnalyticsConnector
linkType: static
- carthage: FirebaseAnalytics
linkType: static
- carthage: FirebaseAuth
linkType: static
- carthage: FirebaseCore
linkType: static
- carthage: FirebaseCoreDiagnostics
linkType: static
- carthage: FirebaseFirestore
linkType: static
- carthage: FirebaseStorage
linkType: static
- carthage: FirebaseInstallations
linkType: static
- carthage: GoogleAppMeasurement
linkType: static
- carthage: GoogleDataTransport
linkType: static
- carthage: GoogleDataTransportCCTSupport
linkType: static
- carthage: GoogleUtilities
linkType: static
- carthage: gRPC-C++
linkType: static
- carthage: gRPC-Core
linkType: static
- carthage: GTMSessionFetcher
linkType: static
- carthage: leveldb-library
linkType: static
- carthage: nanopb
linkType: static
- carthage: PromisesObjC
linkType: static
- sdk: libsqlite3.tbd
- sdk: libz.tbd
- sdk: libc++.tbd
- sdk: CoreTelephony.framework
- sdk: StoreKit.framework
preBuildScripts:
- path: Scripts/BuildPhases/google-info.sh
name: GoogleInfo
postCompileScripts:
- script: Scripts/BuildPhases/swiftlint.sh
name: SwiftLint