Skip to content

Commit fbdf4be

Browse files
(Edge 3.0.1) Added support for the new MobileCore.initialize API introduced in Core (#186)
* Update AndroidManifest.xml to include extension information. * Updating version to 3.0.1 (#185) Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * Update gradle.properties --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 9119630 commit fbdf4be

3 files changed

Lines changed: 13 additions & 4 deletions

File tree

code/edge/src/main/AndroidManifest.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
12
<!--
23
34
Copyright 2019 Adobe. All rights reserved.
@@ -12,4 +13,12 @@
1213
1314
-->
1415
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
16+
<application>
17+
<service android:name="com.adobe.marketing.mobile.ExtensionDiscoveryService"
18+
android:exported="false">
19+
<meta-data
20+
android:name="com.adobe.marketing.mobile.EdgeExtension"
21+
android:value="Extension" />
22+
</service>
23+
</application>
1524
</manifest>

code/edge/src/main/java/com/adobe/marketing/mobile/EdgeConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
final class EdgeConstants {
1515

1616
static final String EDGE_DATA_STORAGE = "EdgeDataStorage";
17-
static final String EXTENSION_VERSION = "3.0.0";
17+
static final String EXTENSION_VERSION = "3.0.1";
1818
static final String EXTENSION_NAME = "com.adobe.edge";
1919
static final String FRIENDLY_NAME = "Edge";
2020
static final String LOG_TAG = FRIENDLY_NAME;

code/gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ org.gradle.configureondemand=false
1616
org.gradle.caching=true
1717

1818
moduleName=edge
19-
moduleVersion=3.0.0
20-
mavenCoreVersion=3.0.0
21-
mavenEdgeIdentityVersion=3.0.0
19+
moduleVersion=3.0.1
20+
mavenCoreVersion=3.3.0
21+
mavenEdgeIdentityVersion=3.0.1
2222
mavenEdgeConsentVersion=3.0.0
2323
mavenTestUtilsVersion=3.0.0
2424
mavenRepoName=AdobeMobileEdgeSdk

0 commit comments

Comments
 (0)