skip to Main Content

Android Studio – > Could not create task ':app:compileDebugKotlin'. > Could not create task ':app:dataBindingGenBaseClassesDebug'

When i build the app i got error > Could not create task ':app:compileDebugKotlin'. > Could not create task ':app:dataBindingGenBaseClassesDebug'. > Cannot use @TaskAction annotation on method DataBindingGenBaseClassesTask.writeBaseClasses() because interface org.gradle.api.tasks.incremental.IncrementalTaskInputs is not a valid parameter to an action method.

VIEW QUESTION

Android Studio – Getting org related error while migrating old android project

Getting : Caused by: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all files for configuration ':app:debugRuntimeClasspath'. build.gradle file as below buildscript { ext { agp_version = '7.2.1' gms_version = '4.3.13' kotlin_version = '1.7.0' crashlytics_version = '2.8.1' } repositories { google() } } plugins…

VIEW QUESTION

Android Studio – Encountering 'Gradle Duplicate class found' error after adding dependency

I'm looking to implement in-app updates and am following the guidance provided by Google https://developer.android.com/guide/playcore/in-app-updates/kotlin-java#kts As such i'm trying to add the following dependencies implementation("com.google.android.play:app-update:2.0.0") implementation("com.google.android.play:app-update-ktx:2.0.0") However when trying to build the project I am confronted with a Duplicate class…

VIEW QUESTION
Back To Top
Search