mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
44 lines
1.4 KiB
Swift
44 lines
1.4 KiB
Swift
/*
|
|
* Copyright (c) 2010-2023 Belledonne Communications SARL.
|
|
*
|
|
* This file is part of linphone
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
// Core Extension provides a set of utilies to manage automatically a LinphoneCore no matter if it is from App or an extension.
|
|
// It is based on a singleton pattern and adds.
|
|
|
|
import UIKit
|
|
import linphonesw
|
|
|
|
struct CoreError: Error {
|
|
let message: String
|
|
init(_ message: String) {
|
|
self.message = message
|
|
}
|
|
public var localizedDescription: String {
|
|
return message
|
|
}
|
|
}
|
|
|
|
extension Core {
|
|
|
|
public static func runsInsideExtension() -> Bool { // Tells wether it is run inside app extension or the main app.
|
|
let bundleUrl: URL = Bundle.main.bundleURL
|
|
let bundlePathExtension: String = bundleUrl.pathExtension
|
|
return bundlePathExtension == "appex"
|
|
}
|
|
|
|
}
|