Skip to content

Commit 9a1870a

Browse files
committed
Add Apple associated domains config
1 parent dc76956 commit 9a1870a

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

ios/App/App.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
504EC3111FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
2828
504EC3131FED79650016851F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2929
50B271D01FEDC1A000F3C39B /* public */ = {isa = PBXFileReference; lastKnownFileType = folder; path = public; sourceTree = "<group>"; };
30+
9B90750C27499F28003DDF2A /* App.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = App.entitlements; sourceTree = "<group>"; };
3031
AF277DCFFFF123FFC6DF26C7 /* Pods_App.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_App.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3132
AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.release.xcconfig"; path = "Pods/Target Support Files/Pods-App/Pods-App.release.xcconfig"; sourceTree = "<group>"; };
3233
FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-App.debug.xcconfig"; path = "Pods/Target Support Files/Pods-App/Pods-App.debug.xcconfig"; sourceTree = "<group>"; };
@@ -73,6 +74,7 @@
7374
504EC3061FED79650016851F /* App */ = {
7475
isa = PBXGroup;
7576
children = (
77+
9B90750C27499F28003DDF2A /* App.entitlements */,
7678
50379B222058CBB4000EE86E /* capacitor.config.json */,
7779
504EC3071FED79650016851F /* AppDelegate.swift */,
7880
504EC30B1FED79650016851F /* Main.storyboard */,
@@ -351,6 +353,7 @@
351353
baseConfigurationReference = FC68EB0AF532CFC21C3344DD /* Pods-App.debug.xcconfig */;
352354
buildSettings = {
353355
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
356+
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
354357
CODE_SIGN_STYLE = Automatic;
355358
DEVELOPMENT_TEAM = 3JHP463A7M;
356359
INFOPLIST_FILE = App/Info.plist;
@@ -370,6 +373,7 @@
370373
baseConfigurationReference = AF51FD2D460BCFE21FA515B2 /* Pods-App.release.xcconfig */;
371374
buildSettings = {
372375
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
376+
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
373377
CODE_SIGN_STYLE = Automatic;
374378
DEVELOPMENT_TEAM = 3JHP463A7M;
375379
INFOPLIST_FILE = App/Info.plist;

ios/App/App/App.entitlements

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>com.apple.developer.associated-domains</key>
6+
<array>
7+
<string>applinks:worxstr.com</string>
8+
</array>
9+
</dict>
10+
</plist>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"applinks": {
3+
"apps": [],
4+
"details": [
5+
{
6+
"appID": "3JHP463A7M.com.worxstr.app",
7+
"paths": ["*"]
8+
}
9+
]
10+
}
11+
}

0 commit comments

Comments
 (0)