diff --git a/ExampleProjectAndTests/Pods/Pods.xcodeproj/xcshareddata/xcschemes/RouterService.xcscheme b/ExampleProjectAndTests/Pods/Pods.xcodeproj/xcshareddata/xcschemes/RouterService.xcscheme
new file mode 100644
index 0000000..fb9dd9b
--- /dev/null
+++ b/ExampleProjectAndTests/Pods/Pods.xcodeproj/xcshareddata/xcschemes/RouterService.xcscheme
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/RouterService.podspec b/RouterService.podspec
index 9cf5416..6ce9291 100644
--- a/RouterService.podspec
+++ b/RouterService.podspec
@@ -13,6 +13,6 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '9.0'
s.source_files = 'Sources/RouterService/Sources/**/*'
- s.dependency 'RouterServiceInterface'
+ s.dependency 'RouterServiceInterface', s.version.to_s
end
\ No newline at end of file
diff --git a/Sources/RouterService/Sources/RouterService.swift b/Sources/RouterService/Sources/RouterService.swift
index 272701b..7ff1434 100644
--- a/Sources/RouterService/Sources/RouterService.swift
+++ b/Sources/RouterService/Sources/RouterService.swift
@@ -2,7 +2,7 @@ import Foundation
import RouterServiceInterface
import UIKit
-public final class RouterService: RouterServiceInterface.RouterServiceProtocol, RouterServiceRegistrationProtocol {
+public final class RouterService: RouterServiceProtocol, RouterServiceRegistrationProtocol {
let store: StoreInterface
let failureHandler: () -> Void
@@ -17,7 +17,7 @@ public final class RouterService: RouterServiceInterface.RouterServiceProtocol,
self.failureHandler = failureHandler
register(dependencyFactory: { [unowned self] in
self
- }, forType: RouterServiceInterface.RouterServiceProtocol.self)
+ }, forType: RouterServiceProtocol.self)
}
public func register(