From 236dab5626351a96d3f8c2e992836e5835e4590c Mon Sep 17 00:00:00 2001 From: Victor Häggqvist Date: Thu, 17 Sep 2015 17:43:37 +0200 Subject: Update JavaDoc --- README.md | 54 ------------------------------------------------------ 1 file changed, 54 deletions(-) delete mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md deleted file mode 100644 index 0e2ed0a..0000000 --- a/README.md +++ /dev/null @@ -1,54 +0,0 @@ -# AboutIt -A About-page creator - -## Install -From Maven Central [![](https://img.shields.io/maven-central/v/com.snilius.aboutit/aboutit.svg)](http://mvnrepository.com/artifact/com.snilius.aboutit/aboutit) - - 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 -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); -``` - -Just the dynamic version name and copyright year display -```java -new AboutIt(this).app("My App") - .buildInfo(BuildConfig.DEBUG, BuildConfig.VERSION_CODE, BuildConfig.VERSION_NAME) - .copyright("Example Business") - .toTextView(R.id.about_text); -``` - -The code for these samples are all in the sample app [here](aboutit-sample/src/main/java/com/snilius/aboutit/sample/MainActivity.java). - -screenshot -screenshot -screenshot -screenshot - -## License - - Copyright 2014-2015 Victor Häggqvist - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -- cgit v1.2.3