Skip to content
This repository was archived by the owner on Jul 20, 2025. It is now read-only.

Commit a0cd4f4

Browse files
author
Stephen Schiffli
committed
Bumped version to 2.10.1 - Update Deps
1 parent 76c4eeb commit a0cd4f4

File tree

170 files changed

+8393
-8022
lines changed

Some content is hidden

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

170 files changed

+8393
-8022
lines changed

Docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '2.10.0'
58+
version = '2.10.1'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '2.10.0'
60+
release = '2.10.1'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

Docs/source/gen_api_reference.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
appledoc -p "MetaWear iOS/macOS/tvOS API 2.10.0" --project-version "2.10.0" -c "MBIENTLAB INC" --company-id com.mbientlab --no-create-docset --no-repeat-first-par --ignore .m -o . ../MetaWear/Classes
1+
appledoc -p "MetaWear iOS/macOS/tvOS API 2.10.1" --project-version "2.10.1" -c "MBIENTLAB INC" --company-id com.mbientlab --no-create-docset --no-repeat-first-par --ignore .m -o . ../MetaWear/Classes
22
open html/index.html
33

44
make html

MetaWear.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'MetaWear'
3-
s.version = '2.10.0'
3+
s.version = '2.10.1'
44
s.license = { :type => 'Commercial', :text => 'See https://www.mbientlab.com/terms/', :file => 'LICENSE' }
55
s.homepage = 'https://mbientlab.com'
66
s.summary = 'iOS/macOS/tvOS API and documentation for the MetaWear platform'
@@ -26,6 +26,6 @@ Pod::Spec.new do |s|
2626
s.private_header_files = 'MetaWear/Internal/**/*.h'
2727

2828
s.frameworks = 'CoreData', 'CoreBluetooth'
29-
s.dependency 'Bolts/Tasks', '~> 1.8.4'
29+
s.dependency 'Bolts/Tasks', '~> 1'
3030
s.dependency 'FastCoding+tvOS', '~> 3.2.1'
3131
end

MetaWear/Classes/Core/MBLConstants.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ typedef NS_ENUM(uint8_t, MBLFirmwareVersion) {
7676
MBLFirmwareVersion1_3_2,
7777
MBLFirmwareVersion1_3_3,
7878
MBLFirmwareVersion1_3_4,
79-
MBLFirmwareVersion1_3_5
79+
MBLFirmwareVersion1_3_5,
80+
MBLFirmwareVersion1_3_6,
81+
MBLFirmwareVersion1_3_7
8082
};
8183
NSString *MBLFirmwareVersionString(MBLFirmwareVersion version);
8284

MetaWear/Classes/Core/MBLConstants.m

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
#import "MBLConstants.h"
3737
#import "MBLConstants+Private.h"
3838

39-
NSString *const kMBLAPIVersion = @"2.10.0";
39+
NSString *const kMBLAPIVersion = @"2.10.1";
4040

4141
NSString *MBLFirmwareVersionString(MBLFirmwareVersion version)
4242
{
@@ -79,6 +79,10 @@
7979
return @"1.3.4";
8080
case MBLFirmwareVersion1_3_5:
8181
return @"1.3.5";
82+
case MBLFirmwareVersion1_3_6:
83+
return @"1.3.6";
84+
case MBLFirmwareVersion1_3_7:
85+
return @"1.3.7";
8286
}
8387
}
8488

MetaWear/Classes/Core/MBLMetaWearManager.m

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -384,12 +384,6 @@ - (instancetype)init
384384
self.centralStateUpdateSources = [NSMutableArray array];
385385
self.centralStateUpdateSourcesMutex = [[NSObject alloc] init];
386386

387-
#pragma clang diagnostic push
388-
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
389-
// Don't catch expections
390-
BFTaskSetCatchesExceptions(NO);
391-
#pragma clang diagnostic pop
392-
393387
// If the app changes its API version then we must delete all the cached MBLMetaWear objects,
394388
// since they are no longer valid
395389
if (!version || ![version isEqualToString:kMBLAPIVersion]) {

MetaWear/MetaWear.xcodeproj/project.pbxproj

Lines changed: 1 addition & 161 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
409CA2881D9D00FF00E1262B /* FastCoding.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FastCoding.framework; path = "Build/MetaWear/Build/Products/Debug-appletvos/FastCoding-tvOS/FastCoding.framework"; sourceTree = "<group>"; };
199199
40CBC8951D9B37040078573C /* MBLMetaBootTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = MBLMetaBootTests.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
200200
40CBC8981D9B7D5E0078573C /* MagnetometerTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MagnetometerTests.m; sourceTree = "<group>"; };
201-
40D2A7081DC0192300916C7E /* MetaWearPrivate.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = MetaWearPrivate.podspec; path = ../MetaWearPrivate.podspec; sourceTree = "<group>"; };
201+
40D2A7081DC0192300916C7E /* MetaWearPrivate.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = MetaWearPrivate.podspec; path = ../MetaWearPrivate.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
202202
40F5A8BF1E8F1C4200BC143D /* accelerometer.rst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = accelerometer.rst; sourceTree = "<group>"; };
203203
40F5A8C01E8F1C4200BC143D /* accelerometerbmi160.rst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = accelerometerbmi160.rst; sourceTree = "<group>"; };
204204
40F5A8C11E8F1C4200BC143D /* accelerometermma8452q.rst */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = accelerometermma8452q.rst; sourceTree = "<group>"; };
@@ -653,7 +653,6 @@
653653
40703E031D94AE3500F38FF0 /* Frameworks */,
654654
40703E041D94AE3500F38FF0 /* Resources */,
655655
346F7A67900D41D94213EBAA /* [CP] Embed Pods Frameworks */,
656-
33D71A76E323B9B206883FD3 /* [CP] Copy Pods Resources */,
657656
);
658657
buildRules = (
659658
);
@@ -673,7 +672,6 @@
673672
40703E2E1D94B8A700F38FF0 /* Frameworks */,
674673
40703E2F1D94B8A700F38FF0 /* Resources */,
675674
E483B0530F48198DA665653E /* [CP] Embed Pods Frameworks */,
676-
4C09F1E7626F360333C9646E /* [CP] Copy Pods Resources */,
677675
);
678676
buildRules = (
679677
);
@@ -693,7 +691,6 @@
693691
40703E581D94C06800F38FF0 /* Frameworks */,
694692
40703E591D94C06800F38FF0 /* Resources */,
695693
631C0B8F86757D22D29FFE29 /* [CP] Embed Pods Frameworks */,
696-
0137699022A7D0201A49436F /* [CP] Copy Pods Resources */,
697694
);
698695
buildRules = (
699696
);
@@ -713,7 +710,6 @@
713710
40703EA31D94C37500F38FF0 /* Frameworks */,
714711
40703EA41D94C37500F38FF0 /* Resources */,
715712
3E7FE9044A6EBB771B472483 /* [CP] Embed Pods Frameworks */,
716-
76059A12DB46EEA4A5EB2FAB /* [CP] Copy Pods Resources */,
717713
);
718714
buildRules = (
719715
);
@@ -734,7 +730,6 @@
734730
40781FDD1D9DD41900FF5134 /* Frameworks */,
735731
40781FDE1D9DD41900FF5134 /* Resources */,
736732
CD397537C4F0DF6A0CCBA718 /* [CP] Embed Pods Frameworks */,
737-
92FFBAC3FECF5C140A582577 /* [CP] Copy Pods Resources */,
738733
);
739734
buildRules = (
740735
);
@@ -754,7 +749,6 @@
754749
407820151D9DD60500FF5134 /* Frameworks */,
755750
407820161D9DD60500FF5134 /* Resources */,
756751
817CFAFEE002EA2071491BC4 /* [CP] Embed Pods Frameworks */,
757-
1A349ED794582B27B51054A6 /* [CP] Copy Pods Resources */,
758752
);
759753
buildRules = (
760754
);
@@ -773,8 +767,6 @@
773767
407820291D9DD60500FF5134 /* Sources */,
774768
4078202A1D9DD60500FF5134 /* Frameworks */,
775769
4078202B1D9DD60500FF5134 /* Resources */,
776-
D9290FEB3A49E4F0B96D72C0 /* [CP] Embed Pods Frameworks */,
777-
2906418BAD5816F9166C3BBB /* [CP] Copy Pods Resources */,
778770
);
779771
buildRules = (
780772
);
@@ -795,7 +787,6 @@
795787
40915FC21D94D392008A5F24 /* Frameworks */,
796788
40915FC31D94D392008A5F24 /* Resources */,
797789
FBC90CCA537EF206514FE09B /* [CP] Embed Pods Frameworks */,
798-
77910CAAD6167CDAB0AC513B /* [CP] Copy Pods Resources */,
799790
);
800791
buildRules = (
801792
);
@@ -815,7 +806,6 @@
815806
40915FEC1D94D478008A5F24 /* Frameworks */,
816807
40915FED1D94D478008A5F24 /* Resources */,
817808
ACF38D7B5EFF0974AB9F807B /* [CP] Embed Pods Frameworks */,
818-
8320841632EE48A195255044 /* [CP] Copy Pods Resources */,
819809
);
820810
buildRules = (
821811
);
@@ -1008,21 +998,6 @@
1008998
/* End PBXResourcesBuildPhase section */
1009999

