From 326f395079e50144bd206c42706da366c61fa7a2 Mon Sep 17 00:00:00 2001 From: Andrii Dudka <111760320+af-dudka@users.noreply.github.com> Date: Tue, 9 Sep 2025 12:12:36 +0300 Subject: [PATCH 1/3] Release 6.17.3 --- gradle.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index bd20a08..a7ae83f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -20,8 +20,8 @@ GROUP=com.appsflyer VERSION_CODE=26 -VERSION_NAME=6.17.3-rc7 -POM_ARTIFACT_ID=segment-android-integration-beta +VERSION_NAME=6.17.3 +POM_ARTIFACT_ID=segment-android-integration POM_PACKAGING=aar POM_NAME=AppsFlyer Integration From da3ea9b726c02c0370d417a75c786cec7e5a8c09 Mon Sep 17 00:00:00 2001 From: Paz-AF <72502546+pazlavi@users.noreply.github.com> Date: Tue, 25 Nov 2025 21:30:17 +0200 Subject: [PATCH 2/3] Revise support contact details in Readme.md (#109) Updated support contact information and added link to the Customer Assistant Chatbot article. --- Readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index 3a4bdf2..736fecc 100644 --- a/Readme.md +++ b/Readme.md @@ -6,9 +6,9 @@ [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.appsflyer/segment-android-integration/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.appsflyer/segment-android-integration) ---------- -In order for us to provide optimal support, we would kindly ask you to submit any issues to support@appsflyer.com +🛠 In order for us to provide optimal support, please contact AppsFlyer support through the Customer Assistant Chatbot for assistance with troubleshooting issues or product guidance.
+To do so, please follow [this article](https://support.appsflyer.com/hc/en-us/articles/23583984402193-Using-the-Customer-Assistant-Chatbot) -*When submitting an issue please specify your AppsFlyer sign-up (account) email , your app ID , production steps, logs, code snippets and any additional relevant information.* # Overview From e72ffa05233133611fc804b28190f629f319c448 Mon Sep 17 00:00:00 2001 From: andriidudka Date: Wed, 10 Dec 2025 17:20:25 +0200 Subject: [PATCH 3/3] RELEASE 6.17.5 --- RELEASENOTES.md | 3 +++ Readme.md | 4 ++-- app/build.gradle | 2 +- .../android/integrations/appsflyer/AppsflyerIntegration.java | 2 +- gradle.properties | 4 ++-- releasenotes.6.17.3 | 0 segmenttestapp/build.gradle | 2 +- .../java/com/appsflyer/segment/app/SampleApplication.java | 2 +- 8 files changed, 11 insertions(+), 8 deletions(-) delete mode 100644 releasenotes.6.17.3 diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 0589ca5..ee4b664 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,6 @@ +### 6.17.5 +* Update Android SDK to v6.17.5 + ### 6.17.3 * Update Android SDK to v6.17.3 * Update the Documentation for manually sending DMA Consent data to AppsFlyer. For more details, [see] (https://dev.appsflyer.com/hc/docs/android-send-consent-for-dma-compliance). diff --git a/Readme.md b/Readme.md index 736fecc..cdf56da 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.17.3` +Built with AppsFlyer Android SDK `v6.17.5` ## Table of content @@ -97,7 +97,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.17.3' +implementation 'com.appsflyer:segment-android-integration:6.17.5' implementation 'com.android.installreferrer:installreferrer:2.1' ``` diff --git a/app/build.gradle b/app/build.gradle index 86139b1..4d94a4b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -38,7 +38,7 @@ android { } dependencies { - api 'com.appsflyer:af-android-sdk:6.17.3' + api 'com.appsflyer:af-android-sdk:6.17.5' compileOnly 'com.segment.analytics.android:analytics:4.+' compileOnly 'com.android.installreferrer:installreferrer:2.2' 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 e40e76b..fde64fe 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 @@ -96,7 +96,7 @@ public Integration create(ValueMap settings, Analytics analytics) listener = new ConversionListener(analytics); } - AppsFlyerLib.getInstance().setPluginInfo(new PluginInfo(Plugin.SEGMENT,"6.17.3")); + AppsFlyerLib.getInstance().setPluginInfo(new PluginInfo(Plugin.SEGMENT,"6.17.5")); 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 a7ae83f..cb02f56 100644 --- a/gradle.properties +++ b/gradle.properties @@ -19,8 +19,8 @@ GROUP=com.appsflyer -VERSION_CODE=26 -VERSION_NAME=6.17.3 +VERSION_CODE=27 +VERSION_NAME=6.17.5 POM_ARTIFACT_ID=segment-android-integration POM_PACKAGING=aar diff --git a/releasenotes.6.17.3 b/releasenotes.6.17.3 deleted file mode 100644 index e69de29..0000000 diff --git a/segmenttestapp/build.gradle b/segmenttestapp/build.gradle index 4fb36df..5447b7d 100644 --- a/segmenttestapp/build.gradle +++ b/segmenttestapp/build.gradle @@ -23,7 +23,7 @@ android { } dependencies { -// implementation 'com.appsflyer:segment-android-integration:6.15.0' +// implementation 'com.appsflyer:segment-android-integration:6.17.5' implementation project(path: ':app') implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.segment.analytics.android:analytics:4.+' diff --git a/segmenttestapp/src/main/java/com/appsflyer/segment/app/SampleApplication.java b/segmenttestapp/src/main/java/com/appsflyer/segment/app/SampleApplication.java index 998dc15..d82d935 100644 --- a/segmenttestapp/src/main/java/com/appsflyer/segment/app/SampleApplication.java +++ b/segmenttestapp/src/main/java/com/appsflyer/segment/app/SampleApplication.java @@ -15,7 +15,7 @@ public class SampleApplication extends Application { - static final String SEGMENT_WRITE_KEY = ""; + static final String SEGMENT_WRITE_KEY = "p3uCyX72FjaikfQVyxvUGSzBpRst2flg"; static final String TAG = "SEG_AF"; @Override public void onCreate() {