Skip to content

Commit

Permalink
fix for package manager
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfill-gen committed Feb 5, 2022
1 parent 186e877 commit 6e210d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "PandaSDK",
dependencies: ["NVActivityIndicatorView"]
dependencies: [
.product(name: "NVActivityIndicatorViewExtended", package: "NVActivityIndicatorView")
]
)
]
)
2 changes: 1 addition & 1 deletion Sources/PandaSDK/Views/WebViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Foundation
import UIKit
import Foundation
import WebKit
import NVActivityIndicatorView
import NVActivityIndicatorViewExtended

final class WebViewController: UIViewController, WKScriptMessageHandler {

Expand Down

0 comments on commit 6e210d1

Please sign in to comment.