Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
8 changes: 4 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. </br>
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
Expand All @@ -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

Expand Down Expand Up @@ -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'
```

Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public Integration<AppsFlyerLib> 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)
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@

GROUP=com.appsflyer

VERSION_CODE=26
VERSION_NAME=6.17.3-rc7
POM_ARTIFACT_ID=segment-android-integration-beta
VERSION_CODE=27
VERSION_NAME=6.17.5
POM_ARTIFACT_ID=segment-android-integration
POM_PACKAGING=aar

POM_NAME=AppsFlyer Integration
Expand Down
Empty file removed releasenotes.6.17.3
Empty file.
2 changes: 1 addition & 1 deletion segmenttestapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.+'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public class SampleApplication extends Application {


static final String SEGMENT_WRITE_KEY = "<SEGMENT_WRITE_KEY>";
static final String SEGMENT_WRITE_KEY = "p3uCyX72FjaikfQVyxvUGSzBpRst2flg";
static final String TAG = "SEG_AF";

@Override public void onCreate() {
Expand Down
Loading