|
8 | 8 |
|
9 | 9 | import Foundation
|
10 | 10 |
|
| 11 | +private class BundleToken {} |
| 12 | + |
11 | 13 | extension Bundle {
|
| 14 | + // This is copied method from SPM generated Bundle.module for CocoaPods support |
12 | 15 | static func sm_frameworkBundle() -> Bundle {
|
13 |
| - let bundle = Bundle(for: MessageView.self) |
14 |
| - // Check for Swift Package Manager bundle name |
15 |
| - if let path = bundle.path(forResource: "SwiftMessages_SwiftMessages", ofType: "bundle") { |
16 |
| - return Bundle(path: path)! |
17 |
| - } |
18 |
| - // Check for CocoaPods or Carthage bundle name |
19 |
| - else if let path = bundle.path(forResource: "SwiftMessages", ofType: "bundle") { |
20 |
| - return Bundle(path: path)! |
21 |
| - } |
22 |
| - // Just return the app bundle |
23 |
| - else { |
24 |
| - return bundle |
| 16 | + |
| 17 | + let candidates = [ |
| 18 | + // Bundle should be present here when the package is linked into an App. |
| 19 | + Bundle.main.resourceURL, |
| 20 | + |
| 21 | + // Bundle should be present here when the package is linked into a framework. |
| 22 | + Bundle(for: BundleToken.self).resourceURL, |
| 23 | + |
| 24 | + // For command-line tools. |
| 25 | + Bundle.main.bundleURL, |
| 26 | + ] |
| 27 | + |
| 28 | + let bundleNames = [ |
| 29 | + // For Swift Package Manager |
| 30 | + "SwiftMessages_SwiftMessages", |
| 31 | + |
| 32 | + // For Carthage |
| 33 | + "SwiftMessages", |
| 34 | + ] |
| 35 | + |
| 36 | + for bundleName in bundleNames { |
| 37 | + for candidate in candidates { |
| 38 | + let bundlePath = candidate?.appendingPathComponent(bundleName + ".bundle") |
| 39 | + if let bundle = bundlePath.flatMap(Bundle.init(url:)) { |
| 40 | + return bundle |
| 41 | + } |
| 42 | + } |
25 | 43 | }
|
| 44 | + |
| 45 | + // Return whatever bundle this code is in as a last resort. |
| 46 | + return Bundle(for: BundleToken.self) |
26 | 47 | }
|
27 | 48 | }
|
0 commit comments