使用 ig-json-parser 和来自 android studio 3.0 的 annotationProcessor
using ig-json-parser with annotationProcessor from android studio 3.0
在 gradle 的新版本中,'android-apt'-pligin 不再兼容。
现在您必须使用 'annotationProcessor' instatof 'apt'
到目前为止一切顺利。
我执行以下操作:
从 build.gradle(项目:MyApplication)中删除 apt 的 class 路径
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 到目前为止同步有效,但 *__JsonHelper 不再生成了!
帮忙?
在 gradle 的新版本中,'android-apt'-pligin 不再兼容。
现在您必须使用 'annotationProcessor' instatof 'apt'
到目前为止一切顺利。
我执行以下操作:
从 build.gradle(项目:MyApplication)中删除 apt 的 class 路径
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 到目前为止同步有效,但 *__JsonHelper 不再生成了!
帮忙?