I try to change minSdkVersion
in build.gradle
(Module: app) in Android Studio
and get next error:
Error:Timeout waitin
Delete .gradle folder from / and resync gradle from project.
The lock file is there because some other gradle process (usually the daemon) is using the cache. You could stop all gradle processes to release the lock
gradle --stop
https://docs.gradle.org/current/userguide/gradle_daemon.html#sec:stopping_an_existing_daemon
For me the only thing that worked was deleting these things inside android folder:
Posting this for myself 2 weeks from now