From 5de39469ad8071d71208f630296ec374be2ba701 Mon Sep 17 00:00:00 2001 From: Anas Alaa Date: Wed, 11 Jul 2018 13:09:32 +0200 Subject: [PATCH] update README.md for supporting android default annotationProcessor (#97) --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 7a9532c..c13ae6e 100644 --- a/README.md +++ b/README.md @@ -418,6 +418,20 @@ apt { } } + +// Annotation processor +android { +.... + defaultConfig { + .... + javaCompileOptions { + annotationProcessorOptions { + arguments = [ fragmentArgsLib : 'true' ] + includeCompileClasspath true + } + } + } +} // Kotlin Annotation processor kapt { generateStubs = true