@blueconic/blueconic-react-native 4.0.1 → 4.0.3
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
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
`@blueconic/blueconic-react-native` adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
+
## [4.0.3] 2025-04-08
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- React-Android: Fixed issue with the Fullscreen Lightbox not loading JavaScript correctly in certain cases.
|
|
9
|
+
- React-iOS: Fixed issue where profile operations were not invoking the success callback if the operation was successful.
|
|
10
|
+
- React-iOS: Fixed issue with Fullscreen Lightbox not loading correctly in some cases.
|
|
11
|
+
|
|
12
|
+
## [4.0.2] 2025-02-21
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- Additional callback error type for when the SDK has no internet connection.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- React-Android: Fixed the issue with the install referrer causing DeadObjectException when the SDK was initialized.
|
|
19
|
+
- React-Android & iOS: Fixed issue where the SDK would report that it is not enabled, but another error occurred, like no internet connection.
|
|
20
|
+
- React-Android: Improved network detection logic for the SDK.
|
|
21
|
+
|
|
5
22
|
## [4.0.1] 2025-01-24
|
|
6
23
|
|
|
7
24
|
### Fixed
|
|
@@ -10,8 +27,8 @@ All notable changes to this project will be documented in this file.
|
|
|
10
27
|
## [4.0.0] 2024-12-18
|
|
11
28
|
|
|
12
29
|
### Changed
|
|
13
|
-
- React
|
|
14
|
-
- React
|
|
30
|
+
- React-Android: Removed the requirement to create an 'XML' configuration file for the SDK. The SDK must now be initialized with a 'BlueConicConfiguration' object in the code via an 'initialize' function.
|
|
31
|
+
- React-iOS: Removed the requirement to add your hostname to the app's plist files. The SDK now requires initialization with a 'BlueConicConfiguration' object in the code via an 'initialize' function.
|
|
15
32
|
- Reworked the SDK to require an initialization step before any other SDK functions can be called.
|
|
16
33
|
- Renamed the event methods for 'PageView', 'Click', 'View', and 'Conversion'.
|
|
17
34
|
- Renamed the even methods for 'ClickEvent', 'AdvancedEvent', 'FormSubmitEvent', 'UpdateContentEvent', and 'UpdateValuesEvent'.
|
package/android/build.gradle
CHANGED
|
@@ -24,10 +24,10 @@ android {
|
|
|
24
24
|
defaultConfig {
|
|
25
25
|
minSdkVersion 21
|
|
26
26
|
targetSdkVersion 34
|
|
27
|
-
versionCode
|
|
28
|
-
versionName "4.0.
|
|
27
|
+
versionCode 403
|
|
28
|
+
versionName "4.0.3"
|
|
29
29
|
buildConfigField 'String', 'PLATFORM_NAME', "\"React Native\""
|
|
30
|
-
buildConfigField 'String', 'PLATFORM_VERSION', "\"4.0.
|
|
30
|
+
buildConfigField 'String', 'PLATFORM_VERSION', "\"4.0.3\""
|
|
31
31
|
}
|
|
32
32
|
lintOptions {
|
|
33
33
|
abortOnError false
|
|
@@ -48,12 +48,12 @@ repositories {
|
|
|
48
48
|
|
|
49
49
|
dependencies {
|
|
50
50
|
compileOnly 'com.facebook.react:react-android:+'
|
|
51
|
-
implementation 'com.blueconic:blueconic-android-lib:6.0.
|
|
51
|
+
implementation 'com.blueconic:blueconic-android-lib:6.0.4'
|
|
52
52
|
|
|
53
53
|
testImplementation 'androidx.core:core-ktx:1.13.1'
|
|
54
54
|
testImplementation 'junit:junit:4.13.2'
|
|
55
55
|
testImplementation "io.mockk:mockk:1.12.5"
|
|
56
56
|
testImplementation 'com.facebook.react:react-android:+'
|
|
57
|
-
testImplementation 'com.blueconic:blueconic-android-lib:6.0.
|
|
57
|
+
testImplementation 'com.blueconic:blueconic-android-lib:6.0.4'
|
|
58
58
|
implementation "org.jetbrains.kotlin:kotlin-reflect:1.9.24"
|
|
59
59
|
}
|
|
@@ -9,7 +9,7 @@ import BlueConicClient
|
|
|
9
9
|
@objc(BlueConicClientModule)
|
|
10
10
|
class BlueConicClientModule: RCTEventEmitter {
|
|
11
11
|
private static var platformName: String = "React Native"
|
|
12
|
-
private static var platformVersion: String = "4.0.
|
|
12
|
+
private static var platformVersion: String = "4.0.3"
|
|
13
13
|
private static var moduleInstance: BlueConicClientModule?
|
|
14
14
|
private static var hasListeners: Bool?
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blueconic/blueconic-react-native",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.3",
|
|
4
4
|
"description": "The BlueConicClient Framework provides the basis for communicating with BlueConic.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"author": "BlueConic (info@blueconic.com)",
|
|
27
27
|
"license": "SEE LICENSE IN LICENSE",
|
|
28
28
|
"nativeDependencies": {
|
|
29
|
-
"android": "6.0.
|
|
30
|
-
"ios": "4.0.
|
|
29
|
+
"android": "6.0.4",
|
|
30
|
+
"ios": "4.0.2"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"react-native": "<1.0.0"
|