Skip to content

Commit 12006df

Browse files
Release: 0.4.0 - Hypertrack SDK 6.1.4
1 parent 535d17d commit 12006df

File tree

10 files changed

+45
-45
lines changed

10 files changed

+45
-45
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

3-
## [0.3.1] - 2022-07-5
3+
## [0.4.0] - 2022-07-07
4+
#### Changed
5+
- Android SDK updated to v6.1.4
6+
7+
## [0.3.1] - 2022-07-05
48
#### Fixed
59
- Android null type safety plugin fixes
610

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![GitHub](https://img.shields.io/github/license/hypertrack/sdk-flutter.svg)
44
[![Pub Version](https://img.shields.io/pub/v/hypertrack_plugin?color=blueviolet)](https://pub.dev/packages/hypertrack_plugin)
55
[![iOS SDK](https://img.shields.io/badge/iOS%20SDK-4.7.0-brightgreen.svg)](https://cocoapods.org/pods/HyperTrack)
6-
![Android SDK](https://img.shields.io/badge/Android%20SDK-5.4.5-brightgreen.svg)
6+
![Android SDK](https://img.shields.io/badge/Android%20SDK-6.1.4-brightgreen.svg)
77

88
[HyperTrack](https://www.hypertrack.com) lets you add live location tracking to your mobile app in a reliable and battery efficient way.
99

android/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ group 'com.hypertrack.sdk.flutter'
22
version '0.0.1-SNAPSHOT'
33

44
buildscript {
5-
ext.kotlin_version = '1.4.32'
5+
ext.kotlin_version = '1.6.10'
66
repositories {
77
mavenCentral()
88
google()
@@ -30,20 +30,20 @@ apply plugin: 'com.android.library'
3030
apply plugin: 'kotlin-android'
3131

3232
android {
33-
compileSdkVersion 30
33+
compileSdkVersion 31
3434

3535
sourceSets {
3636
main.java.srcDirs += 'src/main/kotlin'
3737
}
3838
defaultConfig {
39-
minSdkVersion 21
39+
minSdkVersion 23
4040
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
4141
}
4242
lintOptions {
4343
disable 'InvalidPackage'
4444
}
4545
dependencies {
46-
implementation 'com.hypertrack:hypertrack:5.4.5'
46+
implementation 'com.hypertrack:hypertrack:6.1.4'
4747
}
4848
}
4949

example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
2626
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2727

2828
android {
29-
compileSdkVersion 30
29+
compileSdkVersion 31
3030

3131
sourceSets {
3232
main.java.srcDirs += 'src/main/kotlin'
@@ -39,7 +39,7 @@ android {
3939
defaultConfig {
4040
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
4141
applicationId "com.hypertrack.sdk.hypertrack_example"
42-
minSdkVersion 21
42+
minSdkVersion 23
4343
targetSdkVersion 30
4444
versionCode flutterVersionCode.toInteger()
4545
versionName flutterVersionName

example/android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
additional functionality it is fine to subclass or reimplement
77
FlutterApplication and put your custom class here. -->
88
<application
9-
android:name="io.flutter.app.FlutterApplication"
9+
android:name="${applicationName}"
1010
android:label="hypertrack_example"
1111
android:icon="@mipmap/ic_launcher">
1212
<activity
13-
android:name=".MainActivity"
13+
android:name="io.flutter.embedding.android.FlutterActivity"
1414
android:launchMode="singleTop"
1515
android:theme="@style/LaunchTheme"
1616
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"

example/android/app/src/main/kotlin/com/hypertrack/sdk/hypertrack_example/MainActivity.kt

Lines changed: 0 additions & 12 deletions
This file was deleted.

example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.4.32'
2+
ext.kotlin_version = '1.6.10'
33
repositories {
44
google()
55
mavenCentral()

example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@ String getTrackingStatus (TrackingStateChange event) {
114114
throw Exception("Unexpected null value in getTrackingStatus");
115115
}
116116
return statusMap[event]!;
117-
}
117+
}

example/pubspec.lock

Lines changed: 28 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
name: async
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "2.6.1"
10+
version: "2.8.2"
1111
boolean_selector:
1212
dependency: transitive
1313
description:
@@ -21,14 +21,14 @@ packages:
2121
name: characters
2222
url: "https://pub.dartlang.org"
2323
source: hosted
24-
version: "1.1.0"
24+
version: "1.2.0"
2525
charcode:
2626
dependency: transitive
2727
description:
2828
name: charcode
2929
url: "https://pub.dartlang.org"
3030
source: hosted
31-
version: "1.2.0"
31+
version: "1.3.1"
3232
clock:
3333
dependency: transitive
3434
description:
@@ -42,7 +42,7 @@ packages:
4242
name: collection
4343
url: "https://pub.dartlang.org"
4444
source: hosted
45-
version: "1.15.0"
45+
version: "1.16.0"
4646
cupertino_icons:
4747
dependency: "direct main"
4848
description:
@@ -56,7 +56,7 @@ packages:
5656
name: fake_async
5757
url: "https://pub.dartlang.org"
5858
source: hosted
59-
version: "1.2.0"
59+
version: "1.3.0"
6060
flutter:
6161
dependency: "direct main"
6262
description: flutter
@@ -73,28 +73,42 @@ packages:
7373
path: ".."
7474
relative: true
7575
source: path
76-
version: "0.2.0"
76+
version: "0.3.1"
7777
matcher:
7878
dependency: transitive
7979
description:
8080
name: matcher
8181
url: "https://pub.dartlang.org"
8282
source: hosted
83-
version: "0.12.10"
83+
version: "0.12.11"
84+
material_color_utilities:
85+
dependency: transitive
86+
description:
87+
name: material_color_utilities
88+
url: "https://pub.dartlang.org"
89+
source: hosted
90+
version: "0.1.4"
8491
meta:
8592
dependency: transitive
8693
description:
8794
name: meta
8895
url: "https://pub.dartlang.org"
8996
source: hosted
90-
version: "1.3.0"
97+
version: "1.7.0"
9198
path:
9299
dependency: transitive
93100
description:
94101
name: path
95102
url: "https://pub.dartlang.org"
96103
source: hosted
97-
version: "1.8.0"
104+
version: "1.8.1"
105+
plugin_platform_interface:
106+
dependency: transitive
107+
description:
108+
name: plugin_platform_interface
109+
url: "https://pub.dartlang.org"
110+
source: hosted
111+
version: "2.1.2"
98112
sky_engine:
99113
dependency: transitive
100114
description: flutter
@@ -106,7 +120,7 @@ packages:
106120
name: source_span
107121
url: "https://pub.dartlang.org"
108122
source: hosted
109-
version: "1.8.1"
123+
version: "1.8.2"
110124
stack_trace:
111125
dependency: transitive
112126
description:
@@ -141,20 +155,14 @@ packages:
141155
name: test_api
142156
url: "https://pub.dartlang.org"
143157
source: hosted
144-
version: "0.3.0"
145-
typed_data:
146-
dependency: transitive
147-
description:
148-
name: typed_data
149-
url: "https://pub.dartlang.org"
150-
source: hosted
151-
version: "1.3.0"
158+
version: "0.4.9"
152159
vector_math:
153160
dependency: transitive
154161
description:
155162
name: vector_math
156163
url: "https://pub.dartlang.org"
157164
source: hosted
158-
version: "2.1.0"
165+
version: "2.1.2"
159166
sdks:
160-
dart: ">=2.12.0 <3.0.0"
167+
dart: ">=2.17.0-0 <3.0.0"
168+
flutter: ">=1.10.0"

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: hypertrack_plugin
22
description: Flutter plugin for HyperTrack, a cross-platform location tracking solution for Android and iOS
33
repository: https://github.com/hypertrack/sdk-flutter
4-
version: 0.3.1
4+
version: 0.4.0
55
homepage: https://www.hypertrack.com/
66

77
environment:

0 commit comments

Comments
 (0)