hypertrack-sdk-react-native 7.18.4 → 7.19.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 +7 -0
- package/README.md +2 -2
- package/android/build.gradle +1 -1
- package/hypertrack-sdk-react-native.podspec +1 -1
- package/ios/RNHyperTrack.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/ios/RNHyperTrack.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/RNHyperTrack.xcodeproj/project.xcworkspace/xcuserdata/tulushev.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/RNHyperTrack.xcodeproj/xcuserdata/tulushev.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ 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.19.0] - 2022-07-18
|
|
8
|
+
### Changed
|
|
9
|
+
- Updated HyperTrack Android SDK to 6.2.0 and iOS SDK to 4.12.4
|
|
10
|
+
|
|
7
11
|
## [7.18.4] - 2022-06-15
|
|
8
12
|
### Changed
|
|
9
13
|
- Updated HyperTrack Android SDK to 6.1.4
|
|
@@ -273,6 +277,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
273
277
|
Initial release.
|
|
274
278
|
|
|
275
279
|
|
|
280
|
+
[7.19.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.19.0
|
|
281
|
+
[7.18.4]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.18.4
|
|
282
|
+
[7.18.3]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.18.3
|
|
276
283
|
[7.18.2]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.18.2
|
|
277
284
|
[7.18.1]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.18.1
|
|
278
285
|
[7.18.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.18.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.2.0"
|
|
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.12.
|
|
15
|
+
s.dependency 'HyperTrack/Objective-C', '4.12.4'
|
|
16
16
|
s.source_files = "ios/*.{xcodeproj}", "ios/RNHyperTrack/*.{h,m}"
|
|
17
17
|
s.cocoapods_version = '>= 1.10.0'
|
|
18
18
|
end
|
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>SchemeUserState</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>RNHyperTrack.xcscheme_^#shared#^_</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>0</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
</dict>
|
|
13
|
+
</dict>
|
|
14
|
+
</plist>
|
package/package.json
CHANGED