-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
66 lines (54 loc) · 1.81 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
project 'Notifire'
platform :ios, '11.0'
use_frameworks!
install! 'cocoapods', :deterministic_uuids => false
# Turn on to disable all warnings from Pods
inhibit_all_warnings!
abstract_target 'Abst' do
# Pods for Notifire
pod 'KeychainAccess', '4.2.0'
pod 'GoogleSignIn', :inhibit_warnings => true
target 'Notifire' do
pod 'Starscream', '~> 4.0.0'
pod 'SkeletonView', '~> 1.9'
pod 'CropViewController', '~> 2.5.5'
pod 'SDWebImage', '~> 5.10.0'
pod 'Sentry', :git => 'https://github.com/getsentry/sentry-cocoa.git', :tag => '6.0.9'
pod 'TrustKit'
end
target 'Notifire Mock' do
pod 'Starscream', '~> 4.0.0'
pod 'SkeletonView', '~> 1.9'
pod 'CropViewController', '~> 2.5.5'
pod 'SDWebImage', '~> 5.10.0'
pod 'Sentry', :git => 'https://github.com/getsentry/sentry-cocoa.git', :tag => '6.0.9'
pod 'TrustKit'
end
target 'NotifireUITests' do
platform :ios, '11.0'
inherit! :complete
end
#target 'NotifireScreenshots' do
#end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# Removes the "Update to recommended settings" warning from Xcode
# https://github.com/CocoaPods/CocoaPods/issues/8242
config.build_settings.delete('ARCHS')
# Removes the "Linking against dylib which is not safe to use" warning
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = "NO"
# https://stackoverflow.com/questions/54704207/the-ios-simulator-deployment-targets-is-set-to-7-0-but-the-range-of-supported-d
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end
end
target 'NotificationServiceExtension' do
use_frameworks!
platform :ios, '11.0'
inherit! :none
end
target 'NotifireTests' do
inherit! :complete
end