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
9 changes: 9 additions & 0 deletions code/edge/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!--

Copyright 2019 Adobe. All rights reserved.
Expand All @@ -12,4 +13,12 @@

-->
<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.EdgeExtension"
android:value="Extension" />
</service>
</application>
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
final class EdgeConstants {

static final String EDGE_DATA_STORAGE = "EdgeDataStorage";
static final String EXTENSION_VERSION = "3.0.0";
static final String EXTENSION_VERSION = "3.0.1";
static final String EXTENSION_NAME = "com.adobe.edge";
static final String FRIENDLY_NAME = "Edge";
static final String LOG_TAG = FRIENDLY_NAME;
Expand Down
6 changes: 3 additions & 3 deletions code/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ org.gradle.configureondemand=false
org.gradle.caching=true

moduleName=edge
moduleVersion=3.0.0
mavenCoreVersion=3.0.0
mavenEdgeIdentityVersion=3.0.0
moduleVersion=3.0.1
mavenCoreVersion=3.3.0
mavenEdgeIdentityVersion=3.0.1
mavenEdgeConsentVersion=3.0.0
mavenTestUtilsVersion=3.0.0
mavenRepoName=AdobeMobileEdgeSdk
Expand Down
Loading