diff --git a/app/.gitignore b/app/.gitignore index f349ffa..372af34 100644 --- a/app/.gitignore +++ b/app/.gitignore @@ -1,2 +1,3 @@ *.xcodeproj/ -*.xcworkspace/ \ No newline at end of file +*.xcworkspace/ +Podfile.lock \ No newline at end of file diff --git a/app/ios/Podfile b/app/ios/Podfile index c04b11f..46c6a8f 100644 --- a/app/ios/Podfile +++ b/app/ios/Podfile @@ -2,5 +2,5 @@ target :App do use_frameworks! - pod 'Wendy', :git => 'https://github.com/levibostian/Wendy-iOS.git', :branch => 'latest' + pod 'Wendy', :path => '../../' end \ No newline at end of file diff --git a/app/ios/Source/WendyTaskRunner.swift b/app/ios/Source/WendyTaskRunner.swift index ec969ca..79b2a59 100644 --- a/app/ios/Source/WendyTaskRunner.swift +++ b/app/ios/Source/WendyTaskRunner.swift @@ -1,7 +1,7 @@ import Foundation import Wendy -public class MyWendyTaskRunner: WendyTaskRunnerConcurrency { +public class MyWendyTaskRunner: WendyTaskRunner { public func runTask(tag: String, data: Data?) async throws { // Sleep for 2 seconds to simulate a network request try await Task.sleep(nanoseconds: 500000000) diff --git a/app/ios/project-spm.yml b/app/ios/project-spm.yml index 5ef1601..8382e1f 100644 --- a/app/ios/project-spm.yml +++ b/app/ios/project-spm.yml @@ -3,8 +3,8 @@ include: packages: Wendy: - url: https://github.com/levibostian/Wendy-iOS.git - branch: latest # To verify that the latest changes are always compilable. Dont lock to a specific version. + url: https://github.com/levibostian/Wendy-iOS.git + path: ../../ targets: App: dependencies: