Skip to content

Commit 983abbc

Browse files
author
Vadym Kurachevskyi
authored
Merge pull request #5 from swordfishyou/develop
Rename UserReport module to UserReportSDK
2 parents 5c35fc5 + ccb6294 commit 983abbc

File tree

18 files changed

+136
-22
lines changed

18 files changed

+136
-22
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Example/Example.xcodeproj/xcuserdata
2+
Example_Objective-C/Example_Objective-C.xcodeproj/xcuserdata
3+
UserReport.xcworkspace/xcuserdata

Example/Example.xcodeproj/project.pbxproj

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

99
/* Begin PBXBuildFile section */
10-
1107472C1F44986500150955 /* UserReport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1107472B1F44986500150955 /* UserReport.framework */; };
1110
1115E4FA1F72866D00ED6F6B /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 1115E4F81F72862F00ED6F6B /* Main.storyboard */; };
1211
11297A161F68080E0033E3E8 /* TimeInterval+stringTime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11297A151F68080E0033E3E8 /* TimeInterval+stringTime.swift */; };
1312
1141EF421F62CE170011D10F /* ShadowView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1141EF411F62CE170011D10F /* ShadowView.swift */; };
@@ -17,6 +16,7 @@
1716
116BD15A1F58130A00D2386B /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 116BD14F1F58130A00D2386B /* ViewController.swift */; };
1817
116BD15B1F58130A00D2386B /* VerticalButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 116BD1511F58130A00D2386B /* VerticalButton.swift */; };
1918
116BD1681F5814C500D2386B /* UserReport_ExampleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 116BD1541F58130A00D2386B /* UserReport_ExampleTests.swift */; };
19+
325E737B240165B20015F9C6 /* UserReportSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 325E737A240165B20015F9C6 /* UserReportSDK.framework */; };
2020
/* End PBXBuildFile section */
2121

2222
/* Begin PBXContainerItemProxy section */
@@ -45,14 +45,15 @@
4545
116BD1511F58130A00D2386B /* VerticalButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VerticalButton.swift; sourceTree = "<group>"; };
4646
116BD1531F58130A00D2386B /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
4747
116BD1541F58130A00D2386B /* UserReport_ExampleTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserReport_ExampleTests.swift; sourceTree = "<group>"; };
48+
325E737A240165B20015F9C6 /* UserReportSDK.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = UserReportSDK.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4849
/* End PBXFileReference section */
4950

5051
/* Begin PBXFrameworksBuildPhase section */
5152
110746E01F4492E700150955 /* Frameworks */ = {
5253
isa = PBXFrameworksBuildPhase;
5354
buildActionMask = 2147483647;
5455
files = (
55-
1107472C1F44986500150955 /* UserReport.framework in Frameworks */,
56+
325E737B240165B20015F9C6 /* UserReportSDK.framework in Frameworks */,
5657
);
5758
runOnlyForDeploymentPostprocessing = 0;
5859
};
@@ -88,6 +89,7 @@
8889
1107472A1F44986500150955 /* Frameworks */ = {
8990
isa = PBXGroup;
9091
children = (
92+
325E737A240165B20015F9C6 /* UserReportSDK.framework */,
9193
1115E5011F728B6D00ED6F6B /* MobileCoreServices.framework */,
9294
1107472B1F44986500150955 /* UserReport.framework */,
9395
);

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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
116C895C2305A85D003E17E5 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 116C895B2305A85D003E17E5 /* Assets.xcassets */; };
1515
116C895F2305A85D003E17E5 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 116C895D2305A85D003E17E5 /* LaunchScreen.storyboard */; };
1616
116C89622305A85D003E17E5 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 116C89612305A85D003E17E5 /* main.m */; };
17-
116C896C2305AA23003E17E5 /* UserReport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 116C896B2305AA23003E17E5 /* UserReport.framework */; };
1817
116C89752305BBF7003E17E5 /* VerticalButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 116C89742305BBF7003E17E5 /* VerticalButton.m */; };
18+
325E737F240165F90015F9C6 /* UserReportSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 325E737E240165F90015F9C6 /* UserReportSDK.framework */; };
1919
/* End PBXBuildFile section */
2020

2121
/* Begin PBXFileReference section */
@@ -34,14 +34,15 @@
3434
116C896B2305AA23003E17E5 /* UserReport.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = UserReport.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3535
116C89732305BBF7003E17E5 /* VerticalButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VerticalButton.h; sourceTree = "<group>"; };
3636
116C89742305BBF7003E17E5 /* VerticalButton.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VerticalButton.m; sourceTree = "<group>"; };
37+
325E737E240165F90015F9C6 /* UserReportSDK.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = UserReportSDK.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3738
/* End PBXFileReference section */
3839

3940
/* Begin PBXFrameworksBuildPhase section */
4041
116C894C2305A85B003E17E5 /* Frameworks */ = {
4142
isa = PBXFrameworksBuildPhase;
4243
buildActionMask = 2147483647;
4344
files = (
44-
116C896C2305AA23003E17E5 /* UserReport.framework in Frameworks */,
45+
325E737F240165F90015F9C6 /* UserReportSDK.framework in Frameworks */,
4546
);
4647
runOnlyForDeploymentPostprocessing = 0;
4748
};
@@ -94,6 +95,7 @@
9495
116C896A2305AA23003E17E5 /* Frameworks */ = {
9596
isa = PBXGroup;
9697
children = (
98+
325E737E240165F90015F9C6 /* UserReportSDK.framework */,
9799
116C896B2305AA23003E17E5 /* UserReport.framework */,
98100
);
99101
name = Frameworks;

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/Models/Device.swift

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

55
import Foundation
6+
import UIKit
67

78
/**
89
* Information about the current device

UserReport/UserReport/Session/Session.swift

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

55
import Foundation
6+
import UIKit
67

78
/**
89
* Class stores the data on the count of screens viewed and the time the application is used

0 commit comments

Comments
 (0)