2017-07-04 20:15:28 +03:00
|
|
|
source 'https://github.com/CocoaPods/Specs.git'
|
2017-12-04 20:54:34 +03:00
|
|
|
platform :ios, '10.0'
|
2017-11-20 19:24:26 +03:00
|
|
|
|
2020-10-14 19:18:25 +03:00
|
|
|
target "NextcloudTalk" do
|
2018-04-26 15:10:41 +03:00
|
|
|
pod 'AFNetworking', "3.1.0"
|
2017-09-07 15:04:51 +03:00
|
|
|
pod 'DateTools'
|
2018-04-26 15:10:41 +03:00
|
|
|
pod 'GoogleWebRTC', "1.1.20266"
|
2018-03-02 15:08:56 +03:00
|
|
|
pod 'JDStatusBarNotification'
|
2018-09-12 17:03:07 +03:00
|
|
|
pod 'SocketRocket'
|
2018-12-14 14:51:50 +03:00
|
|
|
pod 'DBImageColorPicker'
|
2019-12-06 13:40:58 +03:00
|
|
|
pod 'UICKeyChainStore'
|
2020-11-29 02:50:15 +03:00
|
|
|
pod 'Realm', '10.1.4'
|
2019-12-06 13:40:58 +03:00
|
|
|
pod "AFViewShaker", "~> 0.0.5"
|
2019-12-02 16:17:46 +03:00
|
|
|
pod 'BKPasscodeView', '~> 0.1.2'
|
2020-04-29 17:24:05 +03:00
|
|
|
pod 'MaterialComponents/ActivityIndicator'
|
2020-05-14 19:35:37 +03:00
|
|
|
pod 'Toast', '~> 4.0.0'
|
2020-05-22 18:23:23 +03:00
|
|
|
pod "PulsingHalo"
|
2020-09-04 13:38:04 +03:00
|
|
|
pod 'MBProgressHUD', '~> 1.2.0'
|
2021-01-03 22:32:53 +03:00
|
|
|
pod 'TOCropViewController', '~> 2.6.0'
|
2017-07-04 20:15:28 +03:00
|
|
|
end
|
2017-11-20 19:24:26 +03:00
|
|
|
|
2020-06-24 19:11:02 +03:00
|
|
|
target "NotificationServiceExtension" do
|
|
|
|
pod 'AFNetworking', "3.1.0"
|
|
|
|
pod 'DateTools'
|
|
|
|
pod 'GoogleWebRTC', "1.1.20266"
|
|
|
|
pod 'JDStatusBarNotification'
|
|
|
|
pod 'SocketRocket'
|
|
|
|
pod 'DBImageColorPicker'
|
|
|
|
pod 'UICKeyChainStore'
|
2020-11-29 02:50:15 +03:00
|
|
|
pod 'Realm', '10.1.4'
|
2020-06-24 19:11:02 +03:00
|
|
|
pod "AFViewShaker", "~> 0.0.5"
|
|
|
|
pod 'BKPasscodeView', '~> 0.1.2'
|
|
|
|
pod 'MaterialComponents/ActivityIndicator'
|
|
|
|
pod 'Toast', '~> 4.0.0'
|
|
|
|
pod "PulsingHalo"
|
2020-09-04 13:38:04 +03:00
|
|
|
pod 'MBProgressHUD', '~> 1.2.0'
|
2021-01-03 22:32:53 +03:00
|
|
|
pod 'TOCropViewController', '~> 2.6.0'
|
2020-06-24 19:11:02 +03:00
|
|
|
end
|
|
|
|
|
2020-07-21 18:53:17 +03:00
|
|
|
target "ShareExtension" do
|
|
|
|
pod 'AFNetworking', "3.1.0"
|
|
|
|
pod 'DateTools'
|
|
|
|
pod 'GoogleWebRTC', "1.1.20266"
|
|
|
|
pod 'JDStatusBarNotification'
|
|
|
|
pod 'SocketRocket'
|
|
|
|
pod 'DBImageColorPicker'
|
|
|
|
pod 'UICKeyChainStore'
|
2020-11-29 02:50:15 +03:00
|
|
|
pod 'Realm', '10.1.4'
|
2020-07-21 18:53:17 +03:00
|
|
|
pod "AFViewShaker", "~> 0.0.5"
|
|
|
|
pod 'BKPasscodeView', '~> 0.1.2'
|
|
|
|
pod 'MaterialComponents/ActivityIndicator'
|
|
|
|
pod 'Toast', '~> 4.0.0'
|
|
|
|
pod "PulsingHalo"
|
2020-09-04 13:38:04 +03:00
|
|
|
pod 'MBProgressHUD', '~> 1.2.0'
|
2021-01-03 22:32:53 +03:00
|
|
|
pod 'TOCropViewController', '~> 2.6.0'
|
2020-07-21 18:53:17 +03:00
|
|
|
end
|
|
|
|
|
2020-06-24 19:11:02 +03:00
|
|
|
post_install do |installer|
|
|
|
|
installer.pods_project.targets.each do |target|
|
|
|
|
target.build_configurations.each do |config|
|
|
|
|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|