Skip to content

Commit

Permalink
(Optimize 3.2.4) Added support for the new MobileCore.initialize API …
Browse files Browse the repository at this point in the history
…introduced in Core (#144)

* Update AndroidManifest.xml to include extension information.

* Updating version to 3.2.4

* Update gradle.properties

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
praveek and github-actions[bot] authored Feb 11, 2025
1 parent cdd2d45 commit 36cb864
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
8 changes: 4 additions & 4 deletions code/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ org.gradle.caching=true
android.useAndroidX=true

moduleName=optimize
moduleVersion=3.2.3
moduleVersion=3.2.4

#Maven artifact
mavenRepoName=AdobeMobileOptimizeSdk
mavenRepoDescription=Adobe Experience Platform Optimize extension for the Adobe Experience Platform Mobile SDK
mavenUploadDryRunFlag=false

# production versions for production build
mavenCoreVersion=3.2.0
mavenEdgeVersion=3.0.0
functionalTestEdgeVersion=3.0.0
mavenCoreVersion=3.3.0
mavenEdgeVersion=3.0.1
functionalTestEdgeVersion=3.0.1
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.2.3";
static final String EXTENSION_VERSION = "3.2.4";
public static final String LOG_TAG = "OptimizeTest";
static final String CONFIG_DATA_STORE = "AdobeMobile_ConfigState";

Expand Down
11 changes: 10 additions & 1 deletion code/optimize/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,13 @@
governing permissions and limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" />
<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.optimize.OptimizeExtension"
android:value="Extension" />
</service>
</application>
</manifest>
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.2.3";
static final String EXTENSION_VERSION = "3.2.4";
static final String EXTENSION_NAME = "com.adobe.optimize";
static final String FRIENDLY_NAME = "Optimize";
static final double GET_RESPONSE_CALLBACK_TIMEOUT = 10;
Expand Down

0 comments on commit 36cb864

Please sign in to comment.