From 2acee33c8e209b4e8318d2fe4980eddb12b4eb30 Mon Sep 17 00:00:00 2001 From: Andi Date: Fri, 27 Oct 2023 11:38:52 -0700 Subject: [PATCH] Update Signing (#38) # *Name of the PR* ## :recycle: Current situation & Problem *Describe the current situation (if possible, with an exemplary (or real) code snippet and/or where this is used)* *Please link any open issue that is addressed with this PR* ## :bulb: Proposed solution *Describe the solution and how this affects the project and internal structure* ## :gear: Release Notes *Add a summary of the feature and possible migration guides if this is a breaking change so this section can be added to the release notes.* *Include code snippets that provide examples of the feature implemented if it appends or changes the public interface.* ## :heavy_plus_sign: Additional Information *Provide some additional information if possible* ### Related PRs *Reference the related PRs* ### Testing *Are there tests included? If yes, which situations are tested, and which corner cases are missing?* ### Reviewer Nudging *Where should the reviewer start? Where is a good entry point?* ### Code of Conduct & Contributing Guidelines By submitting creating this pull request, you agree to follow our [Code of Conduct](https://github.com/StanfordBDHG/.github/blob/main/CODE_OF_CONDUCT.md) and [Contributing Guidelines](https://github.com/StanfordBDHG/.github/blob/main/CONTRIBUTING.md): - [ ] I agree to follow the [Code of Conduct](https://github.com/StanfordBDHG/.github/blob/main/CODE_OF_CONDUCT.md) and [Contributing Guidelines](https://github.com/StanfordBDHG/.github/blob/main/CONTRIBUTING.md). Co-authored-by: Paul Schmiedmayer --- NAMS.xcodeproj/project.pbxproj | 7 ++----- NAMS/Supporting Files/NAMS.entitlements | 10 ++++------ fastlane/Fastfile | 2 +- 3 files changed, 7 insertions(+), 12 deletions(-) diff --git a/NAMS.xcodeproj/project.pbxproj b/NAMS.xcodeproj/project.pbxproj index 1964159..1ca4d77 100644 --- a/NAMS.xcodeproj/project.pbxproj +++ b/NAMS.xcodeproj/project.pbxproj @@ -118,7 +118,6 @@ A926D7AF2AB7A552000C4C2F /* SpeziMockWebService in Frameworks */ = {isa = PBXBuildFile; productRef = A926D77C2AB7A552000C4C2F /* SpeziMockWebService */; }; A926D7B02AB7A552000C4C2F /* Spezi in Frameworks */ = {isa = PBXBuildFile; productRef = A926D7652AB7A552000C4C2F /* Spezi */; }; A926D7B12AB7A552000C4C2F /* SpeziViews in Frameworks */ = {isa = PBXBuildFile; productRef = A926D77A2AB7A552000C4C2F /* SpeziViews */; }; - A926D7B22AB7A552000C4C2F /* SpeziScheduler in Frameworks */ = {isa = PBXBuildFile; productRef = A926D7752AB7A552000C4C2F /* SpeziScheduler */; }; A926D7B32AB7A552000C4C2F /* SpeziFHIR in Frameworks */ = {isa = PBXBuildFile; productRef = A926D76B2AB7A552000C4C2F /* SpeziFHIR */; }; A926D7B42AB7A552000C4C2F /* SpeziOnboarding in Frameworks */ = {isa = PBXBuildFile; productRef = A926D7712AB7A552000C4C2F /* SpeziOnboarding */; }; A926D7B52AB7A552000C4C2F /* SpeziFirestore in Frameworks */ = {isa = PBXBuildFile; productRef = A926D7702AB7A552000C4C2F /* SpeziFirestore */; }; @@ -405,7 +404,6 @@ A926D7AF2AB7A552000C4C2F /* SpeziMockWebService in Frameworks */, A926D7B02AB7A552000C4C2F /* Spezi in Frameworks */, A926D7B12AB7A552000C4C2F /* SpeziViews in Frameworks */, - A926D7B22AB7A552000C4C2F /* SpeziScheduler in Frameworks */, A926D7B32AB7A552000C4C2F /* SpeziFHIR in Frameworks */, A926D7B42AB7A552000C4C2F /* SpeziOnboarding in Frameworks */, A926D7B52AB7A552000C4C2F /* SpeziFirestore in Frameworks */, @@ -844,7 +842,6 @@ A926D7702AB7A552000C4C2F /* SpeziFirestore */, A926D7712AB7A552000C4C2F /* SpeziOnboarding */, A926D7732AB7A552000C4C2F /* SpeziQuestionnaire */, - A926D7752AB7A552000C4C2F /* SpeziScheduler */, A926D7772AB7A552000C4C2F /* SpeziLocalStorage */, A926D7792AB7A552000C4C2F /* SpeziSecureStorage */, A926D77A2AB7A552000C4C2F /* SpeziViews */, @@ -1437,7 +1434,7 @@ PRODUCT_BUNDLE_IDENTIFIER = edu.stanford.bdhg.nams; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Neurodevelopment Assessment and Monitoring System"; + "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Stanford BDHG NeuroNest"; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; @@ -1635,7 +1632,7 @@ PRODUCT_BUNDLE_IDENTIFIER = edu.stanford.bdhg.nams; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Neurodevelopment Assessment and Monitoring System"; + "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Stanford BDHG NeuroNest"; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; diff --git a/NAMS/Supporting Files/NAMS.entitlements b/NAMS/Supporting Files/NAMS.entitlements index dab226c..a812db5 100644 --- a/NAMS/Supporting Files/NAMS.entitlements +++ b/NAMS/Supporting Files/NAMS.entitlements @@ -2,11 +2,9 @@ - com.apple.developer.healthkit - - com.apple.developer.healthkit.access - - com.apple.developer.healthkit.background-delivery - + com.apple.developer.applesignin + + Default + diff --git a/fastlane/Fastfile b/fastlane/Fastfile index abb1624..20b6a2c 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -55,7 +55,7 @@ platform :ios do signingStyle: "manual", signingCertificate: "Apple Distribution: Paul Schmiedmayer (637867499T)", provisioningProfiles: { - "edu.stanford.bdhg.nams" => "Neurodevelopment Assessment and Monitoring System" + "edu.stanford.bdhg.nams" => "Stanford BDHG NeuroNest" } } )