agrosner / DBFlow

A blazing fast, powerful, and very simple ORM android database library that writes database code for you.
MIT License
4.87k stars 598 forks source link

kapt issues #1653

Closed matteinn closed 3 years ago

matteinn commented 5 years ago

ISSUE_TEMPLATE

DBFlow Version: 4.2.4

Bug or Feature Request: Build error

Description: I'm getting the following error when syncing the project using the latest Kotlin version as of today: 1.3.21. Works fine on 1.3.11. Could not find method kapt() for arguments [com.github.raizlabs.dbflow:dbflow-processor:4.2.4] Is there any way to fix this?

build.gradle relevant content:

ext.dbflow_version = '4.2.4'
kapt "com.github.raizlabs.dbflow:dbflow-processor:${dbflow_version}"
implementation "com.github.raizlabs.dbflow:dbflow-core:${dbflow_version}"
implementation "com.github.raizlabs.dbflow:dbflow:${dbflow_version}"
implementation "com.github.raizlabs.dbflow:dbflow-kotlinextensions:${dbflow_version}"
David-W-Simons commented 4 years ago

@matteinn Great callout - This issue seems to still occur with Kotlin 1.3.50. downgrading to: ext.kotlin_version = '1.3.11' solved the issue.