Skip to content

BetweenTwoBits/AndroidLibraryTemplate

Repository files navigation

AndroidLibraryTemplate

First, ensure that you have a gradle.properties file in ~/.gradle/ (or Windows equivalent) with the following info.

GITHUB_USER=yourusername
GITHUB_PERSONAL_ACCESS_TOKEN=yourtoken

Usage

   allprojects {
        repositories {
            google()
            mavenCentral()
            maven {
                name = "GithubPackages"
                url = uri("https://maven.pkg.github.com/BetweenTwoBits/AndroidLibraryTemplate")
                credentials {
                    username = project.properties['GITHUB_USER']
                    password = project.properties['GITHUB_PERSONAL_ACCESS_TOKEN']
                }
            }
        }
   }
   dependencies {
        implementation 'com.github.BetweenTwoBits:AndroidLibraryTemplate:x.x.x'
   }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages