Add missing import.

This commit is contained in:
Brent Simmons 2024-05-06 21:37:09 -07:00
parent 18acf5919c
commit a80acbacf1
2 changed files with 1 additions and 25 deletions

View File

@ -7,6 +7,7 @@
//
import Foundation
import CoreGraphics
public extension Array {

View File

@ -1,25 +0,0 @@
//
// Bundle-Extensions.swift
// NetNewsWire-iOS
//
// Created by Maurice Parker on 4/26/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import Foundation
extension Bundle {
var appName: String {
return infoDictionary?["CFBundleName"] as! String
}
var versionNumber: String {
return infoDictionary?["CFBundleShortVersionString"] as! String
}
var buildNumber: String {
return infoDictionary?["CFBundleVersion"] as! String
}
}