Skip to content

Commit d7c67d5

Browse files
committed
Minor bug fix
1 parent 2a886d8 commit d7c67d5

File tree

4 files changed

+40
-27
lines changed

4 files changed

+40
-27
lines changed

NearBee.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = 'NearBee'
33
s.swift_version = '5.3'
4-
s.version = '3.2.11'
4+
s.version = '3.2.12'
55
s.summary = 'iOS library for Eddystone beacons'
66

77
s.homepage = 'https://github.com/Beaconstac/NearBee-iOS-SDK'

SampleApp/Podfile

+9-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ target 'SampleApp' do
55
use_frameworks!
66

77
pod 'EddystoneScanner'
8-
pod 'Socket.IO-Client-Swift'
8+
pod 'Socket.IO-Client-Swift', '15.2.0'
99
pod 'Imaginary'
1010
end
11+
12+
post_install do |installer|
13+
installer.pods_project.targets.each do |target|
14+
target.build_configurations.each do |config|
15+
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
16+
end
17+
end
18+
end

SampleApp/Podfile.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ PODS:
1010
DEPENDENCIES:
1111
- EddystoneScanner
1212
- Imaginary
13-
- Socket.IO-Client-Swift
13+
- Socket.IO-Client-Swift (= 15.2.0)
1414

1515
SPEC REPOS:
1616
trunk:
@@ -27,6 +27,6 @@ SPEC CHECKSUMS:
2727
Socket.IO-Client-Swift: 1e3e3a1f09f3312a167f0d781eb2f383d477357c
2828
Starscream: 4bb2f9942274833f7b4d296a55504dcfc7edb7b0
2929

30-
PODFILE CHECKSUM: c624e9425dfcfb84b64362340cc370da6ddbc524
30+
PODFILE CHECKSUM: 892d8c19e90e1d727dba5d18c19fc7872d04b366
3131

32-
COCOAPODS: 1.9.0
32+
COCOAPODS: 1.10.1

SampleApp/SampleApp.xcodeproj/project.pbxproj

+27-22
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
545935E7218C8D98003FB358 /* CoreBluetooth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 545935E6218C8D98003FB358 /* CoreBluetooth.framework */; };
2121
545935E9218C8D9E003FB358 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 545935E8218C8D9E003FB358 /* CoreLocation.framework */; };
2222
54E0DCED22B8DC13000362FE /* GeoFenceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54E0DCEC22B8DC13000362FE /* GeoFenceViewController.swift */; };
23-
AE57754B1DB18D75DD8A2E77 /* Pods_SampleApp.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6B27AA9B8212CE6F07AA6E5 /* Pods_SampleApp.framework */; };
23+
F0EFAF3D0CD9CA58AE6A01C8 /* Pods_SampleApp.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AF328868011847DE29BC8B2C /* Pods_SampleApp.framework */; };
2424
/* End PBXBuildFile section */
2525

2626
/* Begin PBXCopyFilesBuildPhase section */
@@ -38,7 +38,8 @@
3838
/* End PBXCopyFilesBuildPhase section */
3939

