https://github.com/karn/android-library-template
General purpose Android library template.
https://github.com/karn/android-library-template
android android-library github-template template
Last synced: about 2 months ago
JSON representation
General purpose Android library template.
- Host: GitHub
- URL: https://github.com/karn/android-library-template
- Owner: Karn
- Created: 2019-06-09T16:40:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-09T16:45:59.000Z (over 6 years ago)
- Last Synced: 2024-12-27T19:28:07.587Z (12 months ago)
- Topics: android, android-library, github-template, template
- Size: 69.3 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README

## $android-library-name$
[](http://kotlinlang.org)
[](https://travis-ci.org/$username$/$repo$)
[](https://codecov.io/gh/$username$/$repo$)
[
](./../../releases)
#### GETTING STARTED
$android-library-name$ (pre-)releases are available via JitPack. It is recommended that a specific release version is selected when using the library in production as there may be breaking changes at anytime.
> **Tip:** Test out the canary channel to try out features by using the latest develop snapshot; `develop-SNAPSHOT`.
```Groovy
// Project level build.gradle
// ...
repositories {
maven { url 'https://jitpack.io' }
}
// ...
// Module level build.gradle
dependencies {
// Replace version with release version, e.g. 1.0.0-alpha, -SNAPSHOT
implementation "com.github.$username$:$repo$:[VERSION]"
}
```
#### USAGE
The most basic case is as follows:
```Kotlin
```
#### CONTRIBUTING
There are many ways to [contribute](./.github/CONTRIBUTING.md), you can
- submit bugs,
- help track issues,
- review code changes.