react-native-steerpath-smart-map 1.15.3 → 1.15.4
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
|
@@ -15,12 +15,19 @@ This package is built on top of Steerpath's Smart SDK, and most of releases are
|
|
|
15
15
|
- [iOS](https://s3-eu-west-1.amazonaws.com/steerpath/ios/releases/smart-sdk-changelog/index.html)
|
|
16
16
|
- [Web](https://s3-eu-west-1.amazonaws.com/steerpath-web-sdk/documentation/smart/latest/index.html)
|
|
17
17
|
|
|
18
|
-
# [1.15.
|
|
18
|
+
# [1.15.4] - 2022-05-11
|
|
19
|
+
|
|
20
|
+
- Bump Android Smart SDK to android-smart-1.14.4
|
|
21
|
+
- Update default gradle plugin version to 4.0.2
|
|
22
|
+
|
|
23
|
+
# [1.15.3] - 2022-04-01
|
|
19
24
|
|
|
20
25
|
- Improved typings for SmartMapObject
|
|
21
26
|
|
|
22
|
-
## [1.15.0]
|
|
27
|
+
## [1.15.0] - 2022-03-24
|
|
28
|
+
|
|
23
29
|
- Bump Android Smart SDK to android-smart-1.14.3
|
|
30
|
+
|
|
24
31
|
## [1.14.2] - 2022-02-16
|
|
25
32
|
|
|
26
33
|
- Bump iOS Smart SDK version to 1.15.11
|
package/android/build.gradle
CHANGED
|
@@ -3,6 +3,7 @@ buildscript {
|
|
|
3
3
|
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
4
4
|
}
|
|
5
5
|
repositories {
|
|
6
|
+
mavenCentral()
|
|
6
7
|
google()
|
|
7
8
|
jcenter()
|
|
8
9
|
}
|
|
@@ -10,7 +11,7 @@ buildscript {
|
|
|
10
11
|
dependencies {
|
|
11
12
|
// Matches recent template from React Native (0.60)
|
|
12
13
|
// https://github.com/facebook/react-native/blob/0.60-stable/template/android/build.gradle#L16
|
|
13
|
-
classpath("com.android.tools.build:gradle:${safeExtGet('gradlePluginVersion', '
|
|
14
|
+
classpath("com.android.tools.build:gradle:${safeExtGet('gradlePluginVersion', '4.0.2')}")
|
|
14
15
|
}
|
|
15
16
|
}
|
|
16
17
|
|
|
@@ -59,7 +60,7 @@ repositories {
|
|
|
59
60
|
|
|
60
61
|
dependencies {
|
|
61
62
|
implementation "com.facebook.react:react-native:${safeExtGet('reactnativeVersion', '+')}"
|
|
62
|
-
implementation "com.steerpath:smart:android-smart-1.14.
|
|
63
|
+
implementation "com.steerpath:smart:android-smart-1.14.4"
|
|
63
64
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
|
64
65
|
implementation "androidx.lifecycle:lifecycle-viewmodel:2.2.0"
|
|
65
66
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Wed May 11 12:57:00 EEST 2022
|
|
2
2
|
distributionBase=GRADLE_USER_HOME
|
|
3
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-bin.zip
|
|
3
4
|
distributionPath=wrapper/dists
|
|
4
|
-
zipStoreBase=GRADLE_USER_HOME
|
|
5
5
|
zipStorePath=wrapper/dists
|
|
6
|
-
|
|
6
|
+
zipStoreBase=GRADLE_USER_HOME
|
package/package.json
CHANGED