10101000
/* Begin PBXShellScriptBuildPhase section */
1011-
0137699022A7D0201A49436F /* [CP] Copy Pods Resources */ = {
1012-
isa = PBXShellScriptBuildPhase;
1013-
buildActionMask = 2147483647;
1014-
files = (
1015-
);
1016-
inputPaths = (
1017-
);
1018-
name = "[CP] Copy Pods Resources";
1019-
outputPaths = (
1020-
);
1021-
runOnlyForDeploymentPostprocessing = 0;
1022-
shellPath = /bin/sh;
1023-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MetaWear-MetaWear-iOS-MetaWearIntegrationTestHost-iOS/Pods-MetaWear-MetaWear-iOS-MetaWearIntegrationTestHost-iOS-resources.sh\"\n";
1024-
showEnvVarsInLog = 0;
1025-
};
10261001
02E81058C53AD24BA4DBAD91 /* [CP] Check Pods Manifest.lock */ = {
10271002
isa = PBXShellScriptBuildPhase;
10281003
buildActionMask = 2147483647;
@@ -1059,21 +1034,6 @@
10591034
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";
10601035
showEnvVarsInLog = 0;
10611036
};
1062-
1A349ED794582B27B51054A6 /* [CP] Copy Pods Resources */ = {
1063-
isa = PBXShellScriptBuildPhase;
1064-
buildActionMask = 2147483647;
1065-
files = (
1066-
);
1067-
inputPaths = (
1068-
);
1069-
name = "[CP] Copy Pods Resources";
1070-
outputPaths = (
1071-
);
1072-
runOnlyForDeploymentPostprocessing = 0;
1073-
shellPath = /bin/sh;
1074-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MetaWear-MetaWear-tvOS-MetaWearIntegrationTestHost-tvOS/Pods-MetaWear-MetaWear-tvOS-MetaWearIntegrationTestHost-tvOS-resources.sh\"\n";
1075-
showEnvVarsInLog = 0;
1076-
};
10771037
1ECA979582EC73A7433D3C9D /* [CP] Check Pods Manifest.lock */ = {
10781038
isa = PBXShellScriptBuildPhase;
10791039
buildActionMask = 2147483647;
@@ -1092,36 +1052,6 @@
10921052
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";
10931053
showEnvVarsInLog = 0;
10941054
};
1095-
2906418BAD5816F9166C3BBB /* [CP] Copy Pods Resources */ = {
1096-
isa = PBXShellScriptBuildPhase;
1097-
buildActionMask = 2147483647;
1098-
files = (
1099-
);
1100-
inputPaths = (
1101-
);
1102-
name = "[CP] Copy Pods Resources";
1103-
outputPaths = (
1104-
);
1105-
runOnlyForDeploymentPostprocessing = 0;
1106-
shellPath = /bin/sh;
1107-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MetaWearIntegrationTests-tvOS/Pods-MetaWearIntegrationTests-tvOS-resources.sh\"\n";
1108-
showEnvVarsInLog = 0;
1109-
};
1110-
33D71A76E323B9B206883FD3 /* [CP] Copy Pods Resources */ = {
1111-
isa = PBXShellScriptBuildPhase;
1112-
buildActionMask = 2147483647;
1113-
files = (
1114-
);
1115-
inputPaths = (
1116-
);
1117-
name = "[CP] Copy Pods Resources";
1118-
outputPaths = (
1119-
);
1120-
runOnlyForDeploymentPostprocessing = 0;
1121-
shellPath = /bin/sh;
1122-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MetaWear-MetaWear-iOS-MetaWearUnitTests-iOS/Pods-MetaWear-MetaWear-iOS-MetaWearUnitTests-iOS-resources.sh\"\n";
1123-
showEnvVarsInLog = 0;
1124-
};
11251055
346F7A67900D41D94213EBAA /* [CP] Embed Pods Frameworks */ = {
11261056
isa = PBXShellScriptBuildPhase;
11271057
buildActionMask = 2147483647;
@@ -1164,21 +1094,6 @@
11641094
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MetaWearIntegrationTests-iOS/Pods-MetaWearIntegrationTests-iOS-frameworks.sh\"\n";
11651095
showEnvVarsInLog = 0;
11661096
};
1167-
4C09F1E7626F360333C9646E /* [CP] Copy Pods Resources */ = {
1168-
isa = PBXShellScriptBuildPhase;
1169-
buildActionMask = 2147483647;
1170-
files = (
1171-
);
1172-
inputPaths = (
1173-
);
1174-
name = "[CP] Copy Pods Resources";
1175-
outputPaths = (
1176-
);
1177-
runOnlyForDeploymentPostprocessing = 0;
1178-
shellPath = /bin/sh;
1179-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MetaWear-MetaWear-macOS-MetaWearUnitTests-macOS/Pods-MetaWear-MetaWear-macOS-MetaWearUnitTests-macOS-resources.sh\"\n";
1180-
showEnvVarsInLog = 0;
1181-
};
11821097
631C0B8F86757D22D29FFE29 /* [CP] Embed Pods Frameworks */ = {
11831098
isa = PBXShellScriptBuildPhase;
11841099
buildActionMask = 2147483647;
@@ -1219,36 +1134,6 @@
12191134
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";
12201135
showEnvVarsInLog = 0;
12211136
};
1222-
76059A12DB46EEA4A5EB2FAB /* [CP] Copy Pods Resources */ = {
1223-
isa = PBXShellScriptBuildPhase;
1224-
buildActionMask = 2147483647;
1225-
files = (
1226-
);
1227-
inputPaths = (
1228-
);
1229-
name = "[CP] Copy Pods Resources";
1230-
outputPaths = (
1231-
);
1232-
runOnlyForDeploymentPostprocessing = 0;
1233-
shellPath = /bin/sh;
1234-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MetaWearIntegrationTests-iOS/Pods-MetaWearIntegrationTests-iOS-resources.sh\"\n";
1235-
showEnvVarsInLog = 0;
1236-
};
1237-
77910CAAD6167CDAB0AC513B /* [CP] Copy Pods Resources */ = {
1238-
isa = PBXShellScriptBuildPhase;
1239-
buildActionMask = 2147483647;
1240-
files = (
1241-
);
1242-
inputPaths = (
1243-
);
1244-
name = "[CP] Copy Pods Resources";
1245-
outputPaths = (
1246-
);
1247-
runOnlyForDeploymentPostprocessing = 0;
1248-
shellPath = /bin/sh;
1249-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MetaWear-MetaWear-macOS-MetaWearIntegrationTestHost-macOS/Pods-MetaWear-MetaWear-macOS-MetaWearIntegrationTestHost-macOS-resources.sh\"\n";
1250-
showEnvVarsInLog = 0;
1251-
};
12521137
7B23486CC0856302ADECCB77 /* [CP] Check Pods Manifest.lock */ = {
12531138
isa = PBXShellScriptBuildPhase;
12541139
buildActionMask = 2147483647;
@@ -1289,21 +1174,6 @@
12891174
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MetaWear-MetaWear-tvOS-MetaWearIntegrationTestHost-tvOS/Pods-MetaWear-MetaWear-tvOS-MetaWearIntegrationTestHost-tvOS-frameworks.sh\"\n";
12901175
showEnvVarsInLog = 0;
12911176
};
1292-
8320841632EE48A195255044 /* [CP] Copy Pods Resources */ = {
1293-
isa = PBXShellScriptBuildPhase;
1294-
buildActionMask = 2147483647;
1295-
files = (
1296-
);
1297-
inputPaths = (
1298-
);
1299-
name = "[CP] Copy Pods Resources";
1300-
outputPaths = (
1301-
);
1302-
runOnlyForDeploymentPostprocessing = 0;
1303-
shellPath = /bin/sh;
1304-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MetaWearIntegrationTests-macOS/Pods-MetaWearIntegrationTests-macOS-resources.sh\"\n";
1305-
showEnvVarsInLog = 0;
1306-
};
13071177
9247577DE79F1381D2AB2BAE /* [CP] Check Pods Manifest.lock */ = {
13081178
isa = PBXShellScriptBuildPhase;
13091179
buildActionMask = 2147483647;
@@ -1322,21 +1192,6 @@
13221192
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";
13231193
showEnvVarsInLog = 0;
13241194
};
1325-
92FFBAC3FECF5C140A582577 /* [CP] Copy Pods Resources */ = {
1326-
isa = PBXShellScriptBuildPhase;
1327-
buildActionMask = 2147483647;
1328-
files = (
1329-
);
1330-
inputPaths = (
1331-
);
1332-
name = "[CP] Copy Pods Resources";
1333-
outputPaths = (
1334-
);
1335-
runOnlyForDeploymentPostprocessing = 0;
1336-
shellPath = /bin/sh;
1337-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MetaWear-MetaWear-tvOS-MetaWearUnitTests-tvOS/Pods-MetaWear-MetaWear-tvOS-MetaWearUnitTests-tvOS-resources.sh\"\n";
1338-
showEnvVarsInLog = 0;
1339-
};
13401195
ACF38D7B5EFF0974AB9F807B /* [CP] Embed Pods Frameworks */ = {
13411196
isa = PBXShellScriptBuildPhase;
13421197
buildActionMask = 2147483647;
@@ -1433,21 +1288,6 @@
14331288
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";
14341289
showEnvVarsInLog = 0;
14351290
};
1436-
D9290FEB3A49E4F0B96D72C0 /* [CP] Embed Pods Frameworks */ = {
1437-
isa = PBXShellScriptBuildPhase;
1438-
buildActionMask = 2147483647;
1439-
files = (
1440-
);
1441-
inputPaths = (
1442-
);
1443-
name = "[CP] Embed Pods Frameworks";
1444-
outputPaths = (
1445-
);
1446-
runOnlyForDeploymentPostprocessing = 0;
1447-
shellPath = /bin/sh;
1448-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MetaWearIntegrationTests-tvOS/Pods-MetaWearIntegrationTests-tvOS-frameworks.sh\"\n";
1449-
showEnvVarsInLog = 0;
1450-
};
14511291
E483B0530F48198DA665653E /* [CP] Embed Pods Frameworks */ = {
14521292
isa = PBXShellScriptBuildPhase;
14531293
buildActionMask = 2147483647;

0 commit comments

Comments
 (0)