diff --git a/NativeAppTemplate.xcodeproj/project.pbxproj b/NativeAppTemplate.xcodeproj/project.pbxproj index c76b584..56579ab 100644 --- a/NativeAppTemplate.xcodeproj/project.pbxproj +++ b/NativeAppTemplate.xcodeproj/project.pbxproj @@ -237,7 +237,6 @@ 0172052E25AC41A7008FD63B /* SessionRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SessionRequest.swift; sourceTree = ""; }; 017278062D7D4F5800CE424F /* OnboardingRepository.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OnboardingRepository.swift; sourceTree = ""; }; 017278082D7D4F7400CE424F /* Onboarding.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Onboarding.swift; sourceTree = ""; }; - 0172782B2D7D575900CE424F /* NativeAppTemplate.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = NativeAppTemplate.entitlements; sourceTree = ""; }; 0172785C2D7D83E700CE424F /* ItemTag.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ItemTag.swift; sourceTree = ""; }; 0172785F2D7D83E700CE424F /* ItemTagState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ItemTagState.swift; sourceTree = ""; }; 0172786C2D7D87D000CE424F /* Date+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Date+Extensions.swift"; sourceTree = ""; }; @@ -384,7 +383,6 @@ 017203A225A96F7A008FD63B /* Constants.swift */, 01BE4F1C29CA6F8C002008BE /* TimeZoneData.swift */, 011F6DF9259EF16600BED22E /* Info.plist */, - 0172782B2D7D575900CE424F /* NativeAppTemplate.entitlements */, 015C78042B72DA2C00B6523C /* PrivacyInfo.xcprivacy */, A2B3C4D50000000A /* Common */, 0172049125AA8449008FD63B /* Data */, @@ -1216,7 +1214,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = ""; BUNDLE_ID_SUFFIX = .dev; - CODE_SIGN_ENTITLEMENTS = NativeAppTemplate/NativeAppTemplate.entitlements; + CODE_SIGN_ENTITLEMENTS = ""; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 9; @@ -1252,7 +1250,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = ""; BUNDLE_ID_SUFFIX = ""; - CODE_SIGN_ENTITLEMENTS = NativeAppTemplate/NativeAppTemplate.entitlements; + CODE_SIGN_ENTITLEMENTS = ""; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 9; @@ -1352,7 +1350,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = ""; BUNDLE_ID_SUFFIX = .beta; - CODE_SIGN_ENTITLEMENTS = NativeAppTemplate/NativeAppTemplate.entitlements; + CODE_SIGN_ENTITLEMENTS = ""; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 9; DEVELOPMENT_ASSET_PATHS = "\"NativeAppTemplate/Preview Content\""; diff --git a/NativeAppTemplate/NativeAppTemplate.entitlements b/NativeAppTemplate/NativeAppTemplate.entitlements deleted file mode 100644 index 5140fac..0000000 --- a/NativeAppTemplate/NativeAppTemplate.entitlements +++ /dev/null @@ -1,10 +0,0 @@ - - - - - com.apple.developer.associated-domains - - applinks:api.nativeapptemplate.com - - - diff --git a/NativeAppTemplate/UI/Settings/SettingsView.swift b/NativeAppTemplate/UI/Settings/SettingsView.swift index 7274581..12222a6 100644 --- a/NativeAppTemplate/UI/Settings/SettingsView.swift +++ b/NativeAppTemplate/UI/Settings/SettingsView.swift @@ -53,10 +53,6 @@ struct SettingsView: View { .listRowBackground(Color.cardBackground.opacity(0.7)) Section(header: Text(verbatim: "Support")) { - Link(destination: URL(string: String.howToUseUrl)!) { - Label(String.howToUse, systemImage: "info") - } - Link(destination: URL(string: String.faqsUrl)!) { Label(String.faqs, systemImage: "questionmark") }