Skip to content
This repository has been archived by the owner on Mar 9, 2018. It is now read-only.

num42/mvn_repo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to use in your app

How to use if you want to publish a library

def versionMajor = 0 def versionMinor = 0 def versionPatch = 1

version = "${versionMajor}.${versionMinor}.${versionPatch}"

android { defaultConfig { versionCode versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100 versionName = project.version } )

  • use the gradle task publishArchiveToLocalMavenRepo to add it locally
  • use the gradle task pushToRemoteMavenRepo to push all local archives to the remote repository

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published