Skip to content
Merged
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
9 changes: 9 additions & 0 deletions code/analytics/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!--

Copyright 2022 Adobe. All rights reserved.
Expand All @@ -12,4 +13,12 @@

-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<service android:name="com.adobe.marketing.mobile.ExtensionDiscoveryService"
android:exported="false">
<meta-data
android:name="com.adobe.marketing.mobile.analytics.internal.AnalyticsExtension"
android:value="Extension" />
</service>
</application>
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ internal object AnalyticsConstants {

const val EXTENSION_NAME = "com.adobe.module.analytics"
const val FRIENDLY_NAME = "Analytics"
const val EXTENSION_VERSION = "3.0.1"
const val EXTENSION_VERSION = "3.0.2"
const val DATASTORE_NAME = "AnalyticsDataStorage"
const val DATA_QUEUE_NAME = EXTENSION_NAME
const val REORDER_QUEUE_NAME = "com.adobe.module.analyticsreorderqueue"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

public class Analytics {
private static final String LOG_TAG = "Analytics";
private static final String EXTENSION_VERSION = "3.0.1";
private static final String EXTENSION_VERSION = "3.0.2";
// The constants for EventData keys
private static final String ANALYTICS_ID = "aid";
private static final String GET_QUEUE_SIZE = "getqueuesize";
Expand Down
4 changes: 2 additions & 2 deletions code/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ org.gradle.caching=true
android.useAndroidX=true

moduleName=analytics
moduleVersion=3.0.1
moduleVersion=3.0.2

mavenRepoName=AdobeMobileAnalyticsSdk
mavenRepoDescription=Android Analytics Extension for Adobe Mobile Marketing
mavenUploadDryRunFlag=false

# production versions for production build
mavenCoreVersion=3.0.0
mavenCoreVersion=3.3.0
functionalTestIdentityVersion=3.0.0
Loading