This repository was archived by the owner on Apr 11, 2023. It is now read-only.

Description
Hello,
butterknife is a default library to development, so I must use it!
But I would like to use json parser.
And this part of gradle block butterknife:
compileJava {
doFirst {
// Directory should exists before compilation started.
generatedSourcesDir.mkdirs()
}
options.compilerArgs += [
'-processor',
'com.instagram.common.json.annotation.processor.JsonAnnotationProcessor',
'-s',
generatedSourcesDir
]
}
What is the proper way to use both libraries together? Others recommended to use ig-json-parser with android-apt but I don't know how can I.
bg,
Larten