Skip to content

Commit 655504f

Browse files
committed
feat: 更新DPLog依赖版本
1 parent ba5da44 commit 655504f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1321
-1333
lines changed

DPModuleManager.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |spec|
1616
#
1717

1818
spec.name = "DPModuleManager"
19-
spec.version = "1.0.1"
19+
spec.version = "1.0.2"
2020
spec.summary = "模块(组件)管理器"
2121

2222
# This description is used to generate tags and improve search results.
@@ -134,7 +134,7 @@ Pod::Spec.new do |spec|
134134

135135
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
136136
spec.dependency 'DPMessageBus', '~> 1.0.0'
137-
spec.dependency 'DPLog', '~> 2.0.0'
137+
spec.dependency 'DPLog', '~> 3.0.0'
138138
spec.dependency 'DPObjCRuntime', '~> 1.0.0'
139139

140140
end

ModuleManager.xcodeproj/project.pbxproj

+10-10
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@
959959
CODE_SIGN_IDENTITY = "Apple Development";
960960
CODE_SIGN_STYLE = Automatic;
961961
DEFINES_MODULE = YES;
962-
DEVELOPMENT_TEAM = MNYYTRW888;
962+
DEVELOPMENT_TEAM = G6RN72YKHF;
963963
DYLIB_COMPATIBILITY_VERSION = 1;
964964
DYLIB_CURRENT_VERSION = 1;
965965
DYLIB_INSTALL_NAME_BASE = "@rpath";
@@ -985,7 +985,7 @@
985985
CODE_SIGN_IDENTITY = "Apple Development";
986986
CODE_SIGN_STYLE = Automatic;
987987
DEFINES_MODULE = YES;
988-
DEVELOPMENT_TEAM = MNYYTRW888;
988+
DEVELOPMENT_TEAM = G6RN72YKHF;
989989
DYLIB_COMPATIBILITY_VERSION = 1;
990990
DYLIB_CURRENT_VERSION = 1;
991991
DYLIB_INSTALL_NAME_BASE = "@rpath";
@@ -1012,14 +1012,14 @@
10121012
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
10131013
CODE_SIGN_IDENTITY = "Apple Development";
10141014
CODE_SIGN_STYLE = Automatic;
1015-
DEVELOPMENT_TEAM = MNYYTRW888;
1015+
DEVELOPMENT_TEAM = G6RN72YKHF;
10161016
INFOPLIST_FILE = ObjCApp/Info.plist;
10171017
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
10181018
LD_RUNPATH_SEARCH_PATHS = (
10191019
"$(inherited)",
10201020
"@executable_path/Frameworks",
10211021
);
1022-
PRODUCT_BUNDLE_IDENTIFIER = DP.iOS.Component.ModuleManager.Demo.ObjCApp;
1022+
PRODUCT_BUNDLE_IDENTIFIER = DP.iOS.Component.ModuleManager.Demo.ObjCApp2;
10231023
PRODUCT_NAME = "$(TARGET_NAME)";
10241024
PROVISIONING_PROFILE_SPECIFIER = "";
10251025
TARGETED_DEVICE_FAMILY = "1,2";
@@ -1034,14 +1034,14 @@
10341034
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
10351035
CODE_SIGN_IDENTITY = "Apple Development";
10361036
CODE_SIGN_STYLE = Automatic;
1037-
DEVELOPMENT_TEAM = MNYYTRW888;
1037+
DEVELOPMENT_TEAM = G6RN72YKHF;
10381038
INFOPLIST_FILE = ObjCApp/Info.plist;
10391039
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
10401040
LD_RUNPATH_SEARCH_PATHS = (
10411041
"$(inherited)",
10421042
"@executable_path/Frameworks",
10431043
);
1044-
PRODUCT_BUNDLE_IDENTIFIER = DP.iOS.Component.ModuleManager.Demo.ObjCApp;
1044+
PRODUCT_BUNDLE_IDENTIFIER = DP.iOS.Component.ModuleManager.Demo.ObjCApp2;
10451045
PRODUCT_NAME = "$(TARGET_NAME)";
10461046
PROVISIONING_PROFILE_SPECIFIER = "";
10471047
TARGETED_DEVICE_FAMILY = "1,2";
@@ -1160,14 +1160,14 @@
11601160
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
11611161
CODE_SIGN_IDENTITY = "Apple Development";
11621162
CODE_SIGN_STYLE = Automatic;
1163-
DEVELOPMENT_TEAM = MNYYTRW888;
1163+
DEVELOPMENT_TEAM = G6RN72YKHF;
11641164
INFOPLIST_FILE = SwiftApp/Info.plist;
11651165
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
11661166
LD_RUNPATH_SEARCH_PATHS = (
11671167
"$(inherited)",
11681168
"@executable_path/Frameworks",
11691169
);
1170-
PRODUCT_BUNDLE_IDENTIFIER = DP.iOS.Component.ModuleManager.Demo.SwiftApp;
1170+
PRODUCT_BUNDLE_IDENTIFIER = DP.iOS.Component.ModuleManager.Demo.SwiftApp2;
11711171
PRODUCT_NAME = "$(TARGET_NAME)";
11721172
PROVISIONING_PROFILE_SPECIFIER = "";
11731173
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
@@ -1185,14 +1185,14 @@
11851185
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
11861186
CODE_SIGN_IDENTITY = "Apple Development";
11871187
CODE_SIGN_STYLE = Automatic;
1188-
DEVELOPMENT_TEAM = MNYYTRW888;
1188+
DEVELOPMENT_TEAM = G6RN72YKHF;
11891189
INFOPLIST_FILE = SwiftApp/Info.plist;
11901190
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
11911191
LD_RUNPATH_SEARCH_PATHS = (
11921192
"$(inherited)",
11931193
"@executable_path/Frameworks",
11941194
);
1195-
PRODUCT_BUNDLE_IDENTIFIER = DP.iOS.Component.ModuleManager.Demo.SwiftApp;
1195+
PRODUCT_BUNDLE_IDENTIFIER = DP.iOS.Component.ModuleManager.Demo.SwiftApp2;
11961196
PRODUCT_NAME = "$(TARGET_NAME)";
11971197
PROVISIONING_PROFILE_SPECIFIER = "";
11981198
SWIFT_COMPILATION_MODE = wholemodule;

