From f567d36c4152ce2a96ea61a46a0a91b769a8a169 Mon Sep 17 00:00:00 2001 From: Jonas Schmid Date: Tue, 11 Apr 2017 15:46:53 +0200 Subject: [PATCH] Fixed README format --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e8131bd..fa7b561 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -#ParcelablePlease +# ParcelablePlease An AnnotationProcessor for generating Android Parcelable boilerplate code. [See this blog entry](http://hannesdorfmann.com/android/ParcelablePlease) for comparison with other parcel libraries. -#Dependency +# Dependency Latest version: [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.hannesdorfmann.parcelableplease/annotation/badge.png)](https://maven-badges.herokuapp.com/maven-central/com.hannesdorfmann.parcelableplease/annotation) ```groovy @@ -10,7 +10,7 @@ apt 'com.hannesdorfmann.parcelableplease:processor:x.x.x' ``` In android studio you need to apply Hugo Visser's awesome [android-apt](https://bitbucket.org/hvisser/android-apt) gradle plugin to enable annotation processing. -#How to use +# How to use Simply annotate the classes you want to make Parcelable with `@ParcelablePlease` and implement the `Parcelable` as well as the `CREATOR` (This step can be automated by using the Android Studio plugin, see below). ```java