jitpack-io / android-jitpack-library-example

A example of a Jitpack integration with a library with multiple product flavours

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

android-jitpack-library-example

A example of a Jitpack integration with a library with multiple product flavours:

  • production (default)
  • sandbox

All variants are built and published with different filenames:

repositories {
 maven { url "https://jitpack.io" }
}

dependencies {
  compile 'com.github.jitpack-io:android-jitpack-library-example:1.5:productionRelease@aar'  
  compile 'com.github.jitpack-io:android-jitpack-library-example:1.5:sandboxRelease@aar'
  compile 'com.github.jitpack-io:android-jitpack-library-example:1.5:sandboxDebug@aar'
  compile 'com.github.jitpack-io:android-jitpack-library-example:1.5:productionDebug@aar'
}

The default variant is 'productionRelease' and is set using the defaultPublishConfig property:

dependencies {
  compile 'com.github.jitpack-io:android-jitpack-library-example:1.5'
}

About

A example of a Jitpack integration with a library with multiple product flavours

License:MIT License


Languages

Language:Java 100.0%