Android dependency 'com.android.support:support-compat' has different version for the compile (25.3.

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/oqzuser1q2w3e4r5t/article/details/86678054

Android dependency 'com.android.support:support-compat' has different version for the compile (25.3.0) and runtime (28.0.0) classpath. You should manually set the same version via DependencyResolution

解决方法:

在build.gradle中添加如下

implementation("com.android.support:support-compat:28.0.0")

猜你喜欢

转载自blog.csdn.net/oqzuser1q2w3e4r5t/article/details/86678054