As of iOS 13.3.1, apps installed with free developer accounts that contain embedded frameworks fail to launch. To work around this, we now link all dependencies via Cocoapods as static libraries.
11 lines
190 B
Swift
11 lines
190 B
Swift
///
|
|
/// Copyright (c) 2016 Dropbox, Inc. All rights reserved.
|
|
///
|
|
|
|
import Foundation
|
|
|
|
struct Constants {
|
|
static let versionSDK = "5.0.0"
|
|
static let kCSERFKey = "kCSERFKeySwiftSDK"
|
|
}
|