aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordodgex <kujanssen@freenet.de>2014-05-02 12:02:49 +0200
committerdodgex <kujanssen@freenet.de>2014-05-02 12:02:49 +0200
commitb1ffdc06756896b4f3b9b76e454f8d7be6106f19 (patch)
tree81c3f62570e9038652aaacba28dde6bd2b1951aa
parent9417215f2758bbf792cb91ca5f90ba5a62924833 (diff)
downloadlombok-b1ffdc06756896b4f3b9b76e454f8d7be6106f19.tar.gz
lombok-b1ffdc06756896b4f3b9b76e454f8d7be6106f19.tar.bz2
lombok-b1ffdc06756896b4f3b9b76e454f8d7be6106f19.zip
Update android.html
`apt` is only required when using android-apt plugin
-rw-r--r--website/setup/android.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/website/setup/android.html b/website/setup/android.html
index c7842c4a..82f0bea1 100644
--- a/website/setup/android.html
+++ b/website/setup/android.html
@@ -83,10 +83,14 @@ java -jar lombok.jar publicApi</pre>
<h4>Gradle Setup</h4>
<ul>
<li>First of all make sure that the version of your android plugin is <code>&gt;= 0.4.3</code></li>
- <li>Then you need <a href="https://bitbucket.org/hvisser/android-apt">android-apt</a>, follow the instructions on thier site</li>
<li>Add Lombok to your Apps <code>dependencies</code>-Block
<pre>
provided "org.projectlombok:lombok:1.12.6"
+</pre>
+ </li>
+ <li>When using <a href="https://bitbucket.org/hvisser/android-apt">android-apt</a>, you have to specify Lombok also with <code>apt</code> in the <code>dependencies</code>-Block
+<pre>
+ provided "org.projectlombok:lombok:1.12.6"
apt "org.projectlombok:lombok:1.12.6"
</pre>
</li>