From dd86599d5b32c2f0e19427dc13854bc652027a3b Mon Sep 17 00:00:00 2001 From: Louis CAD Date: Thu, 17 May 2018 16:14:35 +0200 Subject: [PATCH] Fix codegen dependency configuration annotationProcessor configuration is for java. Kotlin uses kapt --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f34b61..4e09db0 100644 --- a/README.md +++ b/README.md @@ -541,7 +541,7 @@ add the following to your build to enable the annotation processor: ``` ```groovy -annotationProcessor 'com.squareup.moshi:moshi-kotlin-codegen:1.6.0' +kapt 'com.squareup.moshi:moshi-kotlin-codegen:1.6.0' ``` #### Limitations