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'
|
2021-02-09 11:12:08 +03:00
|
|
|
pod 'GoogleWebRTC', "1.1.31999"
|
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'
|
2021-02-09 11:12:08 +03:00
|
|
|
pod 'GoogleWebRTC', "1.1.31999"
|
2020-06-24 19:11:02 +03:00
|
|
|
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'
|
2021-02-09 11:12:08 +03:00
|
|
|
pod 'GoogleWebRTC', "1.1.31999"
|
2020-07-21 18:53:17 +03:00
|
|
|
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
|
|
|
|
|
2021-02-19 04:49:26 +03:00
|
|
|
pre_install do |installer|
|
|
|
|
puts 'pre_install begin....'
|
|
|
|
dir_af = File.join(installer.sandbox.pod_dir('AFNetworking'), 'UIKit+AFNetworking')
|
|
|
|
Dir.foreach(dir_af) {|x|
|
|
|
|
real_path = File.join(dir_af, x)
|
|
|
|
if (!File.directory?(real_path) && File.exists?(real_path))
|
|
|
|
if((x.start_with?('UIWebView') || x == 'UIKit+AFNetworking.h'))
|
|
|
|
File.delete(real_path)
|
|
|
|
puts 'delete:'+ x
|
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
puts 'end pre_install.'
|
|
|
|
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
|
|
|
|
|