Skip to content

Commit

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

Releases/6.x.x/6.12.x/6.12.1 rc2
  • Loading branch information
noa-kogonia authored Jul 11, 2023
2 parents 641415c + a9b6689 commit c5f8a60
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 20 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/mac-os-unit-test-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,18 @@ jobs:
chmod +x testsScripts/setEnv.sh
./testsScripts/setEnv.sh
# - name: Run iOS unit tests on simulator
# run: |
# npm install -g cordova-paramedic
# npm install -g ios-deploy
# ios-deploy --version
# cd examples/cordovatestapp && chmod +x testsScripts/cordovaParamedicRunUnitTestsOnIos.sh && ./testsScripts/cordovaParamedicRunUnitTestsOnIos.sh
#
# - name: Verify test results
# uses: dorny/test-reporter@v1
# if: always()
# with:
# name: iOS Test Results
# path: examples/cordovatestapp/testResults/ios/junitresults-cordovapluginappsflyersdktests.tests.xml
# reporter: java-junit
# fail-on-error: true
- name: Run iOS unit tests on simulator
run: |
npm install -g cordova-paramedic
npm install -g ios-deploy
ios-deploy --version
cd examples/cordovatestapp && chmod +x testsScripts/cordovaParamedicRunUnitTestsOnIos.sh && ./testsScripts/cordovaParamedicRunUnitTestsOnIos.sh
- name: Verify test results
uses: dorny/test-reporter@v1
if: always()
with:
name: iOS Test Results
path: examples/cordovatestapp/testResults/ios/junitresults-cordovapluginappsflyersdktests.tests.xml
reporter: java-junit
fail-on-error: true
5 changes: 5 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 6.12.1
Release date: *2023-07-11*

- Cordova >> Update Plugin to v6.12.1

## 6.10.31
Release date: *2023-06-21*

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.10.31",
"version": "6.12.1",
"description": "Cordova AppsFlyer SDK Plugin",
"cordova": {
"id": "cordova-plugin-appsflyer-sdk",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<config>
</config>
<pods use-frameworks="true">
<pod name="AppsFlyerFramework" spec="6.10.1"/>
<pod name="AppsFlyerFramework" spec="6.12.0"/>
</pods>
</podspec>
</platform>
Expand Down
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.10.31";
final static String PLUGIN_VERSION = "6.12.1";
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.10.3@aar'
implementation 'com.appsflyer:af-android-sdk:6.12.1@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.10.31" additionalParams:nil];
[[AppsFlyerLib shared] setPluginInfoWith:AFSDKPluginCordova pluginVersion:@"6.12.0" additionalParams:nil];
[AppsFlyerLib shared].appleAppID = appId;
[AppsFlyerLib shared].appsFlyerDevKey = devKey;
[AppsFlyerLib shared].isDebug = isDebug;
Expand Down

0 comments on commit c5f8a60

Please sign in to comment.