This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Config function that returns optimove config | |
static func optimoveConfig() -> (tenantToken: String, configName: String) { | |
let configName: String | |
switch BUILD_ENVIRONMENT { | |
case .store: | |
configName = "dollarshaveclub.ios.1.0.0" | |
default: | |
configName = "dollarshaveclub.ios.1.0.0-stg" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'Facebook-iOS-SDK' | |
s.version = '3.8.0' | |
s.platform = :ios | |
s.license = 'Apache License, Version 2.0' | |
s.summary = 'The iOS SDK provides Facebook Platform support for iOS apps.' | |
s.description = 'The Facebook SDK for iOS enables you to access the Facebook Platform APIs including the Graph API, FQL, and Dialogs.' | |
s.homepage = 'http://developers.facebook.com/docs/reference/iossdk' | |
s.author = 'Facebook' | |
s.source = { :git => 'https://github.com/PerishableDave/facebook-ios-sdk.git'} |