Kurdtvs-Live-Kurdish-TV-Kur.../Podfile

66 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-01-27 07:58:13 +01:00
platform :ios, '14.0'
2021-01-22 07:27:37 +01:00
target 'Mastodon' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Mastodon
# UI
pod 'UITextField+Shake', '~> 1.2'
# misc
2021-01-27 07:58:13 +01:00
pod 'SwiftGen', '~> 6.4.0'
2021-01-22 07:27:37 +01:00
pod 'DateToolsSwift', '~> 5.0.0'
pod 'Kanna', '~> 5.2.2'
# DEBUG
2021-12-28 09:15:44 +01:00
pod 'FLEX', '~> 4.4.0', :configurations => ['Debug']
2021-01-22 07:27:37 +01:00
target 'MastodonTests' do
inherit! :search_paths
# Pods for testing
end
target 'MastodonUITests' do
# Pods for testing
end
end
target 'NotificationService' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
end
2021-07-19 11:12:45 +02:00
target 'ShareActionExtension' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
end
2021-07-26 14:33:53 +02:00
target 'MastodonIntent' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
end
target 'AppShared' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
2021-01-22 07:27:37 +01:00
end
2021-04-25 06:48:29 +02:00
plugin 'cocoapods-keys', {
:project => "Mastodon",
:keys => [
"notification_endpoint",
"notification_endpoint_debug"
2021-04-25 06:48:29 +02:00
]
2021-08-02 13:42:55 +02:00
}
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
2021-12-28 09:15:44 +01:00
end