android-apt

New Jack toolchain crashes when using android-apt plugin

喜夏-厌秋 提交于 2019-11-29 02:36:42
问题 I'm trying to build a simple project with the new Jack toolchain. My project relies on android-apt plugin (it uses some annotation processing tool, but build error occures, even before I tried to add this tool). Here is my module build script (I'm using Android Studio 1.3 and gradle plugin 1.3.0 ): apply plugin: 'com.android.application' buildscript { repositories { jcenter() } dependencies { classpath 'com.neenbedankt.gradle.plugins:android-apt:1.6' } } apply plugin: 'android-apt' android {

Incompatible plugins for android-apt after upgrading to Android Studio 2.3

与世无争的帅哥 提交于 2019-11-26 17:27:17
After upgrading from 2.2 to 2.3 I see this warning and when I try to compile the project I see this compilation error How can i solve this issue without downgrading to a previous gradle version? Is there any update of android-apt that can solve this issue? Gabriele Mariotti The android-apt plugin has been deprecated . Check here for the migration guide : As of the Android Gradle plugin version 2.2, all functionality that was previously provided by android-apt is now available in the Android plugin. You can remove android-apt by following the migration guide to get the equivalent

Incompatible plugins for android-apt after upgrading to Android Studio 2.3

亡梦爱人 提交于 2019-11-26 05:26:05
问题 After upgrading from 2.2 to 2.3 I see this warning and when I try to compile the project I see this compilation error How can i solve this issue without downgrading to a previous gradle version? Is there any update of android-apt that can solve this issue? 回答1: The android-apt plugin has been deprecated . Check here for the migration guide: As of the Android Gradle plugin version 2.2, all functionality that was previously provided by android-apt is now available in the Android plugin. You can