4040
/* Begin PBXFileReference section */
41-
1BC9C5612BA2B288D0FAC096 /* Pods-SampleApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SampleApp.release.xcconfig"; path = "Pods/Target Support Files/Pods-SampleApp/Pods-SampleApp.release.xcconfig"; sourceTree = "<group>"; };
41+
0434CA69E8AFDF8B25560FA5 /* Pods-SampleApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SampleApp.debug.xcconfig"; path = "Target Support Files/Pods-SampleApp/Pods-SampleApp.debug.xcconfig"; sourceTree = "<group>"; };
42+
2B89372EAC09AFA7950E0975 /* Pods-SampleApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SampleApp.release.xcconfig"; path = "Target Support Files/Pods-SampleApp/Pods-SampleApp.release.xcconfig"; sourceTree = "<group>"; };
4243
545935C2218C8655003FB358 /* SampleApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SampleApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
4344
545935C5218C8655003FB358 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
4445
545935C7218C8655003FB358 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
@@ -53,8 +54,7 @@
5354
545935E6218C8D98003FB358 /* CoreBluetooth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreBluetooth.framework; path = System/Library/Frameworks/CoreBluetooth.framework; sourceTree = SDKROOT; };
5455
545935E8218C8D9E003FB358 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
5556
54E0DCEC22B8DC13000362FE /* GeoFenceViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GeoFenceViewController.swift; sourceTree = "<group>"; };
56-
7E2C2643E0B1A84C4DEFE9DE /* Pods-SampleApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SampleApp.debug.xcconfig"; path = "Pods/Target Support Files/Pods-SampleApp/Pods-SampleApp.debug.xcconfig"; sourceTree = "<group>"; };
57-
A6B27AA9B8212CE6F07AA6E5 /* Pods_SampleApp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SampleApp.framework; sourceTree = BUILT_PRODUCTS_DIR; };
57+
AF328868011847DE29BC8B2C /* Pods_SampleApp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SampleApp.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5858
BE04172424F9153A002E4ABB /* TestLocation1.gpx */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = TestLocation1.gpx; sourceTree = "<group>"; };
5959
BE04172524F9154B002E4ABB /* TestLocation2.gpx */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = TestLocation2.gpx; sourceTree = "<group>"; };
6060
/* End PBXFileReference section */
@@ -68,21 +68,31 @@
6868
545935E7218C8D98003FB358 /* CoreBluetooth.framework in Frameworks */,
6969
545935E5218C8D91003FB358 /* UserNotifications.framework in Frameworks */,
7070
545935E3218C8D8A003FB358 /* CoreData.framework in Frameworks */,
71-
AE57754B1DB18D75DD8A2E77 /* Pods_SampleApp.framework in Frameworks */,
7271
545935E0218C8CFB003FB358 /* NearBee.framework in Frameworks */,
72+
F0EFAF3D0CD9CA58AE6A01C8 /* Pods_SampleApp.framework in Frameworks */,
7373
);
7474
runOnlyForDeploymentPostprocessing = 0;
7575
};
7676
/* End PBXFrameworksBuildPhase section */
7777

7878
/* Begin PBXGroup section */
79+
1F233A05F64C6A20F2EEE923 /* Pods */ = {
80+
isa = PBXGroup;
81+
children = (
82+
0434CA69E8AFDF8B25560FA5 /* Pods-SampleApp.debug.xcconfig */,
83+
2B89372EAC09AFA7950E0975 /* Pods-SampleApp.release.xcconfig */,
84+
);
85+
name = Pods;
86+
path = Pods;
87+
sourceTree = "<group>";
88+
};
7989
545935B9218C8655003FB358 = {
8090
isa = PBXGroup;
8191
children = (
8292
545935C4218C8655003FB358 /* SampleApp */,
8393
545935C3218C8655003FB358 /* Products */,
84-
B2BFFFFF0E18D72D83CA8326 /* Pods */,
8594
973A737DCD16451F09EE3100 /* Frameworks */,
95+
1F233A05F64C6A20F2EEE923 /* Pods */,
8696
);
8797
sourceTree = "<group>";
8898
};
@@ -119,33 +129,24 @@
119129
545935E4218C8D91003FB358 /* UserNotifications.framework */,
120130
545935E2218C8D8A003FB358 /* CoreData.framework */,
121131
545935DE218C8C6F003FB358 /* NearBee.framework */,
122-
A6B27AA9B8212CE6F07AA6E5 /* Pods_SampleApp.framework */,
132+
AF328868011847DE29BC8B2C /* Pods_SampleApp.framework */,
123133
);
124134
name = Frameworks;
125135
sourceTree = "<group>";
126136
};
127-
B2BFFFFF0E18D72D83CA8326 /* Pods */ = {
128-
isa = PBXGroup;
129-
children = (
130-
7E2C2643E0B1A84C4DEFE9DE /* Pods-SampleApp.debug.xcconfig */,
131-
1BC9C5612BA2B288D0FAC096 /* Pods-SampleApp.release.xcconfig */,
132-
);
133-
name = Pods;
134-
sourceTree = "<group>";
135-
};
136137
/* End PBXGroup section */
137138

138139
/* Begin PBXNativeTarget section */
139140
545935C1218C8655003FB358 /* SampleApp */ = {
140141
isa = PBXNativeTarget;
141142
buildConfigurationList = 545935D4218C8657003FB358 /* Build configuration list for PBXNativeTarget "SampleApp" */;
142143
buildPhases = (
143-
6B2843ED19BDC853897ECF8D /* [CP] Check Pods Manifest.lock */,
144+
A25E7F1BF3DCB482DCEBA5D9 /* [CP] Check Pods Manifest.lock */,
144145
545935BE218C8655003FB358 /* Sources */,
145146
545935BF218C8655003FB358 /* Frameworks */,
146147
545935C0218C8655003FB358 /* Resources */,
147148
545935DD218C8C4E003FB358 /* Embed Frameworks */,
148-
B4A85D3B7668F8B1A35C03BA /* [CP] Embed Pods Frameworks */,
149+
CF1BC0A1A720268296B916DF /* [CP] Embed Pods Frameworks */,
149150
);
150151
buildRules = (
151152
);
@@ -203,16 +204,20 @@
203204
/* End PBXResourcesBuildPhase section */
204205

205206
/* Begin PBXShellScriptBuildPhase section */
206-
6B2843ED19BDC853897ECF8D /* [CP] Check Pods Manifest.lock */ = {
207+
A25E7F1BF3DCB482DCEBA5D9 /* [CP] Check Pods Manifest.lock */ = {
207208
isa = PBXShellScriptBuildPhase;
208209
buildActionMask = 2147483647;
209210
files = (
210211
);
212+
inputFileListPaths = (
213+
);
211214
inputPaths = (
212215
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
213216
"${PODS_ROOT}/Manifest.lock",
214217
);
215218
name = "[CP] Check Pods Manifest.lock";
219+
outputFileListPaths = (
220+
);
216221
outputPaths = (
217222
"$(DERIVED_FILE_DIR)/Pods-SampleApp-checkManifestLockResult.txt",
218223
);
@@ -221,7 +226,7 @@
221226
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
222227
showEnvVarsInLog = 0;
223228
};
224-
B4A85D3B7668F8B1A35C03BA /* [CP] Embed Pods Frameworks */ = {
229+
CF1BC0A1A720268296B916DF /* [CP] Embed Pods Frameworks */ = {
225230
isa = PBXShellScriptBuildPhase;
226231
buildActionMask = 2147483647;
227232
files = (
@@ -392,7 +397,7 @@
392397
};
393398
545935D5218C8657003FB358 /* Debug */ = {
394399
isa = XCBuildConfiguration;
395-
baseConfigurationReference = 7E2C2643E0B1A84C4DEFE9DE /* Pods-SampleApp.debug.xcconfig */;
400+
baseConfigurationReference = 0434CA69E8AFDF8B25560FA5 /* Pods-SampleApp.debug.xcconfig */;
396401
buildSettings = {
397402
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
398403
CODE_SIGN_STYLE = Automatic;
@@ -419,7 +424,7 @@
419424
};
420425
545935D6218C8657003FB358 /* Release */ = {
421426
isa = XCBuildConfiguration;
422-
baseConfigurationReference = 1BC9C5612BA2B288D0FAC096 /* Pods-SampleApp.release.xcconfig */;
427+
baseConfigurationReference = 2B89372EAC09AFA7950E0975 /* Pods-SampleApp.release.xcconfig */;
423428
buildSettings = {
424429
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
425430
CODE_SIGN_STYLE = Automatic;

0 commit comments

Comments
 (0)