Adobe-Marketing-Cloud/mobile-services


⛔️ Deprecated ⛔️ These SDKs are no longer supported by Adobe. Please see Adobe Experience Platform Mobile SDKs for current and supported versions. https://sdkdocs.com

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.adobe-marketing-cloud:mobile-services:'
	}
	dependencies {
		implementation("com.github.adobe-marketing-cloud:mobile-services:")
	}
	<dependency>
	    <groupId>com.github.adobe-marketing-cloud</groupId>
	    <artifactId>mobile-services</artifactId>
	    <version></version>
	</dependency>

                            
    libraryDependencies += "com.github.adobe-marketing-cloud" % "mobile-services" % ""
        
        

                            
    :dependencies [[com.github.adobe-marketing-cloud/mobile-services ""]]
        
        

Readme


⛔️ DEPRECATED ⛔️

Important: These SDK libraries are no longer supported by Adobe. The Adobe Experience Platform Mobile SDK (previously referred to as v5) will exclusively support upcoming Adobe Experience Cloud features and functionality. Please see 4x SDK end of support FAQ

These new Adobe Experience Platform Mobile SDKs are configurable through Experience Platform Launch. Visit Launch to get started. Experience Platform SDK repositories are here - Github: Adobe Experience Platform SDKs.**