Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
300 changes: 0 additions & 300 deletions docs/howto/push-notifications-ios-simulator.md

This file was deleted.

5 changes: 5 additions & 0 deletions ios/.swift-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"indentation": {
"spaces": 2
}
}
10 changes: 10 additions & 0 deletions ios/Flutter/Zulip.xcconfig
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974

// This should match the value in ios/Podfile
// and MinimumOSVersion in ios/Flutter/AppFrameworkInfo.plist.
IPHONEOS_DEPLOYMENT_TARGET=15.0
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's put a comment on this pointing to the Podfile, so if someone sees this they'll also be sure to update the Podfile and the other thing linked from there.


DEVELOPMENT_TEAM=66KHCWMEYB

// This should match the `iosAppGroupIdentifier` variable in
// lib/model/store.dart.
ZULIP_APP_GROUP_IDENTIFIER=group.com.zulip.app
13 changes: 13 additions & 0 deletions ios/NotificationService/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?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>NSExtension</key>
<dict>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.usernotifications.service</string>
<key>NSExtensionPrincipalClass</key>
<string>$(PRODUCT_MODULE_NAME).NotificationService</string>
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ios: Add Notification service app extension target via Xcode

Commit-message nit: I think you mean "NotificationService" or "notification service", not "Notification service"? Depending on whether or not you want to refer to the specific name that appears in the code.

</dict>
</dict>
</plist>
Loading