From 907d853177cb1482b1d5e31a145a2d26bf009441 Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Thu, 28 Nov 2024 16:11:59 +0200 Subject: [PATCH 01/26] update cordova project --- plugin.xml | 4 ++-- .../com/appsflyer/cordova/plugin/AppsFlyerConstants.java | 2 +- src/android/cordovaAF.gradle | 2 +- src/ios/AppsFlyerPlugin.m | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugin.xml b/plugin.xml index d468a3d2..1b92a92b 100644 --- a/plugin.xml +++ b/plugin.xml @@ -21,7 +21,7 @@ + version="6.15.3-rc1"> AppsFlyer Cordova Plugin AppsFlyer Apache 2.0 @@ -91,7 +91,7 @@ - + diff --git a/src/android/com/appsflyer/cordova/plugin/AppsFlyerConstants.java b/src/android/com/appsflyer/cordova/plugin/AppsFlyerConstants.java index 7acf7db9..cbf56fb7 100644 --- a/src/android/com/appsflyer/cordova/plugin/AppsFlyerConstants.java +++ b/src/android/com/appsflyer/cordova/plugin/AppsFlyerConstants.java @@ -6,7 +6,7 @@ public class AppsFlyerConstants { - final static String PLUGIN_VERSION = "6.15.1"; + final static String PLUGIN_VERSION = "6.15.2"; final static String NO_DEVKEY_FOUND = "AppsFlyer 'devKey' is missing or empty"; final static String NO_GCM_PROJECT_NUMBER_PROVIDED = "No GCM Project number provided"; final static String SUCCESS = "Success"; diff --git a/src/android/cordovaAF.gradle b/src/android/cordovaAF.gradle index 011933b3..e80035ab 100644 --- a/src/android/cordovaAF.gradle +++ b/src/android/cordovaAF.gradle @@ -4,7 +4,7 @@ repositories { dependencies { implementation 'com.android.installreferrer:installreferrer:2.1' - implementation 'com.appsflyer:af-android-sdk:6.15.0@aar' + implementation 'com.appsflyer:af-android-sdk:6.15.2@aar' implementation 'com.android.support:support-annotations:28.0.0' implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.20' } diff --git a/src/ios/AppsFlyerPlugin.m b/src/ios/AppsFlyerPlugin.m index b7a2d6f3..81195ac1 100755 --- a/src/ios/AppsFlyerPlugin.m +++ b/src/ios/AppsFlyerPlugin.m @@ -96,7 +96,7 @@ - (void)initSdk:(CDVInvokedUrlCommand*)command } // Initialize the SDK - [[AppsFlyerLib shared] setPluginInfoWith:AFSDKPluginCordova pluginVersion:@"6.15.1" additionalParams:nil]; + [[AppsFlyerLib shared] setPluginInfoWith:AFSDKPluginCordova pluginVersion:@"6.15.3" additionalParams:nil]; [AppsFlyerLib shared].appleAppID = appId; [AppsFlyerLib shared].appsFlyerDevKey = devKey; [AppsFlyerLib shared].isDebug = isDebug; From 62474f832f4a92bedcc2a621f0894c3406301310 Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Sun, 1 Dec 2024 18:37:58 +0200 Subject: [PATCH 02/26] dummy --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 0888b74a..4acddda2 100644 --- a/package.json +++ b/package.json @@ -99,6 +99,5 @@ }, "dependencies": {} - } From ef59c75bf788ce7b257150811389fc7bbe299253 Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Sun, 1 Dec 2024 19:06:52 +0200 Subject: [PATCH 03/26] dmy --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 4acddda2..0888b74a 100644 --- a/package.json +++ b/package.json @@ -99,5 +99,6 @@ }, "dependencies": {} + } From e0027c60b80c6267f7050574be2e3bdd6b290bc8 Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Sun, 1 Dec 2024 19:16:52 +0200 Subject: [PATCH 04/26] try with token --- .github/workflows/deploy-to-QA.yml | 10 +++++++++- package.json | 1 - 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-to-QA.yml b/.github/workflows/deploy-to-QA.yml index b68085ac..0ae7cb04 100644 --- a/.github/workflows/deploy-to-QA.yml +++ b/.github/workflows/deploy-to-QA.yml @@ -9,13 +9,21 @@ jobs: environment: Staging steps: - uses: actions/checkout@v3 - - name: Login to Github + with: + token: ${{ secrets.CI_DEV_GITHUB_TOKEN }} + persist-credentials: true + + - name: Setup Git Authentication env: COMMIT_AUTHOR: ${{ secrets.CI_COMMIT_AUTHOR }} COMMIT_EMAIL: ${{ secrets.CI_COMMIT_EMAIL }} + MY_PERSONAL_ACCESS_TOKEN: ${{ secrets.CI_DEV_GITHUB_TOKEN }} run: | git config --global user.name $COMMIT_AUTHOR git config --global user.email $COMMIT_EMAIL + git config --global credential.helper 'cache --timeout=300' + git config --global --add "credential.https://github.com.username" "x-access-token" + echo "https://x-access-token:$MY_PERSONAL_ACCESS_TOKEN@github.com" > ~/.git-credentials - name: Check if fixed version is on Jira env: diff --git a/package.json b/package.json index 0888b74a..4acddda2 100644 --- a/package.json +++ b/package.json @@ -99,6 +99,5 @@ }, "dependencies": {} - } From 375c050c0d08fe753f3675d249b3343736b66735 Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Sun, 1 Dec 2024 19:19:27 +0200 Subject: [PATCH 05/26] dmy --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 4acddda2..0888b74a 100644 --- a/package.json +++ b/package.json @@ -99,5 +99,6 @@ }, "dependencies": {} + } From 6a14f57e8b4f22de78d2f80acc01c83fbc964532 Mon Sep 17 00:00:00 2001 From: "noa.kogonia" Date: Sun, 1 Dec 2024 17:19:51 +0000 Subject: [PATCH 06/26] update plugin.xml and package.json files --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0888b74a..a21f44a7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "cordova-plugin-appsflyer-sdk", - "version": "6.15.11", + "version": "6.15.3-rc1", "description": "Cordova AppsFlyer SDK Plugin", From 634da5b109b6f326d86caaf9ed8d031533669346 Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Sun, 1 Dec 2024 19:23:03 +0200 Subject: [PATCH 07/26] p --- package.json | 1 - plugin.xml | 1 - 2 files changed, 2 deletions(-) diff --git a/package.json b/package.json index 0888b74a..4acddda2 100644 --- a/package.json +++ b/package.json @@ -99,6 +99,5 @@ }, "dependencies": {} - } diff --git a/plugin.xml b/plugin.xml index 1b92a92b..601c05ed 100644 --- a/plugin.xml +++ b/plugin.xml @@ -95,5 +95,4 @@ - From ba5ae5d2a80ea43e56979d3f508a51d0f2823a29 Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Mon, 2 Dec 2024 11:27:14 +0200 Subject: [PATCH 08/26] dummy --- plugin.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin.xml b/plugin.xml index 601c05ed..d0d387f9 100644 --- a/plugin.xml +++ b/plugin.xml @@ -95,4 +95,5 @@ + From 5567669f4636dc0233e6554a08a0043e4aa79e64 Mon Sep 17 00:00:00 2001 From: "noa.kogonia" Date: Mon, 2 Dec 2024 09:27:43 +0000 Subject: [PATCH 09/26] update plugin.xml and package.json files --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b2684647..2956ce30 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "cordova-plugin-appsflyer-sdk", - "version": "6.15.3-rc1", + "version": "6.15.3-rc2", "description": "Cordova AppsFlyer SDK Plugin", From 3eb93fea4591c4d631ca5222e6f678a647dbe98d Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Mon, 2 Dec 2024 11:31:31 +0200 Subject: [PATCH 10/26] change back for pipline --- plugin.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.xml b/plugin.xml index d0d387f9..3c41ce06 100644 --- a/plugin.xml +++ b/plugin.xml @@ -21,7 +21,7 @@ + version="6.15.2"> AppsFlyer Cordova Plugin AppsFlyer Apache 2.0 @@ -95,5 +95,5 @@ - + From 952741616d7b9315b6ed5719b5540c76298e620e Mon Sep 17 00:00:00 2001 From: "noa.kogonia" Date: Mon, 2 Dec 2024 09:32:09 +0000 Subject: [PATCH 11/26] update plugin.xml and package.json files --- plugin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.xml b/plugin.xml index 3c41ce06..3f2affe4 100644 --- a/plugin.xml +++ b/plugin.xml @@ -21,7 +21,7 @@ + version="6.15.3-rc2"> AppsFlyer Cordova Plugin AppsFlyer Apache 2.0 From 842098a6525a4fa16f0ad403069f5a63b57df8c8 Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Mon, 2 Dec 2024 12:34:26 +0200 Subject: [PATCH 12/26] update token for ci --- .github/workflows/pre-release-workflow.yml | 6 +++++- .github/workflows/release-Production-workflow.yml | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-release-workflow.yml b/.github/workflows/pre-release-workflow.yml index e8470370..026e9ca3 100644 --- a/.github/workflows/pre-release-workflow.yml +++ b/.github/workflows/pre-release-workflow.yml @@ -17,13 +17,17 @@ jobs: env: COMMIT_AUTHOR: ${{ secrets.CI_COMMIT_AUTHOR }} COMMIT_EMAIL: ${{ secrets.CI_COMMIT_EMAIL }} + MY_PERSONAL_ACCESS_TOKEN: ${{ secrets.CI_DEV_GITHUB_TOKEN }} run: | git config --global user.name $COMMIT_AUTHOR git config --global user.email $COMMIT_EMAIL + git config --global credential.helper 'cache --timeout=300' + git config --global --add "credential.https://github.com.username" "x-access-token" + echo "https://x-access-token:$MY_PERSONAL_ACCESS_TOKEN@github.com" > ~/.git-credentials - uses: mdecoleman/pr-branch-name@1.2.0 id: vars with: - repo-token: ${{ secrets.GITHUB_TOKEN }} + repo-token: ${{ secrets.CI_DEV_GITHUB_TOKEN }} - name: Update package.json file run: | plugin_version=$(echo "${{ steps.vars.outputs.branch }}" | grep -Eo '[0-9].[0-9]+.[0-9]+') diff --git a/.github/workflows/release-Production-workflow.yml b/.github/workflows/release-Production-workflow.yml index 4e57f840..035fd56e 100644 --- a/.github/workflows/release-Production-workflow.yml +++ b/.github/workflows/release-Production-workflow.yml @@ -25,13 +25,17 @@ jobs: env: COMMIT_AUTHOR: ${{ secrets.CI_COMMIT_AUTHOR }} COMMIT_EMAIL: ${{ secrets.CI_COMMIT_EMAIL }} + MY_PERSONAL_ACCESS_TOKEN: ${{ secrets.CI_DEV_GITHUB_TOKEN }} run: | git config --global user.name $COMMIT_AUTHOR git config --global user.email $COMMIT_EMAIL + git config --global credential.helper 'cache --timeout=300' + git config --global --add "credential.https://github.com.username" "x-access-token" + echo "https://x-access-token:$MY_PERSONAL_ACCESS_TOKEN@github.com" > ~/.git-credentials - uses: mdecoleman/pr-branch-name@1.2.0 id: vars with: - repo-token: ${{ secrets.GITHUB_TOKEN }} + repo-token: ${{ secrets.CI_DEV_GITHUB_TOKEN }} - name: Determine release tag and release branch run: | TAG=$(echo "${{ steps.vars.outputs.branch }}" | grep -Eo '[0-9].[0-9]+.[0-9]+') From f5da7d45b5ba259712a04a743e9a7e5ee7f60d50 Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Mon, 2 Dec 2024 12:47:12 +0200 Subject: [PATCH 13/26] change the ci --- .github/workflows/pre-release-workflow.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pre-release-workflow.yml b/.github/workflows/pre-release-workflow.yml index 026e9ca3..66647f03 100644 --- a/.github/workflows/pre-release-workflow.yml +++ b/.github/workflows/pre-release-workflow.yml @@ -14,6 +14,9 @@ jobs: steps: - uses: actions/checkout@v3 - name: Login to Github + with: + token: ${{ secrets.CI_DEV_GITHUB_TOKEN }} + persist-credentials: true env: COMMIT_AUTHOR: ${{ secrets.CI_COMMIT_AUTHOR }} COMMIT_EMAIL: ${{ secrets.CI_COMMIT_EMAIL }} @@ -24,6 +27,7 @@ jobs: git config --global credential.helper 'cache --timeout=300' git config --global --add "credential.https://github.com.username" "x-access-token" echo "https://x-access-token:$MY_PERSONAL_ACCESS_TOKEN@github.com" > ~/.git-credentials + - uses: mdecoleman/pr-branch-name@1.2.0 id: vars with: From 8395c82b07ab6e108adf6a8703cbd91b32a2bc08 Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Mon, 2 Dec 2024 12:48:56 +0200 Subject: [PATCH 14/26] change the ci --- .github/workflows/pre-release-workflow.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/pre-release-workflow.yml b/.github/workflows/pre-release-workflow.yml index 66647f03..039efa01 100644 --- a/.github/workflows/pre-release-workflow.yml +++ b/.github/workflows/pre-release-workflow.yml @@ -28,10 +28,6 @@ jobs: git config --global --add "credential.https://github.com.username" "x-access-token" echo "https://x-access-token:$MY_PERSONAL_ACCESS_TOKEN@github.com" > ~/.git-credentials - - uses: mdecoleman/pr-branch-name@1.2.0 - id: vars - with: - repo-token: ${{ secrets.CI_DEV_GITHUB_TOKEN }} - name: Update package.json file run: | plugin_version=$(echo "${{ steps.vars.outputs.branch }}" | grep -Eo '[0-9].[0-9]+.[0-9]+') From 6db3e7ea3b268880f3ee0c6298949e3038460b2a Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Mon, 2 Dec 2024 12:53:44 +0200 Subject: [PATCH 15/26] one more try --- .github/workflows/pre-release-workflow.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-release-workflow.yml b/.github/workflows/pre-release-workflow.yml index 039efa01..44b82779 100644 --- a/.github/workflows/pre-release-workflow.yml +++ b/.github/workflows/pre-release-workflow.yml @@ -13,10 +13,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Login to Github with: token: ${{ secrets.CI_DEV_GITHUB_TOKEN }} persist-credentials: true + + - name: Login to Github env: COMMIT_AUTHOR: ${{ secrets.CI_COMMIT_AUTHOR }} COMMIT_EMAIL: ${{ secrets.CI_COMMIT_EMAIL }} @@ -27,7 +28,7 @@ jobs: git config --global credential.helper 'cache --timeout=300' git config --global --add "credential.https://github.com.username" "x-access-token" echo "https://x-access-token:$MY_PERSONAL_ACCESS_TOKEN@github.com" > ~/.git-credentials - + - name: Update package.json file run: | plugin_version=$(echo "${{ steps.vars.outputs.branch }}" | grep -Eo '[0-9].[0-9]+.[0-9]+') From 46aa016d029cd2ead25ec1452a0d636906eb3bc5 Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Mon, 2 Dec 2024 12:56:42 +0200 Subject: [PATCH 16/26] align to dev --- .github/workflows/pre-release-workflow.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pre-release-workflow.yml b/.github/workflows/pre-release-workflow.yml index 44b82779..de53a44a 100644 --- a/.github/workflows/pre-release-workflow.yml +++ b/.github/workflows/pre-release-workflow.yml @@ -28,7 +28,10 @@ jobs: git config --global credential.helper 'cache --timeout=300' git config --global --add "credential.https://github.com.username" "x-access-token" echo "https://x-access-token:$MY_PERSONAL_ACCESS_TOKEN@github.com" > ~/.git-credentials - + - uses: mdecoleman/pr-branch-name@1.2.0 + id: vars + with: + repo-token: ${{ secrets.CI_DEV_GITHUB_TOKEN }} - name: Update package.json file run: | plugin_version=$(echo "${{ steps.vars.outputs.branch }}" | grep -Eo '[0-9].[0-9]+.[0-9]+') From 67cfa8897098695a19ee536498f60e456a37780a Mon Sep 17 00:00:00 2001 From: "noa.kogonia" Date: Mon, 2 Dec 2024 10:58:21 +0000 Subject: [PATCH 17/26] 6.15.3 --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 2956ce30..c2898955 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "cordova-plugin-appsflyer-sdk", - "version": "6.15.3-rc2", + "version": "6.15.3", "description": "Cordova AppsFlyer SDK Plugin", @@ -99,5 +99,6 @@ }, "dependencies": {} + } From 37e0526455527893940a3401b02cdf012a681907 Mon Sep 17 00:00:00 2001 From: "noa.kogonia" Date: Mon, 2 Dec 2024 10:58:23 +0000 Subject: [PATCH 18/26] Update RELEASENOTES.md --- RELEASENOTES.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 5a9bdbde..90b876b9 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,8 @@ +## 6.15.3 + Release date: *2024-12-02* + +- Cordova >> Update Plugin to v6.15.3 + ## 6.15.11 Release date: *2024-09-03* - Cordova >> Fix chartboost adrevenue enum typo in ios side From 04ecc518b4e9873c0dc7ee940a2b6d79f190fd13 Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Mon, 2 Dec 2024 14:17:40 +0200 Subject: [PATCH 19/26] change ci --- .github/workflows/release-Production-workflow.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-Production-workflow.yml b/.github/workflows/release-Production-workflow.yml index 035fd56e..8770afa9 100644 --- a/.github/workflows/release-Production-workflow.yml +++ b/.github/workflows/release-Production-workflow.yml @@ -21,6 +21,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + token: ${{ secrets.CI_DEV_GITHUB_TOKEN }} + persist-credentials: true + - name: Login to Github env: COMMIT_AUTHOR: ${{ secrets.CI_COMMIT_AUTHOR }} @@ -48,7 +52,7 @@ jobs: TAG: ${{env.PLUGIN_VERSION}} uses: "actions/github-script@v5" with: - github-token: "${{ secrets.GITHUB_TOKEN }}" + github-token: "${{ secrets.CI_DEV_GITHUB_TOKEN }}" script: | try { await github.rest.repos.createRelease({ From 8fb5ac1ec2bc54ba830d12e098d9ffb216a2c049 Mon Sep 17 00:00:00 2001 From: "noa.kogonia" Date: Mon, 2 Dec 2024 12:20:33 +0000 Subject: [PATCH 20/26] 6.15.3 From 089549039b7622a1beca927e19c2e3e2719ebb32 Mon Sep 17 00:00:00 2001 From: "noa.kogonia" Date: Mon, 2 Dec 2024 12:20:35 +0000 Subject: [PATCH 21/26] Update RELEASENOTES.md --- RELEASENOTES.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 90b876b9..7f132082 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -3,6 +3,11 @@ - Cordova >> Update Plugin to v6.15.3 +## 6.15.3 + Release date: *2024-12-02* + +- Cordova >> Update Plugin to v6.15.3 + ## 6.15.11 Release date: *2024-09-03* - Cordova >> Fix chartboost adrevenue enum typo in ios side From c451dcdc8b0cebea36fc848d0a9b95db3e0fe0b6 Mon Sep 17 00:00:00 2001 From: Noa Kogonia Date: Mon, 2 Dec 2024 14:27:33 +0200 Subject: [PATCH 22/26] dmy --- plugin.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.xml b/plugin.xml index 3f2affe4..699be225 100644 --- a/plugin.xml +++ b/plugin.xml @@ -21,7 +21,7 @@ + version="6.15.1"> AppsFlyer Cordova Plugin AppsFlyer Apache 2.0 From f570897eac651471e0f3e776cd7134d2f76eda0b Mon Sep 17 00:00:00 2001 From: "noa.kogonia" Date: Mon, 2 Dec 2024 12:28:00 +0000 Subject: [PATCH 23/26] update plugin.xml and package.json files --- package.json | 2 +- plugin.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c2898955..920c398c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "cordova-plugin-appsflyer-sdk", - "version": "6.15.3", + "version": "6.15.3-rc3", "description": "Cordova AppsFlyer SDK Plugin", diff --git a/plugin.xml b/plugin.xml index 699be225..55653e3d 100644 --- a/plugin.xml +++ b/plugin.xml @@ -21,7 +21,7 @@ + version="6.15.3-rc3"> AppsFlyer Cordova Plugin AppsFlyer Apache 2.0 From 0bd51e46d72b48ac65b554941e40fa4f659758fe Mon Sep 17 00:00:00 2001 From: "noa.kogonia" Date: Mon, 2 Dec 2024 12:28:40 +0000 Subject: [PATCH 24/26] 6.15.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 920c398c..c2898955 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "cordova-plugin-appsflyer-sdk", - "version": "6.15.3-rc3", + "version": "6.15.3", "description": "Cordova AppsFlyer SDK Plugin", From b8af68a20bce7e4f1ab796db08d35e3a53ecb0a1 Mon Sep 17 00:00:00 2001 From: "noa.kogonia" Date: Mon, 2 Dec 2024 12:28:43 +0000 Subject: [PATCH 25/26] Update RELEASENOTES.md --- RELEASENOTES.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 7f132082..c02e8c81 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -8,6 +8,11 @@ - Cordova >> Update Plugin to v6.15.3 +## 6.15.3 + Release date: *2024-12-02* + +- Cordova >> Update Plugin to v6.15.3 + ## 6.15.11 Release date: *2024-09-03* - Cordova >> Fix chartboost adrevenue enum typo in ios side From 9dca76a332b51f23be20d953ba0cf6661bd3a5e0 Mon Sep 17 00:00:00 2001 From: noa-kogonia <102966306+noa-kogonia@users.noreply.github.com> Date: Mon, 2 Dec 2024 14:36:06 +0200 Subject: [PATCH 26/26] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 63e6e6a4..95c1a521 100755 --- a/README.md +++ b/README.md @@ -44,8 +44,8 @@ You can read more [here](https://support.appsflyer.com/hc/en-us/articles/2070320 ### This plugin is built for -- iOS AppsFlyerSDK **v6.15.1** -- Android AppsFlyerSDK **v6.15.0** +- iOS AppsFlyerSDK **v6.15.3** +- Android AppsFlyerSDK **v6.15.2** ### ❗v6.15.11 Breaking Changes