Skip to content

Commit be05d40

Browse files
committed
Merge branch 'master' into development
2 parents 3c8789a + 9dca76a commit be05d40

File tree

10 files changed

+51
-12
lines changed

10 files changed

+51
-12
lines changed

.github/workflows/deploy-to-QA.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,21 @@ jobs:
99
environment: Staging
1010
steps:
1111
- uses: actions/checkout@v3
12-
- name: Login to Github
12+
with:
13+
token: ${{ secrets.CI_DEV_GITHUB_TOKEN }}
14+
persist-credentials: true
15+
16+
- name: Setup Git Authentication
1317
env:
1418
COMMIT_AUTHOR: ${{ secrets.CI_COMMIT_AUTHOR }}
1519
COMMIT_EMAIL: ${{ secrets.CI_COMMIT_EMAIL }}
20+
MY_PERSONAL_ACCESS_TOKEN: ${{ secrets.CI_DEV_GITHUB_TOKEN }}
1621
run: |
1722
git config --global user.name $COMMIT_AUTHOR
1823
git config --global user.email $COMMIT_EMAIL
24+
git config --global credential.helper 'cache --timeout=300'
25+
git config --global --add "credential.https://github.com.username" "x-access-token"
26+
echo "https://x-access-token:[email protected]" > ~/.git-credentials
1927
2028
- name: Check if fixed version is on Jira
2129
env:

.github/workflows/pre-release-workflow.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,25 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v3
16+
with:
17+
token: ${{ secrets.CI_DEV_GITHUB_TOKEN }}
18+
persist-credentials: true
19+
1620
- name: Login to Github
1721
env:
1822
COMMIT_AUTHOR: ${{ secrets.CI_COMMIT_AUTHOR }}
1923
COMMIT_EMAIL: ${{ secrets.CI_COMMIT_EMAIL }}
24+
MY_PERSONAL_ACCESS_TOKEN: ${{ secrets.CI_DEV_GITHUB_TOKEN }}
2025
run: |
2126
git config --global user.name $COMMIT_AUTHOR
2227
git config --global user.email $COMMIT_EMAIL
28+
git config --global credential.helper 'cache --timeout=300'
29+
git config --global --add "credential.https://github.com.username" "x-access-token"
30+
echo "https://x-access-token:[email protected]" > ~/.git-credentials
2331
- uses: mdecoleman/[email protected]
2432
id: vars
2533
with:
26-
repo-token: ${{ secrets.GITHUB_TOKEN }}
34+
repo-token: ${{ secrets.CI_DEV_GITHUB_TOKEN }}
2735
- name: Update package.json file
2836
run: |
2937
plugin_version=$(echo "${{ steps.vars.outputs.branch }}" | grep -Eo '[0-9].[0-9]+.[0-9]+')

