mirror of
https://github.com/stoatchat/for-ios.git
synced 2026-07-18 16:04:32 -04:00
18 lines
335 B
Swift
18 lines
335 B
Swift
//
|
|
// Bundle.swift
|
|
// Revolt
|
|
//
|
|
// Created by Angelo on 19/06/2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
extension Bundle {
|
|
var releaseVersionNumber: String? {
|
|
return infoDictionary?["CFBundleShortVersionString"] as? String
|
|
}
|
|
var buildVersionNumber: String? {
|
|
return infoDictionary?["CFBundleVersion"] as? String
|
|
}
|
|
}
|