Android studio报错Unable to resolve dependency for ':loginlibrary@debug/compileClasspath': Could no...

新建项目报错Unable to resolve dependency for ':loginlibrary@debug/compileClasspath': Could not find any version that matches com.android.support:appcompat-v7:29.+.

这里需要将build.gradle中的 implementation 'com.android.support:appcompat-v7:29.+'改为
implementation 'com.android.support:appcompat-v7:+'即可。

你可能感兴趣的:(Android studio报错Unable to resolve dependency for ':loginlibrary@debug/compileClasspath': Could no...)