Created
September 7, 2021 09:58
-
-
Save gmazzo/8cf43528ee4e0a25d906fcce8480ab7e to your computer and use it in GitHub Desktop.
Android Library Maven Publication
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id("com.android.library") | |
`maven-publish` | |
} | |
publishing { | |
repositories { | |
// TODO define your publish repos here | |
} | |
publications { | |
create<MavenPublication>("default") { | |
from(components["all"]) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment