From e38e5b1f52d1e04cafdd9900f7ceda157823d07f Mon Sep 17 00:00:00 2001 From: saquib-adobe Date: Tue, 29 Jul 2025 13:27:49 +0530 Subject: [PATCH 1/6] Setting enablePlayConsoleVerification to true --- code/build.gradle.kts | 2 +- code/optimize/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/build.gradle.kts b/code/build.gradle.kts index b4a4d942..d065fa0b 100644 --- a/code/build.gradle.kts +++ b/code/build.gradle.kts @@ -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.2") } } \ No newline at end of file diff --git a/code/optimize/build.gradle.kts b/code/optimize/build.gradle.kts index 60889a59..919dc4d1 100644 --- a/code/optimize/build.gradle.kts +++ b/code/optimize/build.gradle.kts @@ -23,7 +23,7 @@ aepLibrary { enableDokkaDoc = true enableSpotless = true enableCheckStyle = true - enablePlayConsoleVerification = false + enablePlayConsoleVerification = true publishing { gitRepoName = "aepsdk-optimize-android" From 5bc7fe524540515fc562b527f41d3493453c257c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 29 Jul 2025 17:06:35 +0000 Subject: [PATCH 2/6] Updating version to 3.6.2 --- code/gradle.properties | 2 +- .../adobe/marketing/mobile/optimize/OptimizeTestConstants.java | 2 +- .../com/adobe/marketing/mobile/optimize/OptimizeConstants.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/gradle.properties b/code/gradle.properties index dd2f3f42..1e6ea001 100644 --- a/code/gradle.properties +++ b/code/gradle.properties @@ -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 diff --git a/code/optimize/src/androidTest/java/com/adobe/marketing/mobile/optimize/OptimizeTestConstants.java b/code/optimize/src/androidTest/java/com/adobe/marketing/mobile/optimize/OptimizeTestConstants.java index 1a5d9176..b0cca9db 100644 --- a/code/optimize/src/androidTest/java/com/adobe/marketing/mobile/optimize/OptimizeTestConstants.java +++ b/code/optimize/src/androidTest/java/com/adobe/marketing/mobile/optimize/OptimizeTestConstants.java @@ -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"; diff --git a/code/optimize/src/main/java/com/adobe/marketing/mobile/optimize/OptimizeConstants.java b/code/optimize/src/main/java/com/adobe/marketing/mobile/optimize/OptimizeConstants.java index 027faef6..b63de788 100644 --- a/code/optimize/src/main/java/com/adobe/marketing/mobile/optimize/OptimizeConstants.java +++ b/code/optimize/src/main/java/com/adobe/marketing/mobile/optimize/OptimizeConstants.java @@ -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; From 4cd99280f60a18e492db1c1500af7663b7ae0563 Mon Sep 17 00:00:00 2001 From: saquib-adobe Date: Tue, 29 Jul 2025 23:09:27 +0530 Subject: [PATCH 3/6] Adding Google token to the secrets --- .github/workflows/maven-release.yml | 6 ++++-- .github/workflows/maven-snapshot.yml | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven-release.yml b/.github/workflows/maven-release.yml index 60a4b72f..0d8bee26 100644 --- a/.github/workflows/maven-release.yml +++ b/.github/workflows/maven-release.yml @@ -41,10 +41,12 @@ jobs: permissions: contents: write uses: adobe/aepsdk-commons/.github/workflows/android-maven-release.yml@gha-android-3.4.2 + secrets: + inherit: true + GOOGLE_TOKEN: ${{ secrets.GOOGLE_TOKEN }} with: tag: ${{ github.event.inputs.tag }} create-github-release: ${{ github.event.inputs.create-github-release == 'true' }} version-validation-paths: code/gradle.properties, code/optimize/src/main/java/com/adobe/marketing/mobile/optimize/OptimizeConstants.java version-validation-dependencies: Core ${{ github.event.inputs.core-dependency }}, Edge ${{ github.event.inputs.edge-dependency }} - staging-dir: code/optimize/build/staging-deploy - secrets: inherit \ No newline at end of file + staging-dir: code/optimize/build/staging-deploy \ No newline at end of file diff --git a/.github/workflows/maven-snapshot.yml b/.github/workflows/maven-snapshot.yml index 0380d85f..9d793aa0 100644 --- a/.github/workflows/maven-snapshot.yml +++ b/.github/workflows/maven-snapshot.yml @@ -25,7 +25,9 @@ jobs: permissions: contents: write uses: adobe/aepsdk-commons/.github/workflows/android-maven-snapshot.yml@gha-android-3.4.2 - secrets: inherit + secrets: + inherit: true + GOOGLE_TOKEN: ${{ secrets.GOOGLE_TOKEN }} with: ref: ${{ inputs.ref }} staging-dir: code/optimize/build/staging-deploy \ No newline at end of file From 0ac74ab32a678d21e0f3902f8d2d686aa1faa3b6 Mon Sep 17 00:00:00 2001 From: siddique-adobe Date: Tue, 29 Jul 2025 23:34:03 +0530 Subject: [PATCH 4/6] Revert "Adding Google Token Secret mapping" --- .github/workflows/maven-release.yml | 6 ++---- .github/workflows/maven-snapshot.yml | 4 +--- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/maven-release.yml b/.github/workflows/maven-release.yml index 0d8bee26..60a4b72f 100644 --- a/.github/workflows/maven-release.yml +++ b/.github/workflows/maven-release.yml @@ -41,12 +41,10 @@ jobs: permissions: contents: write uses: adobe/aepsdk-commons/.github/workflows/android-maven-release.yml@gha-android-3.4.2 - secrets: - inherit: true - GOOGLE_TOKEN: ${{ secrets.GOOGLE_TOKEN }} with: tag: ${{ github.event.inputs.tag }} create-github-release: ${{ github.event.inputs.create-github-release == 'true' }} version-validation-paths: code/gradle.properties, code/optimize/src/main/java/com/adobe/marketing/mobile/optimize/OptimizeConstants.java version-validation-dependencies: Core ${{ github.event.inputs.core-dependency }}, Edge ${{ github.event.inputs.edge-dependency }} - staging-dir: code/optimize/build/staging-deploy \ No newline at end of file + staging-dir: code/optimize/build/staging-deploy + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/maven-snapshot.yml b/.github/workflows/maven-snapshot.yml index 9d793aa0..0380d85f 100644 --- a/.github/workflows/maven-snapshot.yml +++ b/.github/workflows/maven-snapshot.yml @@ -25,9 +25,7 @@ jobs: permissions: contents: write uses: adobe/aepsdk-commons/.github/workflows/android-maven-snapshot.yml@gha-android-3.4.2 - secrets: - inherit: true - GOOGLE_TOKEN: ${{ secrets.GOOGLE_TOKEN }} + secrets: inherit with: ref: ${{ inputs.ref }} staging-dir: code/optimize/build/staging-deploy \ No newline at end of file From c6833bd2c7a59fdb7c3963bd3d6337c91a2e58d5 Mon Sep 17 00:00:00 2001 From: saquib-adobe Date: Wed, 30 Jul 2025 01:54:57 +0530 Subject: [PATCH 5/6] Upgrading the workflow version to gha-android-3.4.3 --- .github/workflows/maven-release.yml | 2 +- .github/workflows/maven-snapshot.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven-release.yml b/.github/workflows/maven-release.yml index 60a4b72f..65b21404 100644 --- a/.github/workflows/maven-release.yml +++ b/.github/workflows/maven-release.yml @@ -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' }} diff --git a/.github/workflows/maven-snapshot.yml b/.github/workflows/maven-snapshot.yml index 0380d85f..6274b7e4 100644 --- a/.github/workflows/maven-snapshot.yml +++ b/.github/workflows/maven-snapshot.yml @@ -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 }} From 912fc580e626c69c26ed876d1f7f3db5937bae40 Mon Sep 17 00:00:00 2001 From: saquib-adobe Date: Thu, 31 Jul 2025 16:42:27 +0530 Subject: [PATCH 6/6] Upgrading the AEPSDK Gradle Plugin Version to 3.4.3 --- code/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/build.gradle.kts b/code/build.gradle.kts index d065fa0b..ea83a7ad 100644 --- a/code/build.gradle.kts +++ b/code/build.gradle.kts @@ -19,6 +19,6 @@ buildscript { mavenLocal() } dependencies { - classpath("com.github.adobe:aepsdk-commons:gp-3.4.2") + classpath("com.github.adobe:aepsdk-commons:gp-3.4.3") } } \ No newline at end of file