AndroidLibraryForGitHubPackagesDemo
AndroidLibraryForGitHubPackagesDemo copied to clipboard
Sample project showcasing the steps to publish and consume Android Libraries on the GitHub Packages Registry
I have been following this Medium doc: [Publishing Android libraries to GitHub Packages](https://proandroiddev.com/publishing-android-libraries-to-the-github-package-registry-part-1-7997be54ea5a) This is build.gradle file: ``` import java.util.Properties plugins { id("com.android.library") id("org.jetbrains.kotlin.android") id("maven-publish") } val getVersionName = "1.0.0"...
First of all this is a great tutorial thanks for that. I followed every step and succesfully published my package and i can see it on my repo and package...
Hi, thanks for your article, it was very enlightening! Yet, I bumped into something. This is the repo: https://github.com/cesarferreira/android-unique-device-id I'm trying to upload the github package, I followed your guide...
I have project A which is used as a package. Project B uses A as a dependency. B is used as a dependency in project C. What will be the...