mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
28 lines
611 B
Swift
28 lines
611 B
Swift
//
|
|
// AppDelegate.swift
|
|
// MeshtasticClient
|
|
//
|
|
// Created by Joshua Pirihi on 16/01/22.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
class MTAppDelegate: NSObject, UIApplicationDelegate {
|
|
|
|
func applicationDidFinishLaunching(_ application: UIApplication) {
|
|
}
|
|
|
|
func application(
|
|
_ application: UIApplication,
|
|
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
|
|
) -> Bool {
|
|
// ...
|
|
return true
|
|
}
|
|
|
|
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
|
|
print("We received a file")
|
|
return true
|
|
}
|
|
}
|