LeppardLabs/Adobe-Marketing-Cloud-mobile-services


Maven workaround for providing access to the adobe android libs via gradle. https://github.com/Adobe-Marketing-Cloud/mobile-services

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.LeppardLabs:Adobe-Marketing-Cloud-mobile-services:'
	}
	dependencies {
		implementation("com.github.LeppardLabs:Adobe-Marketing-Cloud-mobile-services:")
	}
	<dependency>
	    <groupId>com.github.LeppardLabs</groupId>
	    <artifactId>Adobe-Marketing-Cloud-mobile-services</artifactId>
	    <version></version>
	</dependency>

                            
    libraryDependencies += "com.github.LeppardLabs" % "Adobe-Marketing-Cloud-mobile-services" % ""
        
        

                            
    :dependencies [[com.github.LeppardLabs/Adobe-Marketing-Cloud-mobile-services ""]]
        
        

Readme


Adobe-Marketing-Cloud/mobile-services for Android Build Status API API

Workaround for having latest version of adobe adobeMobileLibrary.jar and adobeMobileScene7.jar instead of having to put them manually into repository.

Only downside is that it has a small overhead because we put two jars into a android library project. But it should be fairly small and as you can see it's empty.

How to install

	repositories {
	    maven {
	        url "https://jitpack.io"
	    }
	}
		
	dependencies {
             compile 'com.github.kibotu:Adobe-Marketing-Cloud-mobile-services:-SNAPSHOT'
    }

How to build

gradle clean build