Answers for "could not find method implementation() for arguments"

0

> Could not find method kapt() for arguments

in the build.gradle app-level add:
apply plugin: 'kotlin-kapt'
OR:
plugins {
    id 'kotlin-kapt'
}
Posted by: Guest on December-10-2020
0

could not find method implementation() for arguments

Make sure you're adding these dependencies in android/app/build.gradle, not android/build.gradle
Posted by: Guest on January-03-2021

Code answers related to "could not find method implementation() for arguments"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language