mirror of https://github.com/oxen-io/session-ios
Merge remote-tracking branch 'upstream/dev' into feature/groups-rebuild
# Conflicts: # Session.xcodeproj/project.pbxproj # Session/Calls/CallVC.swift # Session/Calls/WebRTC/WebRTCSession+MessageHandling.swift # Session/Calls/WebRTC/WebRTCSession.swift # Session/Meta/AppDelegate.swift # Session/Utilities/Permissions.swift # SessionMessagingKit/Sending & Receiving/Errors/MessageReceiverError.swift # SessionMessagingKit/Sending & Receiving/MessageReceiver.swift # SessionUtilitiesKit/General/SNUserDefaults.swiftpull/894/head
commit
1db80dfa13
@ -0,0 +1,39 @@
|
||||
// Copyright © 2025 Rangeproof Pty Ltd. All rights reserved.
|
||||
|
||||
import AVFAudio
|
||||
|
||||
public enum Permissions {
|
||||
|
||||
public enum MicrophonePermisson {
|
||||
case denied
|
||||
case granted
|
||||
case undetermined
|
||||
case unknown
|
||||
}
|
||||
|
||||
public static var microphone: MicrophonePermisson {
|
||||
if #available(iOSApplicationExtension 17.0, *) {
|
||||
switch AVAudioApplication.shared.recordPermission {
|
||||
case .undetermined:
|
||||
return .undetermined
|
||||
case .denied:
|
||||
return .denied
|
||||
case .granted:
|
||||
return .granted
|
||||
@unknown default:
|
||||
return .unknown
|
||||
}
|
||||
} else {
|
||||
switch AVAudioSession.sharedInstance().recordPermission {
|
||||
case .undetermined:
|
||||
return .undetermined
|
||||
case .denied:
|
||||
return .denied
|
||||
case .granted:
|
||||
return .granted
|
||||
@unknown default:
|
||||
return .unknown
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue