mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-06 16:07:42 +02:00
Merge pull request #5729 from vector-im/steve/5719_lls_build_flag
Add live location sharing build flag
This commit is contained in:
@@ -397,4 +397,17 @@ final class BuildSettings: NSObject {
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
static var liveLocationSharingEnabled: Bool {
|
||||
guard #available(iOS 14, *) else {
|
||||
return false
|
||||
}
|
||||
|
||||
guard self.locationSharingEnabled else {
|
||||
return false
|
||||
}
|
||||
|
||||
// Do not enable live location sharing atm
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user