.github/workflows/release-Production-workflow.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,25 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@v3
24+
with:
25+
token: ${{ secrets.CI_DEV_GITHUB_TOKEN }}
26+
persist-credentials: true
27+
2428
- name: Login to Github
2529
env:
2630
COMMIT_AUTHOR: ${{ secrets.CI_COMMIT_AUTHOR }}
2731
COMMIT_EMAIL: ${{ secrets.CI_COMMIT_EMAIL }}
32+
MY_PERSONAL_ACCESS_TOKEN: ${{ secrets.CI_DEV_GITHUB_TOKEN }}
2833
run: |
2934
git config --global user.name $COMMIT_AUTHOR
3035
git config --global user.email $COMMIT_EMAIL
36+
git config --global credential.helper 'cache --timeout=300'
37+
git config --global --add "credential.https://github.com.username" "x-access-token"
38+
echo "https://x-access-token:[email protected]" > ~/.git-credentials
3139
- uses: mdecoleman/[email protected]
3240
id: vars
3341
with:
34-
repo-token: ${{ secrets.GITHUB_TOKEN }}
42+
repo-token: ${{ secrets.CI_DEV_GITHUB_TOKEN }}
3543
- name: Determine release tag and release branch
3644
run: |
3745
TAG=$(echo "${{ steps.vars.outputs.branch }}" | grep -Eo '[0-9].[0-9]+.[0-9]+')
@@ -44,7 +52,7 @@ jobs:
4452
TAG: ${{env.PLUGIN_VERSION}}
4553
uses: "actions/github-script@v5"
4654
with:
47-
github-token: "${{ secrets.GITHUB_TOKEN }}"
55+
github-token: "${{ secrets.CI_DEV_GITHUB_TOKEN }}"
4856
script: |
4957
try {
5058
await github.rest.repos.createRelease({

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ You can read more [here](https://support.appsflyer.com/hc/en-us/articles/2070320
4444

4545
### <a id="plugin-build-for"> This plugin is built for
4646

47-
- iOS AppsFlyerSDK **v6.15.1**
48-
- Android AppsFlyerSDK **v6.15.0**
47+
- iOS AppsFlyerSDK **v6.15.3**
48+
- Android AppsFlyerSDK **v6.15.2**
4949

5050
### <a id="breakingChanges"> ❗v6.15.11 Breaking Changes
5151

RELEASENOTES.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 6.15.3
2+
Release date: *2024-12-02*
3+
4+
- Cordova >> Update Plugin to v6.15.3
5+
6+
## 6.15.3
7+
Release date: *2024-12-02*
8+
9+
- Cordova >> Update Plugin to v6.15.3
10+
11+
## 6.15.3
12+
Release date: *2024-12-02*
13+
14+
- Cordova >> Update Plugin to v6.15.3
15+
116
## 6.15.11
217
Release date: *2024-09-03*
318
- Cordova >> Fix chartboost adrevenue enum typo in ios side

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
"name": "cordova-plugin-appsflyer-sdk",
44

5-
"version": "6.15.11",
5+
"version": "6.15.3",
66

77
"description": "Cordova AppsFlyer SDK Plugin",
88

plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
2222
xmlns:android="http://schemas.android.com/apk/res/android"
2323
id="cordova-plugin-appsflyer-sdk"
24-
version="6.13.1-rc1">
24+
version="6.15.3-rc3">
2525
<name>AppsFlyer</name>
2626
<description>Cordova Plugin AppsFlyer</description>
2727
<license>Apache 2.0</license>
@@ -91,7 +91,7 @@
9191
<config>
9292
</config>
9393
<pods use-frameworks="true">
94-
<pod name="AppsFlyerFramework" spec="6.15.1"/>
94+
<pod name="AppsFlyerFramework" spec="6.15.3"/>
9595
</pods>
9696
</podspec>
9797
</platform>

src/android/com/appsflyer/cordova/plugin/AppsFlyerConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
public class AppsFlyerConstants {
88

9-
final static String PLUGIN_VERSION = "6.15.1";
9+
final static String PLUGIN_VERSION = "6.15.2";
1010
final static String NO_DEVKEY_FOUND = "AppsFlyer 'devKey' is missing or empty";
1111
final static String NO_GCM_PROJECT_NUMBER_PROVIDED = "No GCM Project number provided";
1212
final static String SUCCESS = "Success";

src/android/cordovaAF.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ repositories {
44

55
dependencies {
66
implementation 'com.android.installreferrer:installreferrer:2.1'
7-
implementation 'com.appsflyer:af-android-sdk:6.15.0@aar'
7+
implementation 'com.appsflyer:af-android-sdk:6.15.2@aar'
88
implementation 'com.android.support:support-annotations:28.0.0'
99
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.20'
1010
}

src/ios/AppsFlyerPlugin.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ - (void)initSdk:(CDVInvokedUrlCommand*)command
9696
}
9797

9898
// Initialize the SDK
99-
[[AppsFlyerLib shared] setPluginInfoWith:AFSDKPluginCordova pluginVersion:@"6.15.1" additionalParams:nil];
99+
[[AppsFlyerLib shared] setPluginInfoWith:AFSDKPluginCordova pluginVersion:@"6.15.3" additionalParams:nil];
100100
[AppsFlyerLib shared].appleAppID = appId;
101101
[AppsFlyerLib shared].appsFlyerDevKey = devKey;
102102
[AppsFlyerLib shared].isDebug = isDebug;

0 commit comments

Comments
 (0)