26 lines
740 B
Swift
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)
|
|
}
|
|
}
|