> Could not find method kapt() for arguments code example
Example 1: Could not find method jackOptions() for arguments
remove it
jackOptions {
enabled true
}
Example 2: > Could not find method kapt() for arguments
in the build.gradle app-level add:
apply plugin: 'kotlin-kapt'
OR:
plugins {
id 'kotlin-kapt'
}