Skip to content

Commit 6ff19e0

Browse files
Merge pull request #92 from AppsFlyerSDK/releases/6.x.x/6.12.x/6.12.2-rc1
Releases/6.x.x/6.12.x/6.12.2 rc1
2 parents cc5a7d9 + b3d041a commit 6ff19e0

File tree

7 files changed

+12
-9
lines changed

7 files changed

+12
-9
lines changed

.github/workflows/unit-tests-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
name: Test Results
2929
path: app/build/test-results/testDebugUnitTest/TEST-*.xml # Path to test results
3030
reporter: java-junit # Format of test results
31-
fail-on-error: true
31+
fail-on-error: true

RELEASENOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 6.12.2
2+
* Update Android SDK to v6.12.2
3+
14
### 6.10.3
25
* Update Android SDK to v6.10.1
36
* Added CI-CD pipeline

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You can track installs, updates and sessions and also track additional in-app ev
2121

2222
---
2323

24-
Built with AppsFlyer Android SDK `v6.10.3`
24+
Built with AppsFlyer Android SDK `v6.12.2`
2525

2626
## Table of content
2727

@@ -95,7 +95,7 @@ And to start the AppsFlyer SDK, use `void startAppsFlyer(Context context)` API.
9595

9696
Add the AppsFlyer Segment Integration dependency to your app `build.gradle` file.
9797
```java
98-
implementation 'com.appsflyer:segment-android-integration:6.10.3'
98+
implementation 'com.appsflyer:segment-android-integration:6.12.2'
9999
implementation 'com.android.installreferrer:installreferrer:2.1'
100100
```
101101

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ android {
3838
}
3939

4040
dependencies {
41-
implementation 'androidx.test.ext:junit:1.1.5'
42-
implementation 'com.appsflyer:af-android-sdk:6.10.3'
41+
testImplementation 'androidx.test.ext:junit:1.1.5'
42+
implementation 'com.appsflyer:af-android-sdk:6.12.2'
4343
compileOnly 'com.android.installreferrer:installreferrer:2.1'
4444
compileOnly 'com.segment.analytics.android:analytics:4.+'
4545
testImplementation 'androidx.test:core:1.4.0'

app/src/main/java/com/segment/analytics/android/integrations/appsflyer/AppsflyerIntegration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public Integration<AppsFlyerLib> create(ValueMap settings, Analytics analytics)
9898
listener = new ConversionListener(analytics);
9999
}
100100

101-
AppsFlyerLib.getInstance().setPluginInfo(new PluginInfo(Plugin.SEGMENT,"6.10.3"));
101+
AppsFlyerLib.getInstance().setPluginInfo(new PluginInfo(Plugin.SEGMENT,"6.12.2"));
102102
afLib.setDebugLog(logger.logLevel != Analytics.LogLevel.NONE);
103103
afLib.init(devKey, listener, application.getApplicationContext());
104104
if (deepLinkListener != null)

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
GROUP=com.appsflyer
2121

22-
VERSION_CODE=13
23-
VERSION_NAME=6.10.3
22+
VERSION_CODE=14
23+
VERSION_NAME=6.12.2
2424
POM_ARTIFACT_ID=segment-android-integration
2525
POM_PACKAGING=aar
2626

segmenttestapp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
implementation project(path: ':app')
2828
testImplementation 'junit:junit:4.12'
2929
implementation 'com.android.support:appcompat-v7:28.0.0'
30-
implementation 'com.appsflyer:af-android-sdk:6.10.3'
30+
implementation 'com.appsflyer:af-android-sdk:6.12.2'
3131
implementation 'com.segment.analytics.android:analytics:4.+'
3232
implementation 'com.android.installreferrer:installreferrer:2.1'
3333
}

0 commit comments

Comments
 (0)