From a30d0f16be678dbe6ab6ad2bb6a87c4fffef8f68 Mon Sep 17 00:00:00 2001 From: anushkasankaran <55302555+anushkasankaran@users.noreply.github.com> Date: Mon, 26 Aug 2024 13:40:41 -0500 Subject: [PATCH 1/3] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8795e2ac..3b6f74f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,4 +30,4 @@ jobs: API_KEY="${{ secrets.API_KEY }}" sed -i '' -e "s/placeholder/$API_KEY/" HackIllinois/GoogleService-Info.plist - name: Build - run: xcodebuild clean build -project HackIllinois.xcodeproj -scheme HackIllinois -destination "platform=iOS Simulator,name=iPhone 11" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO ARCHS="x86_64" -quiet + run: xcodebuild clean build -project HackIllinois.xcodeproj -scheme HackIllinois -destination "platform=iOS Simulator,name=iPhone 11" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO ARCHS="ARCHS_STANDARD" -quiet From 645b0ed439d8eea2a41f00cabac28684f546fed5 Mon Sep 17 00:00:00 2001 From: anushkasankaran <55302555+anushkasankaran@users.noreply.github.com> Date: Wed, 4 Sep 2024 20:33:49 -0500 Subject: [PATCH 2/3] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b6f74f8..0c45da0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,4 +30,4 @@ jobs: API_KEY="${{ secrets.API_KEY }}" sed -i '' -e "s/placeholder/$API_KEY/" HackIllinois/GoogleService-Info.plist - name: Build - run: xcodebuild clean build -project HackIllinois.xcodeproj -scheme HackIllinois -destination "platform=iOS Simulator,name=iPhone 11" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO ARCHS="ARCHS_STANDARD" -quiet + run: xcodebuild clean build -project HackIllinois.xcodeproj -scheme HackIllinois -destination "platform=iOS Simulator,name=iPhone 11" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO ARCHS="arm64" -quiet From 5dd079f76bc3c801caa28e6489ca4a28bc8ad5eb Mon Sep 17 00:00:00 2001 From: anushkasankaran Date: Wed, 4 Sep 2024 20:42:42 -0500 Subject: [PATCH 3/3] Print statement change --- HackIllinois/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HackIllinois/AppDelegate.swift b/HackIllinois/AppDelegate.swift index 67e1d519..27daaa19 100644 --- a/HackIllinois/AppDelegate.swift +++ b/HackIllinois/AppDelegate.swift @@ -53,7 +53,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, MessagingDelegate, UNUser func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool { // Handle the URL with your custom scheme - print("This is our url" + url.description) + print("This is our url: " + url.description) if url.scheme == "hackillinois" { // Extract and process the data from the URL, e.g., JWT token // Perform the necessary actions based on the authentication result