Skip to content

Commit bf8970d

Browse files
Framework commit, version 4.0.0-beta9, see CHANGELOG.md
1 parent e2619b1 commit bf8970d

File tree

79 files changed

+129190
-3859
lines changed

Some content is hidden

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

79 files changed

+129190
-3859
lines changed

MapsIndoors.podspec

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

99
Pod::Spec.new do |s|
1010
s.name = 'MapsIndoors'
11-
s.version = '4.0.0-beta8'
11+
s.version = '4.0.0-beta9'
1212
s.summary = 'Library making the MapsIndoors experience available to your iOS users.'
1313
s.description = "The MapsIndoors SDK is the idea of integrating everything at your venue, like people, goods, offices, shops, rooms and buildings with the mapping, positioning and wayfinding technologies provided in the MapsIndoors platform. We make the MapsIndoors platform available to interested businesses and/or partners. So if you think you should be one of them, please call us or send us an email. Meanwhile, you are most welcome to check out the demo project using 'pod try MapsIndoors'."
1414

MapsIndoors.xcframework.zip

26.6 KB
Binary file not shown.

MapsIndoors.xcframework/Info.plist

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@
66
<array>
77
<dict>
88
<key>LibraryIdentifier</key>
9-
<string>ios-arm64</string>
9+
<string>ios-arm64_x86_64-simulator</string>
1010
<key>LibraryPath</key>
1111
<string>MapsIndoors.framework</string>
1212
<key>SupportedArchitectures</key>
1313
<array>
1414
<string>arm64</string>
15+
<string>x86_64</string>
1516
</array>
1617
<key>SupportedPlatform</key>
1718
<string>ios</string>
19+
<key>SupportedPlatformVariant</key>
20+
<string>simulator</string>
1821
</dict>
1922
<dict>
2023
<key>LibraryIdentifier</key>
21-
<string>ios-arm64_x86_64-simulator</string>
24+
<string>ios-arm64</string>
2225
<key>LibraryPath</key>
2326
<string>MapsIndoors.framework</string>
2427
<key>SupportedArchitectures</key>
2528
<array>
2629
<string>arm64</string>
27-
<string>x86_64</string>
2830
</array>
2931
<key>SupportedPlatform</key>
3032
<string>ios</string>
31-
<key>SupportedPlatformVariant</key>
32-
<string>simulator</string>
3333
</dict>
3434
</array>
3535
<key>CFBundlePackageType</key>

MapsIndoors.xcframework/ios-arm64/MapsIndoors.framework/Headers/MapsIndoors-Swift.h

+8-1
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,7 @@ SWIFT_CLASS("_TtC11MapsIndoors24MPAvailabilityLiveUpdate")
330330
@interface MPAvailabilityLiveUpdate : MPLiveUpdate
331331
/// The availability state for a given Location.
332332
@property (nonatomic, readonly) BOOL available;
333+
- (nonnull instancetype)initWithLiveUpdate:(MPLiveUpdate * _Nonnull)withLiveUpdate OBJC_DESIGNATED_INITIALIZER;
333334
@end
334335

335336
@protocol MPBuilding;
@@ -552,6 +553,7 @@ SWIFT_CLASS("_TtC11MapsIndoors15MPCO2LiveUpdate")
552553
@interface MPCO2LiveUpdate : MPLiveUpdate
553554
/// The measured CO2 level for a given Location. Base unit is Parts Per Million (PPM).
554555
@property (nonatomic, readonly, copy) NSMeasurement<NSUnitDispersion *> * _Nonnull co2Level;
556+
- (nonnull instancetype)initWithLiveUpdate:(MPLiveUpdate * _Nonnull)withLiveUpdate OBJC_DESIGNATED_INITIALIZER;
555557
@end
556558

557559

@@ -641,6 +643,7 @@ SWIFT_CLASS("_TtC11MapsIndoors17MPCountLiveUpdate")
641643
@interface MPCountLiveUpdate : MPLiveUpdate
642644
/// The number of times an arbitrary event has been fired for a given Location.
643645
@property (nonatomic, readonly) NSInteger count;
646+
- (nonnull instancetype)initWithLiveUpdate:(MPLiveUpdate * _Nonnull)withLiveUpdate OBJC_DESIGNATED_INITIALIZER;
644647
@end
645648

646649
@class UIImage;
@@ -1570,6 +1573,7 @@ SWIFT_CLASS("_TtC11MapsIndoors20MPHumidityLiveUpdate")
15701573
@interface MPHumidityLiveUpdate : MPLiveUpdate
15711574
/// The measured relative humidity for a given Location.
15721575
@property (nonatomic, readonly, copy) NSMeasurement<MPHumidity *> * _Nonnull relativeHumidity;
1576+
- (nonnull instancetype)initWithLiveUpdate:(MPLiveUpdate * _Nonnull)withLiveUpdate OBJC_DESIGNATED_INITIALIZER;
15731577
@end
15741578

15751579

@@ -2000,6 +2004,7 @@ SWIFT_CLASS("_TtC11MapsIndoors21MPOccupancyLiveUpdate")
20002004
@property (nonatomic, readonly) NSInteger capacity;
20012005
/// The number of people measured for a given Location.
20022006
@property (nonatomic, readonly) NSInteger numberOfPeople;
2007+
- (nonnull instancetype)initWithLiveUpdate:(MPLiveUpdate * _Nonnull)withLiveUpdate OBJC_DESIGNATED_INITIALIZER;
20032008
@end
20042009

20052010

@@ -2076,6 +2081,7 @@ SWIFT_CLASS("_TtC11MapsIndoors20MPPositionLiveUpdate")
20762081
@property (nonatomic, readonly) NSInteger floorIndex;
20772082
/// The geographic coordinates.
20782083
@property (nonatomic, readonly) CLLocationCoordinate2D position;
2084+
- (nonnull instancetype)initWithLiveUpdate:(MPLiveUpdate * _Nonnull)withLiveUpdate OBJC_DESIGNATED_INITIALIZER;
20792085
@end
20802086

20812087
@protocol MPPositionProviderDelegate;
@@ -2349,7 +2355,7 @@ SWIFT_PROTOCOL("_TtP11MapsIndoors10MPSolution_")
23492355
@property (nonatomic, readonly, copy) NSString * _Nonnull name;
23502356
/// Optionally contains configuration data for the positioning systems used with the solution.
23512357
/// The content of the configuration dictionaries are specific for the positioning system.
2352-
@property (nonatomic, readonly, copy) NSDictionary<NSString *, NSDictionary<NSString *, NSString *> *> * _Nullable positionProviderConfigs;
2358+
@property (nonatomic, readonly, copy) NSDictionary<NSString *, NSDictionary<NSString *, id> *> * _Nullable positionProviderConfigs;
23532359
@property (nonatomic, readonly, copy) NSArray<id <MPType>> * _Nonnull types;
23542360
/// Get a link for a location in a specific venue, for use with the web-client.
23552361
- (NSString * _Nullable)getMapClientUrlForVenueId:(NSString * _Nonnull)venueId locationId:(NSString * _Nonnull)locationId SWIFT_WARN_UNUSED_RESULT;
@@ -2424,6 +2430,7 @@ typedef SWIFT_ENUM(NSInteger, MPSubscriptionState, open) {
24242430
SWIFT_CLASS("_TtC11MapsIndoors23MPTemperatureLiveUpdate")
24252431
@interface MPTemperatureLiveUpdate : MPLiveUpdate
24262432
@property (nonatomic, readonly, copy) NSMeasurement<NSUnitTemperature *> * _Nonnull temperature;
2433+
- (nonnull instancetype)initWithLiveUpdate:(MPLiveUpdate * _Nonnull)withLiveUpdate OBJC_DESIGNATED_INITIALIZER;
24272434
@end
24282435

24292436

Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)