Issue with making app on Android Studio
Briefly

The encountered issue during the build process indicates a conflict with the Gradle task configuration where the `@TaskAction` annotation is improperly applied to methods that utilize the outdated `IncrementalTaskInputs` interface. This incompatibility may stem from an outdated Gradle version, which no longer supports this approach. To remedy the error, updating to a newer Gradle version and ensuring all relevant build tools are current is recommended, to align with Gradle's task execution model effectively.
The error occurs due to the use of the outdated `IncrementalTask` interface, which is incompatible with the `@TaskAction` annotation. This can cause build failures.
To resolve this issue, ensure that your Gradle version and build tools are updated to versions that support the new task action model.
Read at SitePoint Forums | Web Development & Design Community
[
|
]