error: supertypes of the following classes cannot be resolved. Please make sure you have the required dependencies in the classpath

后端 未结 15 1191
误落风尘
误落风尘 2020-12-05 22:31

I can\'t compile my Android Kotlin project.

I have no idea what is this...

Gradle log:

error: supertypes of the following classes ca

15条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-05 23:09

    On my case I had to add the required dependency on my main module and compile the last version with:

    android {
        configurations.all {
            resolutionStrategy.force "com.squareup.picasso:picasso:${picassoVersion}"
        }
    }
    

提交回复
热议问题