Antidote/Podfile

33 lines
932 B
Ruby

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
# ignore all warnings from all pods
inhibit_all_warnings!
def common_pods
pod 'objcTox', :path => 'local_pod_repo/objcTox/'
pod "cmp", :path => 'local_pod_repo/cmp'
pod "toxcore", :path => 'local_pod_repo/toxcore'
pod 'UITextView+Placeholder', '~> 1.4.0'
pod 'SDCAlertView', '~> 12.0.3'
pod 'LNNotificationsUI', :git => 'https://github.com/LeoNatan/LNNotificationsUI.git', :commit => '3f75043fc6e77b4180b76cb6cfff4faa506ab9fc'
pod 'JGProgressHUD', '~> 2.2.0'
pod 'SnapKit', '~> 5.6.0' # Update to 5.7.1 requires iOS 12.0
pod 'Yaml', '~> 3.4.4'
pod 'Mute', '~> 0.6.1' # To be used for changing tax status to busy when mute switch is toggled on
end
target :Antidote do
common_pods
end
target :AntidoteTests do
common_pods
pod 'FBSnapshotTestCase/Core'
end
target :ScreenshotsUITests do
common_pods
end