Veloria/Veloria/AppDelegate/AppDelegate+Thirdparty.swift
2025-06-06 17:50:28 +08:00

26 lines
740 B
Swift

//
// AppDelegate+Thirdparty.swift
// Veloria
//
// Created by on 2025/6/4.
//
import UIKit
import FacebookCore
import AdjustSdk
extension AppDelegate {
func registThirdparty(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) {
//facebook
ApplicationDelegate.shared.application(application, didFinishLaunchingWithOptions: launchOptions)
//
MJRefreshConfig.default.languageCode = VPLocalizedManager.shared.mjLocalizedKey
//Adjust
let config = ADJConfig(appToken: "jmtc740fki68", environment: ADJEnvironmentProduction)
Adjust.initSdk(config)
}
}