Skip to content

Commit

Permalink
Merge pull request #589 from HackIllinois/anushka/dummy-branch
Browse files Browse the repository at this point in the history
Fix build error
  • Loading branch information
anushkasankaran authored Sep 12, 2024
2 parents 550577e + 4a239fc commit 744a040
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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="arm64" -quiet
2 changes: 1 addition & 1 deletion HackIllinois/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 744a040

Please sign in to comment.