I have an app (let\'s call it MyApp) written in Swift with the following targets :
MyApp : the main targetMyAppKit : a targ
This is a swift-3.0 project's profile example.
platform :ios, '8.0'
def import_public_pods
pod 'SwiftyJSON'
end
target 'Demo' do
use_frameworks!
# Pods for Demo
import_public_pods
pod 'Fabric'
pod 'Crashlytics'
target 'DemoTests' do
inherit! :search_paths
# Pods for testing
end
target 'DemoUITests' do
inherit! :search_paths
# Pods for testing
end
end
target 'DemoKit' do
use_frameworks!
# Pods for DemoKit
import_public_pods
pod 'RealmSwift'
target 'DemoKitTests' do
inherit! :search_paths
# Pods for testing
end
end