Skip to content

Commit

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

Releases/6.x.x/6.12.x/6.12.2 rc1
  • Loading branch information
morisgateno-appsflyer committed Aug 22, 2023
2 parents cc5a7d9 + b3d041a commit 6ff19e0
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
fail-on-error: true
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

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

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ android {
}

dependencies {
implementation 'androidx.test.ext:junit:1.1.5'
implementation 'com.appsflyer:af-android-sdk:6.10.3'
testImplementation 'androidx.test.ext:junit:1.1.5'
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'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public Integration<AppsFlyerLib> 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)
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

GROUP=com.appsflyer

VERSION_CODE=13
VERSION_NAME=6.10.3
VERSION_CODE=14
VERSION_NAME=6.12.2
POM_ARTIFACT_ID=segment-android-integration
POM_PACKAGING=aar

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

0 comments on commit 6ff19e0

Please sign in to comment.