Skip to content

Commit

Permalink
Update IndoorAtlas SDKs to 3.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
matti-ida authored Oct 24, 2023
1 parent e16e6d0 commit 3eb24c3
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 3.6.1 - October 2023
----------------
* Update IndoorAtlas SDKs to 3.6.4

Version 3.6.0 - June 2023
----------------
* Update IndoorAtlas SDKs to 3.6.3
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-indooratlas",
"version": "3.6.0",
"version": "3.6.1",
"description": "Cordova plugin using IndoorAtlas SDK.",
"cordova": {
"id": "cordova-plugin-indooratlas",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-indooratlas"
version="3.6.0">
version="3.6.1">

<name>IndoorAtlas</name>
<description>IndoorAtlas Cordova Plugin.</description>
Expand Down
2 changes: 1 addition & 1 deletion src/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ repositories {

dependencies {
implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.indooratlas.android:indooratlas-android-sdk:3.6.3'
implementation 'com.indooratlas.android:indooratlas-android-sdk:3.6.4'
}
Original file line number Diff line number Diff line change
Expand Up @@ -748,6 +748,15 @@ INDOORATLAS_API
* NOTE! To enable the callback, please contact IndoorAtlas support.
*/
- (void)indoorLocationManager:(nonnull IALocationManager*)manager didRangeBeacons:(nonnull NSArray<CLBeacon*>*)beacons;
/**
* Tells the delegate that an error occurred while gathering ranging information for a set of beacons.
*
* `[IALocationManager startMonitoringForBeacons]` must be called first.
*
* NOTE! To enable the callback, please contact IndoorAtlas support.
*/
- (void)indoorLocationManager:(nonnull IALocationManager*)manager rangingBeaconsDidFailForRegion:(nonnull CLBeaconRegion *)region
withError:(nonnull NSError *)error;
@end

/**
Expand Down Expand Up @@ -1012,6 +1021,13 @@ INDOORATLAS_API
*/
- (void)stopMonitoringForBeacons;

/**
* Finish recording binary log data.
* This method is mainly meant for enterprise users to share debug data with the IndoorAtlas support.
* If your API key already has data storage enabled, there is no need to use this method.
*/
- (void)finishRecordingBinaryLog:(void(^_Nonnull)(NSData *_Nonnull))callback;

/**
* Returns the shared <IALocationManager> instance.
*/
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -748,6 +748,15 @@ INDOORATLAS_API
* NOTE! To enable the callback, please contact IndoorAtlas support.
*/
- (void)indoorLocationManager:(nonnull IALocationManager*)manager didRangeBeacons:(nonnull NSArray<CLBeacon*>*)beacons;
/**
* Tells the delegate that an error occurred while gathering ranging information for a set of beacons.
*
* `[IALocationManager startMonitoringForBeacons]` must be called first.
*
* NOTE! To enable the callback, please contact IndoorAtlas support.
*/
- (void)indoorLocationManager:(nonnull IALocationManager*)manager rangingBeaconsDidFailForRegion:(nonnull CLBeaconRegion *)region
withError:(nonnull NSError *)error;
@end

/**
Expand Down Expand Up @@ -1012,6 +1021,13 @@ INDOORATLAS_API
*/
- (void)stopMonitoringForBeacons;

/**
* Finish recording binary log data.
* This method is mainly meant for enterprise users to share debug data with the IndoorAtlas support.
* If your API key already has data storage enabled, there is no need to use this method.
*/
- (void)finishRecordingBinaryLog:(void(^_Nonnull)(NSData *_Nonnull))callback;

/**
* Returns the shared <IALocationManager> instance.
*/
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit 3eb24c3

Please sign in to comment.