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
|
|
|
|
|
2021-02-05 04:53:21 +01:00
|
|
|
# UI
|
|
|
|
pod 'UITextField+Shake', '~> 1.2'
|
2021-06-22 07:41:40 +02:00
|
|
|
pod 'Texture', '~> 3.0.0', :configurations => ['ASDK - Debug', 'ASDK - Release']
|
2021-06-19 12:33:29 +02:00
|
|
|
|
2021-02-05 04:53:21 +01:00
|
|
|
# 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'
|
2021-02-01 11:06:29 +01:00
|
|
|
pod 'Kanna', '~> 5.2.2'
|
2021-05-31 10:42:49 +02:00
|
|
|
|
|
|
|
# DEBUG
|
2021-06-22 07:41:40 +02:00
|
|
|
pod 'FLEX', '~> 4.4.0', :configurations => ['Debug', 'ASDK - Debug']
|
2021-02-05 04:53:21 +01:00
|
|
|
|
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
|
|
|
|
|
2021-05-31 10:42:49 +02:00
|
|
|
end
|
2021-04-27 10:26:59 +02:00
|
|
|
|
2021-05-31 10:42:49 +02:00
|
|
|
target 'NotificationService' do
|
|
|
|
# Comment the next line if you don't want to use dynamic frameworks
|
|
|
|
use_frameworks!
|
|
|
|
end
|
2021-04-27 10:26:59 +02:00
|
|
|
|
2021-05-31 10:42:49 +02:00
|
|
|
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",
|
2021-04-27 10:26:59 +02:00
|
|
|
"notification_endpoint_debug"
|
2021-04-25 06:48:29 +02:00
|
|
|
]
|
|
|
|
}
|