Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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 .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
publish:
permissions:
contents: write
uses: adobe/aepsdk-commons/.github/workflows/android-maven-release.yml@gha-android-3.4.2
uses: adobe/aepsdk-commons/.github/workflows/android-maven-release.yml@gha-android-3.4.3
with:
tag: ${{ github.event.inputs.tag }}
create-github-release: ${{ github.event.inputs.create-github-release == 'true' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
publish:
permissions:
contents: write
uses: adobe/aepsdk-commons/.github/workflows/android-maven-snapshot.yml@gha-android-3.4.2
uses: adobe/aepsdk-commons/.github/workflows/android-maven-snapshot.yml@gha-android-3.4.3
secrets: inherit
with:
ref: ${{ inputs.ref }}
Expand Down
2 changes: 1 addition & 1 deletion code/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ buildscript {
mavenLocal()
}
dependencies {
classpath("com.github.adobe:aepsdk-commons:gp-3.4.1")
classpath("com.github.adobe:aepsdk-commons:gp-3.4.3")
}
}
2 changes: 1 addition & 1 deletion code/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ org.gradle.caching=true
android.useAndroidX=true

moduleName=optimize
moduleVersion=3.6.1
moduleVersion=3.6.2

#Maven artifact
mavenRepoName=AdobeMobileOptimizeSdk
Expand Down
2 changes: 1 addition & 1 deletion code/optimize/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ aepLibrary {
enableDokkaDoc = true
enableSpotless = true
enableCheckStyle = true
enablePlayConsoleVerification = false
enablePlayConsoleVerification = true

publishing {
gitRepoName = "aepsdk-optimize-android"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class OptimizeTestConstants {

static final String EXTENSION_VERSION = "3.6.1";
static final String EXTENSION_VERSION = "3.6.2";
public static final String LOG_TAG = "OptimizeTest";
static final String CONFIG_DATA_STORE = "AdobeMobile_ConfigState";

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

class OptimizeConstants {
static final String LOG_TAG = "Optimize";
static final String EXTENSION_VERSION = "3.6.1";
static final String EXTENSION_VERSION = "3.6.2";
static final String EXTENSION_NAME = "com.adobe.optimize";
static final String FRIENDLY_NAME = "Optimize";
static final double GET_RESPONSE_CALLBACK_TIMEOUT = 10;
Expand Down
Loading