aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorVictor Häggqvist <[email protected]>2015-09-17 16:50:37 +0200
committerVictor Häggqvist <[email protected]>2015-09-17 16:50:37 +0200
commitb5d3dcc8f270971846ad57a4f3e2e30a7789759f (patch)
tree74b227457145cd9f15d00dc2aae4f95d472b78ff /README.md
parentb571e302183b240b1c42d9482405949496dd72ff (diff)
update readme for aboutit-meta
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index a44c461..0e2ed0a 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,11 @@ From Maven Central [![](https://img.shields.io/maven-central/v/com.snilius.about
compile 'com.snilius.aboutit:aboutit:VERSION@aar'
+Optionally one may also add the meta module to get some common library presets for free, like Retrofit, Gson, OkHttp, Glide and some more.
+Current version: [![](https://img.shields.io/maven-central/v/com.snilius.aboutit/aboutit-meta.svg)](http://mvnrepository.com/artifact/com.snilius.aboutit/aboutit-meta)
+
+ compile 'com.snilius.aboutit:aboutit-meta:VERSION@aar'
+
## Sample
A complete sample
```java
@@ -13,6 +18,7 @@ new AboutIt(this).app(R.string.app_name)
.buildInfo(BuildConfig.DEBUG, BuildConfig.VERSION_CODE, BuildConfig.VERSION_NAME)
.copyright("Example Business")
.libLicense("AboutIt", "Victor Häggqvist", L.AP2, "https://github.com/victorhaggqvist/aboutit")
+ .libLicense(new LibTimber()) // requires aboutit-meta module
.toTextView(R.id.about_text);
```