1

在新版本的 gradle 中,'android-apt'-pligin 不再兼容。

现在你必须使用'annotationProcessor' instatof 'apt'

到目前为止,一切都很好。

我执行以下操作:

从 build.gradle 中删除 apt 的类路径(项目:MyApplication)

classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'

从 build.gradle 中移除插件(模块:app)

apply plugin: 'android-apt'

将依赖项从 apt 更改为新的 annotationProcessor

annotationProcessor 'com.github.instagram.ig-json-parser:processor:master-SNAPSHOT'

gradle sync 到目前为止工作,但 *__JsonHelper 不再是beeing genradet!

帮助?

4

1 回答 1

1

该问题已在此处修复并关闭: https ://github.com/Instagram/ig-json-parser/issues/47#issuecomment-342523796

于 2017-11-10T09:42:23.900 回答