From 04d3c987d19c0c197b338b80fc3c78587116add6 Mon Sep 17 00:00:00 2001 From: morisgateno-appsflyer Date: Thu, 15 Feb 2024 10:23:27 +0200 Subject: [PATCH 1/3] changed the way the library uses AFSDK - in order to let the user that uses the plugin to import Appsflyer SDK --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 4cd2976..d0aa802 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.12.2' + api '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' From e639c76cd14fb28bb7a040136a055db1860e449c Mon Sep 17 00:00:00 2001 From: Moris Gateno Date: Thu, 15 Feb 2024 10:39:01 +0200 Subject: [PATCH 2/3] 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.13.0 | 0 segmenttestapp/build.gradle | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) create mode 100644 releasenotes.6.13.0 diff --git a/Readme.md b/Readme.md index f92e834..295ccf8 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.12.2` +Built with AppsFlyer Android SDK `v6.13.0` ## 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.12.2' +implementation 'com.appsflyer:segment-android-integration:6.13.0' implementation 'com.android.installreferrer:installreferrer:2.1' ``` diff --git a/app/build.gradle b/app/build.gradle index d0aa802..9e07a5f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -39,7 +39,7 @@ android { dependencies { testImplementation 'androidx.test.ext:junit:1.1.5' - api 'com.appsflyer:af-android-sdk:6.12.2' + api 'com.appsflyer:af-android-sdk:6.13.0' 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 f7b8eac..8ebc6f5 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.12.2")); + AppsFlyerLib.getInstance().setPluginInfo(new PluginInfo(Plugin.SEGMENT,"6.13.0")); 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 2effde3..1574beb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -19,9 +19,9 @@ GROUP=com.appsflyer -VERSION_CODE=14 -VERSION_NAME=6.12.2 -POM_ARTIFACT_ID=segment-android-integration +VERSION_CODE=15 +VERSION_NAME=6.13.0-rc1 +POM_ARTIFACT_ID=segment-android-integration-beta POM_PACKAGING=aar POM_NAME=AppsFlyer Integration diff --git a/releasenotes.6.13.0 b/releasenotes.6.13.0 new file mode 100644 index 0000000..e69de29 diff --git a/segmenttestapp/build.gradle b/segmenttestapp/build.gradle index e000395..e1888c4 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.12.2' + implementation 'com.appsflyer:af-android-sdk:6.13.0' implementation 'com.segment.analytics.android:analytics:4.+' implementation 'com.android.installreferrer:installreferrer:2.1' } From facd19d3d24f00495e77667b61dd63dbd0c1e6ea Mon Sep 17 00:00:00 2001 From: Moris Gateno Date: Thu, 15 Feb 2024 11:51:55 +0200 Subject: [PATCH 3/3] Commited from github action - prepaing the repo for production. --- RELEASENOTES.md | 3 +++ gradle.properties | 4 ++-- releasenotes.6.13.0 | 0 3 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 releasenotes.6.13.0 diff --git a/RELEASENOTES.md b/RELEASENOTES.md index a8550db..1bb3ed2 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,6 @@ +### 6.13.0 + + ### 6.12.2 * Update Android SDK to v6.12.2 diff --git a/gradle.properties b/gradle.properties index 1574beb..e113785 100644 --- a/gradle.properties +++ b/gradle.properties @@ -20,8 +20,8 @@ GROUP=com.appsflyer VERSION_CODE=15 -VERSION_NAME=6.13.0-rc1 -POM_ARTIFACT_ID=segment-android-integration-beta +VERSION_NAME=6.13.0 +POM_ARTIFACT_ID=segment-android-integration POM_PACKAGING=aar POM_NAME=AppsFlyer Integration diff --git a/releasenotes.6.13.0 b/releasenotes.6.13.0 deleted file mode 100644 index e69de29..0000000