- Remove neverForLocation flag from BLUETOOTH_SCAN (was blocking beacon detection) - Add Bluetooth state check before scanning with prompt to enable - Add iOS Bluetooth/Location permission descriptions and UIBackgroundModes - Fix exclusive modifier selection (deselect siblings when max=1) - Update cart service point when existing cart found - Add delivery fee support to cart and stripe service 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
72 lines
3 KiB
Text
72 lines
3 KiB
Text
<?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>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Payfrit App</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>payfrit_app</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>
|
|
<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>NSLocationWhenInUseUsageDescription</key>
|
|
<string>Payfrit needs your location to find nearby restaurant tables and beacons.</string>
|
|
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
|
|
<string>Payfrit needs your location to find nearby restaurant tables and beacons.</string>
|
|
<key>NSBluetoothAlwaysUsageDescription</key>
|
|
<string>Payfrit uses Bluetooth to detect table beacons for seamless ordering.</string>
|
|
<key>NSBluetoothPeripheralUsageDescription</key>
|
|
<string>Payfrit uses Bluetooth to detect table beacons for seamless ordering.</string>
|
|
<key>CADisableMinimumFrameDurationOnPhone</key>
|
|
<true/>
|
|
<key>UIApplicationSupportsIndirectInputEvents</key>
|
|
<true/>
|
|
<key>NSBluetoothAlwaysUsageDescription</key>
|
|
<string>Payfrit uses Bluetooth to detect nearby restaurant tables for dine-in ordering.</string>
|
|
<key>NSBluetoothPeripheralUsageDescription</key>
|
|
<string>Payfrit uses Bluetooth to detect nearby restaurant tables for dine-in ordering.</string>
|
|
<key>NSLocationWhenInUseUsageDescription</key>
|
|
<string>Payfrit uses your location to find nearby restaurants and for beacon detection.</string>
|
|
<key>NSLocationAlwaysUsageDescription</key>
|
|
<string>Payfrit uses your location to find nearby restaurants and detect when you're at a table.</string>
|
|
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
|
|
<string>Payfrit uses your location to find nearby restaurants and detect when you're at a table.</string>
|
|
<key>UIBackgroundModes</key>
|
|
<array>
|
|
<string>bluetooth-central</string>
|
|
<string>location</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|