7f1a28ffa7
Move dependencies into Podfile where possible. IASK doesn't wrap properly; just removed it. Fixes to safe area and content insets.
29 lines
608 B
Ruby
29 lines
608 B
Ruby
workspace 'MasterPassword'
|
|
project 'MasterPassword-iOS'
|
|
project 'MasterPassword-macOS'
|
|
|
|
target 'MasterPassword-iOS' do
|
|
project 'MasterPassword-iOS'
|
|
platform :ios, '9.3'
|
|
|
|
use_modular_headers!
|
|
use_frameworks!
|
|
|
|
pod 'Sentry', :git => 'https://github.com/getsentry/sentry-cocoa.git'
|
|
pod 'Countly'
|
|
pod 'UIColor-Utilities'
|
|
pod 'KCOrderedAccessorFix'
|
|
pod 'JRSwizzle'
|
|
end
|
|
|
|
target 'MasterPassword-macOS' do
|
|
project 'MasterPassword-macOS'
|
|
platform :osx, '10.11'
|
|
|
|
use_modular_headers!
|
|
use_frameworks!
|
|
|
|
pod 'Sentry', :git => 'https://github.com/getsentry/sentry-cocoa.git'
|
|
pod 'Countly'
|
|
end
|