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
2 changes: 1 addition & 1 deletion code/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}

dependencies {
classpath("com.github.adobe:aepsdk-commons:gp-3.4.1")
classpath("com.github.adobe.aepsdk-commons:aepsdk-gradle-plugin:4.0.0")
classpath("org.jetbrains.kotlinx:binary-compatibility-validator:0.13.2")
classpath("androidx.benchmark:benchmark-gradle-plugin:1.2.3")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ package com.adobe.marketing.mobile.internal

internal object CoreConstants {
const val LOG_TAG = "MobileCore"
const val VERSION = "3.6.0"
const val VERSION = "4.0.0"

object EventDataKeys {
/**
Expand Down
8 changes: 4 additions & 4 deletions code/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ android.useAndroidX=true

#Maven artifacts
#Core extension
coreExtensionVersion=3.6.0
coreExtensionVersion=4.0.0
coreExtensionName=core
coreMavenRepoName=AdobeMobileCoreSdk
coreMavenRepoDescription=Android Core Extension for Adobe Mobile Marketing
#Signal extension
signalExtensionVersion=3.0.1
signalExtensionVersion=4.0.0
signalExtensionName=signal
signalMavenRepoName=AdobeMobileSignalSdk
signalMavenRepoDescription=Android Signal Extension for Adobe Mobile Marketing
#Lifecycle extension
lifecycleExtensionVersion=3.0.2
lifecycleExtensionVersion=4.0.0
lifecycleExtensionName=lifecycle
lifecycleMavenRepoName=AdobeMobileLifecycleSdk
lifecycleMavenRepoDescription=Android Lifecycle Extension for Adobe Mobile Marketing
#Identity extension
identityExtensionVersion=3.0.2
identityExtensionVersion=4.0.0
identityExtensionName=identity
identityMavenRepoName=AdobeMobileIdentitySdk
identityMavenRepoDescription=Android Identity Extension for Adobe Mobile Marketing
2 changes: 1 addition & 1 deletion code/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class Identity {

private static final String CLASS_NAME = "Identity";
private static final String EXTENSION_VERSION = "3.0.2";
private static final String EXTENSION_VERSION = "4.0.0";
private static final String REQUEST_IDENTITY_EVENT_NAME = "IdentityRequestIdentity";
private static final int PUBLIC_API_TIME_OUT_MILLISECOND = 500; // ms
private static final String LOG_TAG = "Identity";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

public class Lifecycle {

private static final String EXTENSION_VERSION = "3.0.2";
private static final String EXTENSION_VERSION = "4.0.0";

public static final Class<? extends Extension> EXTENSION = LifecycleExtension.class;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

public class Signal {

private static final String EXTENSION_VERSION = "3.0.1";
private static final String EXTENSION_VERSION = "4.0.0";
private static final String CLASS_NAME = "Signal";

public static final Class<? extends Extension> EXTENSION = SignalExtension.class;
Expand Down
4 changes: 1 addition & 3 deletions code/testapp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import com.adobe.marketing.mobile.gradle.BuildConstants
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("org.jetbrains.kotlin.plugin.compose")
}

android {
Expand Down Expand Up @@ -40,9 +41,6 @@ android {
buildFeatures {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = BuildConstants.Versions.COMPOSE_COMPILER
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
Expand Down
2 changes: 1 addition & 1 deletion code/testutils/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ val jacksonVersion = "2.12.7"
aepLibrary {
namespace = "com.adobe.marketing.mobile.testutils"
moduleName = "testutils"
moduleVersion = "3.0.0"
moduleVersion = "4.0.0"
enableSpotless = true
enableSpotlessPrettierForJava = true
enableDokkaDoc = true
Expand Down
Loading