Skip to content

Commit

Permalink
Hopefully fixes "Missing Push Notification Entitlement"
Browse files Browse the repository at this point in the history
  • Loading branch information
ilteen committed Oct 22, 2024
1 parent 794fe4f commit d0bd34b
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions open_earable/ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>LSMinimumSystemVersion</key>
<string>12.0.0</string>
<key>io.flutter.embedded_views_preview</key>
<true/>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>CFBundleDevelopmentRegion</key>
Expand All @@ -32,6 +28,8 @@
<false/>
<key>LSApplicationCategoryType</key>
<string>aps-environment</string>
<key>LSMinimumSystemVersion</key>
<string>12.0.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSBluetoothAlwaysUsageDescription</key>
Expand All @@ -40,6 +38,12 @@
<string>This app uses bluetooth to connect to earable devices</string>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
<key>UIBackgroundModes</key>
<array>
<string>fetch</string>
<string>remote-notification</string>
<string>processing</string>
</array>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
Expand All @@ -61,5 +65,7 @@
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>io.flutter.embedded_views_preview</key>
<true/>
</dict>
</plist>

0 comments on commit d0bd34b

Please sign in to comment.