We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9f1c68e + 38244cd commit fccddb6Copy full SHA for fccddb6
Networking/Networking.xcodeproj/project.pbxproj
@@ -957,7 +957,7 @@
957
inputPaths = (
958
"${SRCROOT}/../Pods/Target Support Files/Pods-NetworkingTests/Pods-NetworkingTests-frameworks.sh",
959
"${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework",
960
- "${BUILT_PRODUCTS_DIR}/CocoaLumberjack-Default-Swift/CocoaLumberjack.framework",
+ "${BUILT_PRODUCTS_DIR}/CocoaLumberjack/CocoaLumberjack.framework",
961
);
962
name = "[CP] Embed Pods Frameworks";
963
outputPaths = (
Networking/Networking/Network/Tools/Loader.swift
@@ -1,5 +1,4 @@
1
import Foundation
2
-import CocoaLumberjack
3
4
/// File-Loading Tools: Only for Unit Testing purposes.
5
///
Networking/Networking/Remote/Remote.swift
@@ -1,6 +1,5 @@
import Alamofire
6
/// Represents a collection of Remote Endpoints
Podfile
@@ -36,6 +36,7 @@ target 'WooCommerce' do
36
pod 'Alamofire', '~> 4.7'
37
pod 'Crashlytics', '~> 3.10'
38
pod 'KeychainAccess', '~> 3.1'
39
+ pod 'CocoaLumberjack', '~> 3.4'
40
pod 'CocoaLumberjack/Swift', '~> 3.4'
41
pod 'XLPagerTabStrip', '~> 8.1'
42
pod 'Charts', '~> 3.2'
@@ -62,6 +63,7 @@ target 'Yosemite' do
62
63
# ==================
64
#
65
66
67
68
69
# Unit Tests
@@ -86,6 +88,7 @@ target 'Networking' do
86
88
87
89
90
91
92
93
94
@@ -107,6 +110,7 @@ target 'Storage' do
107
110
# External Libraries
108
111
109
112
113
114
115
116
Podfile.lock
@@ -82,6 +82,7 @@ DEPENDENCIES:
82
- Alamofire (~> 4.7)
83
- Automattic-Tracks-iOS (= 0.2.4)
84
- Charts (~> 3.2)
85
+ - CocoaLumberjack (~> 3.4)
- CocoaLumberjack/Swift (~> 3.4)
- Crashlytics (~> 3.10)
- Gridicons (~> 0.18-beta)
@@ -147,6 +148,6 @@ SPEC CHECKSUMS:
147
148
XLPagerTabStrip: 22d4c58200d7c105e0e407ab6bfd01a5d85014be
149
ZendeskSDK: af6509ad7968d367f95b2645713802712152f879
150
-PODFILE CHECKSUM: bdc38e652c093973c639f51205241e2c3cdd7946
151
+PODFILE CHECKSUM: fa8c6b74d405866b108f16b75b24a6ea7154b198
152
153
COCOAPODS: 1.5.3
Storage/Storage.xcodeproj/project.pbxproj
@@ -510,7 +510,7 @@
510
511
512
"${SRCROOT}/../Pods/Target Support Files/Pods-StorageTests/Pods-StorageTests-frameworks.sh",
513
514
515
516
Storage/Storage/CoreData/CoreDataManager.swift
import CoreData
/// CoreDataManager: Manages the entire CoreData Stack. Conforms to the StorageManager API.
Storage/Storage/Extensions/NSManagedObjectContext+Storage.swift
/// NSManagedObjectContext Storage Conformance
WooCommerce/Classes/Analytics/TracksProvider.swift
@@ -1,7 +1,6 @@
import Yosemite
import AutomatticTracks
7
public class TracksProvider: AnalyticsProvider {
WooCommerce/Classes/Notifications/PushNotificationsManager.swift
import UserNotifications
0 commit comments