Skip to content

Commit 007083a

Browse files
authored
Merge pull request #191 from adjust/v501
Version 5.0.1
2 parents fea92cb + b963692 commit 007083a

File tree

14 files changed

+38
-25
lines changed

14 files changed

+38
-25
lines changed

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
### Version 5.0.1 (23rd September 2024)
2+
#### Fixed
3+
- Fixed errors from `index.ts` (https://github.com/adjust/cordova_sdk/issues/190).
4+
- Fixed occasional ANRs while reading install referrer from Shared Preferences during the SDK initialization.
5+
6+
#### Native SDKs
7+
- [iOS@v5.0.1][ios_sdk_v5.0.1]
8+
- [Android@v5.0.1][android_sdk_v5.0.1]
9+
10+
---
11+
112
### Version 5.0.0 (14th September 2024)
213

314
We're excited to release our major new SDK version (v5). Among many internal improvements, our spoofing protection solution is now included out of the box, reinforcing our commitment to accurate, actionable, and fraud-free data.
@@ -9,7 +20,7 @@ If you are a current Adjust client and have questions about SDK v5, please email
920
In case you were using beta version of the SDK v5, please switch to the official v5 release.
1021

1122
#### Native SDKs
12-
- [iOS@v5.0.0][ios_sdk_v5.0.0]
23+
- [iOS@v5.0.1][ios_sdk_v5.0.1]
1324
- [Android@v5.0.0][android_sdk_v5.0.0]
1425

1526
---
@@ -703,6 +714,7 @@ In case you were using beta version of the SDK v5, please switch to the official
703714
[ios_sdk_v4.38.0]: https://github.com/adjust/ios_sdk/tree/v4.38.0
704715
[ios_sdk_v4.38.2]: https://github.com/adjust/ios_sdk/tree/v4.38.2
705716
[ios_sdk_v5.0.0]: https://github.com/adjust/ios_sdk/tree/v5.0.0
717+
[ios_sdk_v5.0.1]: https://github.com/adjust/ios_sdk/tree/v5.0.1
706718

707719
[android_sdk_v3.5.0]: https://github.com/adjust/android_sdk/tree/v3.5.0
708720
[android_sdk_v4.1.0]: https://github.com/adjust/android_sdk/tree/v4.1.0
@@ -737,4 +749,5 @@ In case you were using beta version of the SDK v5, please switch to the official
737749
[android_sdk_v4.35.1]: https://github.com/adjust/android_sdk/tree/v4.35.1
738750
[android_sdk_v4.38.0]: https://github.com/adjust/android_sdk/tree/v4.38.0
739751
[android_sdk_v4.38.3]: https://github.com/adjust/android_sdk/tree/v4.38.3
740-
[android_sdk_v5.0.0]: https://github.com/adjust/android_sdk/tree/v5.0.0
752+
[android_sdk_v5.0.0]: https://github.com/adjust/android_sdk/tree/v5.0.0
753+
[android_sdk_v5.0.1]: https://github.com/adjust/android_sdk/tree/v5.0.1

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.0
1+
5.0.1

ext/android/sdk

Submodule sdk updated 32 files

ext/ios/sdk

Submodule sdk updated from 21fbb82 to cfa3d1a

ionic-native/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ export class AdjustConfig {
3939
private eventTrackingFailedCallback: (event: AdjustEventFailure) => void = null;
4040
private sessionTrackingSucceededCallback: (session: AdjustSessionSuccess) => void = null;
4141
private sessionTrackingFailedCallback: (session: AdjustSessionFailure) => void = null;
42-
private deferredDeeplinkCallback: (uri: string) => void = null;
43-
private skanUpdatedCallback: (skad4Data: AdjustSkanData) => void = null;
42+
private deferredDeeplinkCallback: (deeplink: string) => void = null;
43+
private skanUpdatedCallback: (skanData: AdjustSkanData) => void = null;
4444

4545
constructor(appToken: string, environment: AdjustEnvironment) {
4646
this.appToken = appToken;
@@ -479,7 +479,7 @@ export interface AdjustEventFailure {
479479
jsonResponse: string;
480480
}
481481

482-
export interface AdjustSkadData {
482+
export interface AdjustSkanData {
483483
conversionValue: number;
484484
coarseValue: string;
485485
lockWindow: boolean;
@@ -534,7 +534,7 @@ export enum AdjustLogLevel {
534534
* AdjustSessionFailure
535535
* AdjustEventSuccess
536536
* AdjustEventFailure
537-
* AdjustSkadData
537+
* AdjustSkanData
538538
* AdjustPurchaseVerificationResult
539539
* @classes
540540
* AdjustConfig
@@ -776,7 +776,7 @@ export class Adjust extends AwesomeCordovaNativePlugin {
776776
* If all keys and values from the global callback parameters have to be removed, call this method
777777
*/
778778
@Cordova({ sync: true })
779-
removeGlobalPartnerParameter(): void {}
779+
removeGlobalCallbackParameters(): void {}
780780

781781
/**
782782
* Method used to add global partner parameters

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.0.0",
2+
"version": "5.0.1",
33
"name": "com.adjust.sdk",
44
"cordova_name": "Adjust SDK Cordova Plugin",
55
"description": "Cordova plugin for the Adjust SDK",

plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="com.adjust.sdk"
5-
version="5.0.0">
5+
version="5.0.1">
66

77
<name>Adjust</name>
88
<description>Adjust plugin for Cordova</description>
@@ -74,7 +74,7 @@
7474
<source-file src="src/android/AdjustCordova.java" target-dir="src/com/adjust/sdk" />
7575
<source-file src="src/android/AdjustCordovaUtils.java" target-dir="src/com/adjust/sdk" />
7676

77-
<framework src="com.adjust.sdk:adjust-android:5.0.0"/>
77+
<framework src="com.adjust.sdk:adjust-android:5.0.1"/>
7878
<framework src="com.google.android.gms:play-services-ads-identifier:18.0.1" />
7979
<framework src="com.android.installreferrer:installreferrer:2.2" />
8080
</platform>

src/android/AdjustCordova.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ private void executeInitSdk(final JSONArray args) throws JSONException {
209209
adjustConfig.setLogLevel(LogLevel.ASSERT);
210210
break;
211211
case "SUPPRESS":
212-
adjustConfig.setLogLevel(LogLevel.SUPRESS);
212+
adjustConfig.setLogLevel(LogLevel.SUPPRESS);
213213
break;
214214
case "INFO":
215215
default:

test/app/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "com.adjust.examples",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"displayName": "AdjustTestApp",
55
"cordova": {
66
"platforms": [
7-
"ios",
8-
"android"
7+
"android",
8+
"ios"
99
],
1010
"plugins": {
1111
"cordova-plugin-console": {},

0 commit comments

Comments
 (0)