You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-ios/SessionUtilitiesKit/Utilities/Permissions.swift

14 lines
392 B
Swift

// Copyright © 2025 Rangeproof Pty Ltd. All rights reserved.
import AVFAudio
public enum Permissions {
public static var hasMicrophonePermission: Bool {
if #available(iOSApplicationExtension 17.0, *) {
AVAudioApplication.shared.recordPermission == .granted
} else {
AVAudioSession.sharedInstance().recordPermission == .granted
}
}
}