From e255f0e44953b115f8bd25dd34462bc9327d6ff0 Mon Sep 17 00:00:00 2001 From: Moris Gateno Date: Wed, 17 May 2023 08:51:43 +0300 Subject: [PATCH 1/5] fixed --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 834e501..0595420 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -38,7 +38,7 @@ android { } dependencies { - implementation 'androidx.test.ext:junit:1.1.5' + testImplementation 'androidx.test.ext:junit:1.1.5' implementation 'com.appsflyer:af-android-sdk:6.10.3' compileOnly 'com.android.installreferrer:installreferrer:2.1' compileOnly 'com.segment.analytics.android:analytics:4.+' From 64386347ac9c97ac444a79dcce365b38d70ea916 Mon Sep 17 00:00:00 2001 From: Moris Gateno Date: Tue, 22 Aug 2023 09:52:58 +0300 Subject: [PATCH 2/5] dummy push for workflow --- .github/workflows/unit-tests-workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests-workflow.yml b/.github/workflows/unit-tests-workflow.yml index bcc35e6..e162a8b 100644 --- a/.github/workflows/unit-tests-workflow.yml +++ b/.github/workflows/unit-tests-workflow.yml @@ -28,4 +28,4 @@ jobs: name: Test Results path: app/build/test-results/testDebugUnitTest/TEST-*.xml # Path to test results reporter: java-junit # Format of test results - fail-on-error: true \ No newline at end of file + fail-on-error: true \ No newline at end of file From bc67a8c5518870a6e406ce2c119a6976e4bd7d34 Mon Sep 17 00:00:00 2001 From: Moris Gateno Date: Tue, 22 Aug 2023 11:14:40 +0300 Subject: [PATCH 3/5] Commited from github action - prepaing the repo for QA. --- Readme.md | 4 ++-- app/build.gradle | 2 +- .../integrations/appsflyer/AppsflyerIntegration.java | 2 +- gradle.properties | 6 +++--- releasenotes.6.12.2 | 0 segmenttestapp/build.gradle | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) create mode 100644 releasenotes.6.12.2 diff --git a/Readme.md b/Readme.md index 83caf51..f92e834 100644 --- a/Readme.md +++ b/Readme.md @@ -21,7 +21,7 @@ You can track installs, updates and sessions and also track additional in-app ev --- -Built with AppsFlyer Android SDK `v6.10.3` +Built with AppsFlyer Android SDK `v6.12.2` ## Table of content @@ -95,7 +95,7 @@ And to start the AppsFlyer SDK, use `void startAppsFlyer(Context context)` API. Add the AppsFlyer Segment Integration dependency to your app `build.gradle` file. ```java -implementation 'com.appsflyer:segment-android-integration:6.10.3' +implementation 'com.appsflyer:segment-android-integration:6.12.2' implementation 'com.android.installreferrer:installreferrer:2.1' ``` diff --git a/app/build.gradle b/app/build.gradle index 0595420..4cd2976 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -39,7 +39,7 @@ android { dependencies { testImplementation 'androidx.test.ext:junit:1.1.5' - implementation 'com.appsflyer:af-android-sdk:6.10.3' + implementation 'com.appsflyer:af-android-sdk:6.12.2' compileOnly 'com.android.installreferrer:installreferrer:2.1' compileOnly 'com.segment.analytics.android:analytics:4.+' testImplementation 'androidx.test:core:1.4.0' diff --git a/app/src/main/java/com/segment/analytics/android/integrations/appsflyer/AppsflyerIntegration.java b/app/src/main/java/com/segment/analytics/android/integrations/appsflyer/AppsflyerIntegration.java index f406325..f7b8eac 100644 --- a/app/src/main/java/com/segment/analytics/android/integrations/appsflyer/AppsflyerIntegration.java +++ b/app/src/main/java/com/segment/analytics/android/integrations/appsflyer/AppsflyerIntegration.java @@ -98,7 +98,7 @@ public Integration create(ValueMap settings, Analytics analytics) listener = new ConversionListener(analytics); } - AppsFlyerLib.getInstance().setPluginInfo(new PluginInfo(Plugin.SEGMENT,"6.10.3")); + AppsFlyerLib.getInstance().setPluginInfo(new PluginInfo(Plugin.SEGMENT,"6.12.2")); afLib.setDebugLog(logger.logLevel != Analytics.LogLevel.NONE); afLib.init(devKey, listener, application.getApplicationContext()); if (deepLinkListener != null) diff --git a/gradle.properties b/gradle.properties index b4521a0..7aae707 100644 --- a/gradle.properties +++ b/gradle.properties @@ -19,9 +19,9 @@ GROUP=com.appsflyer -VERSION_CODE=13 -VERSION_NAME=6.10.3 -POM_ARTIFACT_ID=segment-android-integration +VERSION_CODE=14 +VERSION_NAME=6.12.2-rc1 +POM_ARTIFACT_ID=segment-android-integration-beta POM_PACKAGING=aar POM_NAME=AppsFlyer Integration diff --git a/releasenotes.6.12.2 b/releasenotes.6.12.2 new file mode 100644 index 0000000..e69de29 diff --git a/segmenttestapp/build.gradle b/segmenttestapp/build.gradle index 0344169..e000395 100644 --- a/segmenttestapp/build.gradle +++ b/segmenttestapp/build.gradle @@ -27,7 +27,7 @@ dependencies { implementation project(path: ':app') testImplementation 'junit:junit:4.12' implementation 'com.android.support:appcompat-v7:28.0.0' - implementation 'com.appsflyer:af-android-sdk:6.10.3' + implementation 'com.appsflyer:af-android-sdk:6.12.2' implementation 'com.segment.analytics.android:analytics:4.+' implementation 'com.android.installreferrer:installreferrer:2.1' } From db45fc42045767b6149e5ce8c8e0bce4dacca9f5 Mon Sep 17 00:00:00 2001 From: Moris Gateno Date: Tue, 22 Aug 2023 11:19:22 +0300 Subject: [PATCH 4/5] release notes added --- releasenotes.6.12.2 | 1 + 1 file changed, 1 insertion(+) diff --git a/releasenotes.6.12.2 b/releasenotes.6.12.2 index e69de29..1d187d1 100644 --- a/releasenotes.6.12.2 +++ b/releasenotes.6.12.2 @@ -0,0 +1 @@ +Update Android SDK to v6.12.2 \ No newline at end of file From b3d041ae92cfe0b4318816ff7dfa478f428a1b30 Mon Sep 17 00:00:00 2001 From: Moris Gateno Date: Tue, 22 Aug 2023 13:34:45 +0300 Subject: [PATCH 5/5] Commited from github action - prepaing the repo for production. --- RELEASENOTES.md | 3 +++ gradle.properties | 4 ++-- releasenotes.6.12.2 | 1 - 3 files changed, 5 insertions(+), 3 deletions(-) delete mode 100644 releasenotes.6.12.2 diff --git a/RELEASENOTES.md b/RELEASENOTES.md index f22de48..a8550db 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,6 @@ +### 6.12.2 +* Update Android SDK to v6.12.2 + ### 6.10.3 * Update Android SDK to v6.10.1 * Added CI-CD pipeline diff --git a/gradle.properties b/gradle.properties index 7aae707..2effde3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -20,8 +20,8 @@ GROUP=com.appsflyer VERSION_CODE=14 -VERSION_NAME=6.12.2-rc1 -POM_ARTIFACT_ID=segment-android-integration-beta +VERSION_NAME=6.12.2 +POM_ARTIFACT_ID=segment-android-integration POM_PACKAGING=aar POM_NAME=AppsFlyer Integration diff --git a/releasenotes.6.12.2 b/releasenotes.6.12.2 deleted file mode 100644 index 1d187d1..0000000 --- a/releasenotes.6.12.2 +++ /dev/null @@ -1 +0,0 @@ -Update Android SDK to v6.12.2 \ No newline at end of file