-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPodfile
44 lines (41 loc) · 1.49 KB
/
Podfile
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
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
target 'ImageClassification' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for ImageClassification
pod 'TensorFlowLiteSwift'
pod 'Firebase'
pod 'Firebase/Database'
# Add the Firebase pod for Google Analytics
pod 'Firebase/Analytics'
pod 'Firebase/Auth'
pod 'Firebase/Core'
pod 'Firebase/Firestore'
pod 'FirebaseFirestoreSwift'
# Add the pod for Firebase Cloud Messaging
pod 'Firebase/Messaging'
pod 'SwiftLint'
pod 'SwiftMonkeyPaws', '~> 2.2.0'
pod 'AppleWelcomeScreen'
pod 'YouTubePlayer', :git => 'https://github.com/weakfl/Swift-YouTube-Player.git', :branch => 'use-wkwebview' # replace with original pod after the pull request got merged
# pod 'SwiftVideoRecorder',:git => 'https://github.com/ApplebaumIan/swift-video-recorder.git', :branch => 'master'
pod "SwiftyCam"
pod 'KeychainSwift'
pod 'KMPlaceholderTextView', '~> 1.4.0'
pod 'Zip', '~> 1.1'
end
target 'iASLUITests' do
# pod 'SwiftMonkey', '~> 2.2.0'
end
target 'MonkeyTesting' do
pod 'SwiftMonkey', '~> 2.2.0'
end
# Disable Code Coverage for Pods projects
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CLANG_ENABLE_CODE_COVERAGE'] = 'NO'
end
end
end