在新版本的gradle中,' android-apt' -pligin不再兼容。
现在你必须使用'annotationProcessor' instatof' apt'
到目前为止一切顺利。
我做了以下事情:
从build.gradle(Project:MyApplication)
中删除apt的类路径classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
从build.gradle(Module:app)
中删除插件apply plugin: 'android-apt'
将依赖项从apt更改为新的annotationProcessor
annotationProcessor 'com.github.instagram.ig-json-parser:processor:master-SNAPSHOT'
到目前为止,gradle sync工作,但* __ JsonHelper不再是genradeden了!
帮助?
答案 0 :(得分:1)