Skip to content

Commit

Permalink
[Setting] #40 Capabilites에 push notification / background mode - remo…
Browse files Browse the repository at this point in the history
…te notification 추가
  • Loading branch information
heydoy committed Feb 26, 2023
1 parent 3e1cbfd commit 82b179f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions wowmate.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@
A2446CCD29992FF9008EBED6 /* SearchManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = SearchManager.swift; path = wowmate/Scenes/Auth/SearchManager.swift; sourceTree = SOURCE_ROOT; };
A24FB96D2980370D003FBD0C /* Post.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Post.swift; sourceTree = "<group>"; };
A2B969D429AB572A006119B1 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
A2B969DD29AB5D4F006119B1 /* wowmate.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = wowmate.entitlements; sourceTree = "<group>"; };
A2D08E4B296A9B58008DD3FA /* User.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = User.swift; sourceTree = "<group>"; };
A2D28F4329852B1B00A7D4EC /* JoinVC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JoinVC.swift; sourceTree = "<group>"; };
A2D28F4429852B1B00A7D4EC /* JoinViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JoinViewController.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -268,6 +269,7 @@
A2E2A8DE2969C7310055B5D2 /* wowmate */ = {
isa = PBXGroup;
children = (
A2B969DD29AB5D4F006119B1 /* wowmate.entitlements */,
A2E2A8F32969C73B0055B5D2 /* App */,
A2E2A8F42969C83E0055B5D2 /* Global */,
A2E2A8ED2969C7330055B5D2 /* Info.plist */,
Expand Down Expand Up @@ -806,6 +808,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = wowmate/wowmate.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = F7B353LPM3;
Expand Down Expand Up @@ -841,6 +844,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = wowmate/wowmate.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = F7B353LPM3;
Expand Down
4 changes: 4 additions & 0 deletions wowmate/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,9 @@
</array>
</dict>
</dict>
<key>UIBackgroundModes</key>
<array>
<string>remote-notification</string>
</array>
</dict>
</plist>
8 changes: 8 additions & 0 deletions wowmate/wowmate.entitlements
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?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>aps-environment</key>
<string>development</string>
</dict>
</plist>

0 comments on commit 82b179f

Please sign in to comment.