Skip to content

Commit

Permalink
Merge pull request #245 from AppsFlyerSDK/releases/6.x.x/6.12.x/6.12.…
Browse files Browse the repository at this point in the history
…2-rc3

Releases/6.x.x/6.12.x/6.12.2 rc3
  • Loading branch information
noa-kogonia authored Aug 24, 2023
2 parents d0ae6f3 + ed072d3 commit 0e51135
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-QA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
run: |
plugin_rc_version=$(echo "${{github.ref_name}}" | grep -Eo '[0-9].[0-9]+.[0-9]+-rc[0-9]+')
echo "Updating plugin to version $plugin_rc_version"
npm version $plugin_rc_version --no-git-tag-version
sed -i -r -e "s/\"version\": \"[0-9]+.[0-9]+.[0-9]+(-rc[0-9]+)?\"/\"version\": \"$plugin_rc_version\"/gi" package.json
echo "Updating plugin.xml to version $plugin_rc_version"
sed -i -r -e "s/version=\"[0-9].[0-9]+.[0-9]+\"/version=\"$plugin_rc_version\"/gi" plugin.xml
git add plugin.xml
git commit -m "update plugin.xml"
git add plugin.xml package.json
git commit -m "update plugin.xml and package.json files"
git push
- name: Push to NPM
env:
Expand Down
5 changes: 5 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 6.12.2
Release date: *2023-08-23*

- Cordova plugin >> Update Plugin to v6.12.2

## 6.12.10
Release date: *2023-07-17*

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-appsflyer-sdk",
"version": "6.12.10",
"version": "6.12.2",
"description": "Cordova AppsFlyer SDK Plugin",
"cordova": {
"id": "cordova-plugin-appsflyer-sdk",
Expand Down
3 changes: 2 additions & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,10 @@
<config>
</config>
<pods use-frameworks="true">
<pod name="AppsFlyerFramework" spec="6.12.0"/>
<pod name="AppsFlyerFramework" spec="6.12.1"/>
</pods>
</podspec>
</platform>


</plugin>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

public class AppsFlyerConstants {

final static String PLUGIN_VERSION = "6.12.10";
final static String PLUGIN_VERSION = "6.12.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";
Expand Down
2 changes: 1 addition & 1 deletion src/android/cordovaAF.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repositories {

dependencies {
implementation 'com.android.installreferrer:installreferrer:2.1'
implementation 'com.appsflyer:af-android-sdk:6.12.1@aar'
implementation 'com.appsflyer:af-android-sdk:6.12.2@aar'
implementation 'com.android.support:support-annotations:28.0.0'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.6.20'
}
2 changes: 1 addition & 1 deletion src/ios/AppsFlyerPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ - (void)initSdk:(CDVInvokedUrlCommand*)command
[AppsFlyerLib shared].deepLinkDelegate = self;
}

[[AppsFlyerLib shared] setPluginInfoWith:AFSDKPluginCordova pluginVersion:@"6.12.10" additionalParams:nil];
[[AppsFlyerLib shared] setPluginInfoWith:AFSDKPluginCordova pluginVersion:@"6.12.2" additionalParams:nil];
[AppsFlyerLib shared].appleAppID = appId;
[AppsFlyerLib shared].appsFlyerDevKey = devKey;
[AppsFlyerLib shared].isDebug = isDebug;
Expand Down

0 comments on commit 0e51135

Please sign in to comment.