Skip to content

Commit 37ef31f

Browse files
committed
Rename UserReport module to UserReportSDK
1 parent 5c35fc5 commit 37ef31f

File tree

12 files changed

+34
-18
lines changed

12 files changed

+34
-18
lines changed

Example/Example/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44

55
import UIKit
6-
import UserReport
6+
import UserReportSDK
77

88
@UIApplicationMain
99
class AppDelegate: UIResponder, UIApplicationDelegate {

Example/Example/ViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44

55
import UIKit
6-
import UserReport
6+
import UserReportSDK
77

88
class ViewController: UserReportViewController {
99

Example_Objective-C/Example_Objective-C.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@
332332
116C89662305A85D003E17E5 /* Debug */ = {
333333
isa = XCBuildConfiguration;
334334
buildSettings = {
335+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
335336
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
336337
CODE_SIGN_STYLE = Automatic;
337338
DEFINES_MODULE = NO;
@@ -349,6 +350,7 @@
349350
116C89672305A85D003E17E5 /* Release */ = {
350351
isa = XCBuildConfiguration;
351352
buildSettings = {
353+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
352354
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
353355
CODE_SIGN_STYLE = Automatic;
354356
DEFINES_MODULE = NO;

Example_Objective-C/Example_Objective-C/AppDelegate.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44

55
#import "AppDelegate.h"
6-
#import <UserReport/UserReport-Swift.h>
6+
#import <UserReportSDK/UserReportSDK-Swift.h>
77

88
@interface AppDelegate ()
99

Example_Objective-C/Example_Objective-C/ViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44

55
#import "ViewController.h"
6-
#import <UserReport/UserReport-Swift.h>
6+
#import <UserReportSDK/UserReportSDK-Swift.h>
77

88
@interface ViewController ()
99
@property (nullable ,strong, nonatomic) NSTimer *timer;

UserReport.xcworkspace/contents.xcworkspacedata

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UserReport/UserReport.xcodeproj/project.pbxproj renamed to UserReport/UserReportSDK.xcodeproj/project.pbxproj

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10-
110746CA1F44921900150955 /* UserReport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 110746C01F44921900150955 /* UserReport.framework */; };
10+
110746CA1F44921900150955 /* UserReportSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 110746C01F44921900150955 /* UserReportSDK.framework */; };
1111
110746D11F44921900150955 /* UserReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 110746C31F44921900150955 /* UserReport.h */; settings = {ATTRIBUTES = (Public, ); }; };
1212
110747281F44953000150955 /* UserReport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110747271F44953000150955 /* UserReport.swift */; };
1313
1107473A1F46FA6800150955 /* Network.swift in Sources */ = {isa = PBXBuildFile; fileRef = 110747361F46FA6800150955 /* Network.swift */; };
@@ -46,7 +46,7 @@
4646
/* End PBXContainerItemProxy section */
4747

4848
/* Begin PBXFileReference section */
49-
110746C01F44921900150955 /* UserReport.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UserReport.framework; sourceTree = BUILT_PRODUCTS_DIR; };
49+
110746C01F44921900150955 /* UserReportSDK.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UserReportSDK.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5050
110746C31F44921900150955 /* UserReport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserReport.h; sourceTree = "<group>"; };
5151
110746C41F44921900150955 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5252
110746C91F44921900150955 /* Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -94,7 +94,7 @@
9494
buildActionMask = 2147483647;
9595
files = (
9696
116BD1661F5814A800D2386B /* XCTest.framework in Frameworks */,
97-
110746CA1F44921900150955 /* UserReport.framework in Frameworks */,
97+
110746CA1F44921900150955 /* UserReportSDK.framework in Frameworks */,
9898
);
9999
runOnlyForDeploymentPostprocessing = 0;
100100
};
@@ -114,7 +114,7 @@
114114
110746C11F44921900150955 /* Products */ = {
115115
isa = PBXGroup;
116116
children = (
117-
110746C01F44921900150955 /* UserReport.framework */,
117+
110746C01F44921900150955 /* UserReportSDK.framework */,
118118
110746C91F44921900150955 /* Tests.xctest */,
119119
);
120120
name = Products;
@@ -231,9 +231,9 @@
231231
/* End PBXHeadersBuildPhase section */
232232

233233
/* Begin PBXNativeTarget section */
234-
110746BF1F44921900150955 /* UserReport */ = {
234+
110746BF1F44921900150955 /* UserReportSDK */ = {
235235
isa = PBXNativeTarget;
236-
buildConfigurationList = 110746D41F44921900150955 /* Build configuration list for PBXNativeTarget "UserReport" */;
236+
buildConfigurationList = 110746D41F44921900150955 /* Build configuration list for PBXNativeTarget "UserReportSDK" */;
237237
buildPhases = (
238238
110746BB1F44921900150955 /* Sources */,
239239
110746BC1F44921900150955 /* Frameworks */,
@@ -244,9 +244,9 @@
244244
);
245245
dependencies = (
246246
);
247-
name = UserReport;
247+
name = UserReportSDK;
248248
productName = UserReport;
249-
productReference = 110746C01F44921900150955 /* UserReport.framework */;
249+
productReference = 110746C01F44921900150955 /* UserReportSDK.framework */;
250250
productType = "com.apple.product-type.framework";
251251
};
252252
110746C81F44921900150955 /* Tests */ = {
@@ -288,7 +288,7 @@
288288
};
289289
};
290290
};
291-
buildConfigurationList = 110746BA1F44921900150955 /* Build configuration list for PBXProject "UserReport" */;
291+
buildConfigurationList = 110746BA1F44921900150955 /* Build configuration list for PBXProject "UserReportSDK" */;
292292
compatibilityVersion = "Xcode 3.2";
293293
developmentRegion = English;
294294
hasScannedForEncodings = 0;
@@ -301,7 +301,7 @@
301301
projectDirPath = "";
302302
projectRoot = "";
303303
targets = (
304-
110746BF1F44921900150955 /* UserReport */,
304+
110746BF1F44921900150955 /* UserReportSDK */,
305305
110746C81F44921900150955 /* Tests */,
306306
);
307307
};
@@ -364,7 +364,7 @@
364364
/* Begin PBXTargetDependency section */
365365
110746CC1F44921900150955 /* PBXTargetDependency */ = {
366366
isa = PBXTargetDependency;
367-
target = 110746BF1F44921900150955 /* UserReport */;
367+
target = 110746BF1F44921900150955 /* UserReportSDK */;
368368
targetProxy = 110746CB1F44921900150955 /* PBXContainerItemProxy */;
369369
};
370370
/* End PBXTargetDependency section */
@@ -557,7 +557,7 @@
557557
/* End XCBuildConfiguration section */
558558

559559
/* Begin XCConfigurationList section */
560-
110746BA1F44921900150955 /* Build configuration list for PBXProject "UserReport" */ = {
560+
110746BA1F44921900150955 /* Build configuration list for PBXProject "UserReportSDK" */ = {
561561
isa = XCConfigurationList;
562562
buildConfigurations = (
563563
110746D21F44921900150955 /* Debug */,
@@ -566,7 +566,7 @@
566566
defaultConfigurationIsVisible = 0;
567567
defaultConfigurationName = Release;
568568
};
569-
110746D41F44921900150955 /* Build configuration list for PBXNativeTarget "UserReport" */ = {
569+
110746D41F44921900150955 /* Build configuration list for PBXNativeTarget "UserReportSDK" */ = {
570570
isa = XCConfigurationList;
571571
buildConfigurations = (
572572
110746D51F44921900150955 /* Debug */,

0 commit comments

Comments
 (0)