ModuleManager/Sources/ModuleManager.m

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#import <objc/runtime.h>
1212
#import <DPMessageBus/MBMessageBus.h>
1313
#import <DPLog/DPLog.h>
14+
#import <DPLog/DPLog-Swift.h>
1415

1516
@interface ModuleManager () <MBMessageObserver>
1617

ModuleManager/Sources/UIApplication+ModuleManager.m

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#import "UIApplication+ModuleManager.h"
1010
#import <DPObjCRuntime/ObjCRuntime.h>
1111
#import <DPLog/DPLog.h>
12+
#import <DPLog/DPLog-Swift.h>
1213
#import <objc/runtime.h>
1314
#import "ModuleManagerInternal.h"
1415

ObjCApp/AppDelegate.m

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#import "AppDelegate.h"
1010
#import <DPLog/DPLog.h>
11+
#import <DPLog/DPLog-Swift.h>
1112
#import <ModuleManager/ModuleManager.h>
1213

1314

Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ inhibit_all_warnings! # 无视所有警告
33
use_frameworks! # 使用framework代替静态库
44

55
pod 'DPMessageBus', '~> 1.0.0'
6-
pod 'DPLog', '~> 2.0.0'
6+
pod 'DPLog', '~> 3.0.0'
77
pod 'DPObjCRuntime', '~> 1.0.0'
88

99
target 'ModuleManager' do # target 对应Xcode中的target

Podfile.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
PODS:
2-
- DPLog (2.0)
2+
- DPLog (3.0)
33
- DPMessageBus (1.0)
44
- DPObjCRuntime (1.0)
55

66
DEPENDENCIES:
7-
- DPLog (~> 2.0.0)
7+
- DPLog (~> 3.0.0)
88
- DPMessageBus (~> 1.0.0)
99
- DPObjCRuntime (~> 1.0.0)
1010

@@ -15,10 +15,10 @@ SPEC REPOS:
1515
- DPObjCRuntime
1616

1717
SPEC CHECKSUMS:
18-
DPLog: 820205ee14c28edd9dcebc7e39b94231aa9630fb
18+
DPLog: 30d131c4114c4b9812ef16d7f1932ca0f1b25106
1919
DPMessageBus: b3ba08970140f9f5b115de6ee9a0ceb8c3d8849e
2020
DPObjCRuntime: f32a795f50de1cebf49545850dde94f1f7d67b2f
2121

22-
PODFILE CHECKSUM: 7994710b290d95a2513f5e9156f8a1bcddfc3d61
22+
PODFILE CHECKSUM: 51aba84f284cab9804def2231c530454fb01b701
2323

24-
COCOAPODS: 1.9.3
24+
COCOAPODS: 1.11.3

Pods/DPLog/DPLog/Sources/Core/Collector.swift

+55
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/DPLog/DPLog/Sources/Core/DPLogCoordinator.swift

-43
This file was deleted.

Pods/DPLog/DPLog/Sources/Core/DPLogFormatter.swift

-18
This file was deleted.

Pods/DPLog/DPLog/Sources/Core/DPLogInformation.swift

-63
This file was deleted.

Pods/DPLog/DPLog/Sources/Core/DPLogLevel.swift

-26
This file was deleted.

Pods/DPLog/DPLog/Sources/Core/DPLogger.swift

-24
This file was deleted.

0 commit comments

Comments
 (0)