2026-01-13 11:36:24 +05:30

118 lines
3.5 KiB
Plaintext

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- ✅ Microphone Permission (REQUIRED for voice/video calls) -->
<key>NSMicrophoneUsageDescription</key>
<string>This app needs access to the microphone for voice and video calls.</string>
<!-- ✅ Camera Permission (Already present) -->
<key>NSCameraUsageDescription</key>
<string>This app requires access to the camera for video calls and live streaming.</string>
<!-- ✅ Photo Library Permission (Already present) -->
<key>NSPhotoLibraryUsageDescription</key>
<string>This app requires access to the photo library.</string>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Onufitness</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>onufitness</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<!-- ✅ Background modes for calls and streaming -->
<key>UIBackgroundModes</key>
<array>
<string>fetch</string>
<string>remote-notification</string>
<string>voip</string>
<string>audio</string>
</array>
<!-- ✅ Supported orientations -->
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
<!-- ✅ Google Sign-In and Custom URL Schemes -->
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>com.googleusercontent.apps.1015952306116-r2ee1e0a6ohchpbeb4q0cpub0gqeda39</string>
</array>
</dict>
<dict>
<key>CFBundleURLName</key>
<string>com.onufitness.dev</string>
<key>CFBundleURLSchemes</key>
<array>
<string>onufitness</string>
</array>
</dict>
</array>
<!-- ✅ Associated Domains for Universal Links -->
<key>AssociatedDomains</key>
<array>
<string>applinks:uat.onufitness.com</string>
</array>
<!-- ✅ Firebase Push Notification Support -->
<key>FirebaseAppDelegateProxyEnabled</key>
<true/>
<!-- ✅ iOS Notification Permission Message -->
<key>NSUserNotificationUsageDescription</key>
<string>This app uses notifications to alert you about updates, messages, and reminders.</string>
<key>UIBackgroundModes</key>
<array>
<string>remote-notification</string>
</array>
<!-- ✅ Network Usage for better call quality -->
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
</dict>
</plist>