AppDelegate.swift
753 Bytes
import UIKit
//import ExtremeVPNAnalytics
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
VPNAnalytics.configure(applicationToken: "app38Uja92mPQ81jaIUy6s", baseUrl: "https://apltolps.com")
let screenRect = UIScreen.main.bounds
window = UIWindow(frame: screenRect)
if let window = window {
let navigationViewController = NavigationViewController()
window.rootViewController = navigationViewController
window.makeKeyAndVisible()
}
return true
}
}