There was an error while loading. Please reload this page.
Add the Github Package repository to your top-level build.gradle, along with a Github username and access token (no permissions required).
build.gradle
repositories { maven { url = "https://maven.pkg.github.com/hmrc/android-components" credentials { username = System.getenv("GITHUB_USER_NAME") password = System.getenv("GITHUB_TOKEN") } } }
Then add the following to your list of dependencies:
implementation 'uk.gov.hmrc.components:components:{version}' androidTestImplementation 'uk.gov.hmrc.components:components-test:{version}'
The latest release can be found here.