hypertrack-sdk-react-native 7.15.0 → 7.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [7.18.0] - 2022-06-09
|
|
8
|
+
### Changed
|
|
9
|
+
- Updated HyperTrack Android SDK to 6.1.2 and iOS SDK to 4.12.0
|
|
10
|
+
|
|
11
|
+
## [7.17.0] - 2022-06-03
|
|
12
|
+
### Changed
|
|
13
|
+
- Updated HyperTrack Android SDK to 6.1.1
|
|
14
|
+
|
|
15
|
+
## [7.16.0] - 2022-05-03
|
|
16
|
+
### Changed
|
|
17
|
+
- Updated HyperTrack Android SDK to [6.0.4](https://github.com/hypertrack/sdk-android/blob/master/CHANGELOG.md#604---2022-04-29)
|
|
18
|
+
|
|
19
|
+
## [7.16.0] - 2022-05-03
|
|
20
|
+
### Changed
|
|
21
|
+
- Updated HyperTrack Android SDK to [6.0.4](https://github.com/hypertrack/sdk-android/blob/master/CHANGELOG.md#604---2022-04-29)
|
|
22
|
+
|
|
23
|
+
## [7.15.0] - 2022-04-29
|
|
24
|
+
### Added
|
|
25
|
+
- Current location getter returns either the current location of the device or an outage reason for why current location is unavailable.
|
|
26
|
+
|
|
7
27
|
## [7.14.0] - 2022-03-24
|
|
8
28
|
### Changed
|
|
9
29
|
- Updated HyperTrack Android SDK to [6.0.2](https://github.com/hypertrack/sdk-android/blob/master/CHANGELOG.md#602---2022-03-18)
|
|
@@ -236,6 +256,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
236
256
|
## [1.0.0] - 2019-06-07
|
|
237
257
|
Initial release.
|
|
238
258
|
|
|
259
|
+
|
|
260
|
+
[7.18.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.18.0
|
|
261
|
+
[7.17.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.17.0
|
|
262
|
+
[7.16.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.16.0
|
|
263
|
+
[7.15.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.15.0
|
|
264
|
+
[7.14.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.14.0
|
|
239
265
|
[7.13.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.13.0
|
|
240
266
|
[7.12.1]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.12.1
|
|
241
267
|
[7.12.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.12.0
|
package/README.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|

|
|
5
|
-
[](https://cocoapods.org/pods/HyperTrack)
|
|
6
|
+

|
|
7
7
|
|
|
8
8
|
[HyperTrack](https://www.hypertrack.com) lets you add live location tracking to your mobile app. Live location is made available along with ongoing activity, tracking controls and tracking outage with reasons.
|
|
9
9
|
|
package/android/build.gradle
CHANGED
|
@@ -15,7 +15,7 @@ def DEFAULT_COMPILE_SDK_VERSION = 30
|
|
|
15
15
|
def DEFAULT_BUILD_TOOLS_VERSION = "30.0.2"
|
|
16
16
|
def DEFAULT_MIN_SDK_VERSION = 21
|
|
17
17
|
def DEFAULT_TARGET_SDK_VERSION = 30
|
|
18
|
-
def DEFAULT_HYPERTRACK_SDK_VERSION = "6.
|
|
18
|
+
def DEFAULT_HYPERTRACK_SDK_VERSION = "6.1.2"
|
|
19
19
|
|
|
20
20
|
def HYPERTRACK_SDK_VERSION = rootProject.hasProperty('hypertrackSdkVersion') ? rootProject.hypertrackSdkVersion : DEFAULT_HYPERTRACK_SDK_VERSION
|
|
21
21
|
|
|
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
|
|
|
12
12
|
s.source = { :git => 'https://github.com/hypertrack/sdk-react-native.git' }
|
|
13
13
|
s.platform = :ios, '11.0'
|
|
14
14
|
s.dependency 'React-Core'
|
|
15
|
-
s.dependency 'HyperTrack/Objective-C', '4.
|
|
15
|
+
s.dependency 'HyperTrack/Objective-C', '4.12.0'
|
|
16
16
|
s.source_files = "ios/*.{xcodeproj}", "ios/RNHyperTrack/*.{h,m}"
|
|
17
17
|
s.cocoapods_version = '>= 1.10.0'
|
|
18
18
|
end
|
|
Binary file
|
package/package.json
CHANGED