Sportradar Mobile SDK helps you keep your audience up to date with match results, events and statistics for sports worldwide. They can be the first to know the score by viewing real-time in-app score and event display, or receive the fastest push notifications on the market.
- Add this package to your project using Swift Package Manager:
 https://github.com/sportradar/MobileSDK-SPM.git- 
Import SRSDK where needed 
- 
Initialize SRSDK: 
import SRSDK
class AppDelegate: UIResponder, UIApplicationDelegate {
    var window: UIWindow?
    var sdk: SRSDK?
    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    // Init SDK
    sdk = SRSDK(config: SRSDKConfig(appId: {insert your api key here})) { (response) in
        switch response {
        case .onSuccess(_):
            // TODO: handle init success
            break
        case .onFailure:
            // TODO: handle init failed
            break
        }
    }
    return true
    }
}For support and documentation, visit Sportradar Mobile SDK page.