MvpApp icon indicating copy to clipboard operation
MvpApp copied to clipboard

build error

Open YiZhiWN opened this issue 5 years ago • 2 comments

Could not find any version that matches com.android.support:appcompat-v7:19.+.

YiZhiWN avatar Oct 16 '19 08:10 YiZhiWN

这个可以通过修改maven地址来解决,在build.gradle中修改: maven { url "https://maven.google.com" }

RudBob avatar Aug 21 '20 02:08 RudBob

我尝试了一套组合仓库,最终build成功: allprojects { repositories { jcenter() maven { url 'http://maven.aliyun.com/nexus/content/groups/public' } maven { url "https://maven.google.com"} maven { url 'https://jitpack.io' } } }

RudBob avatar Aug 21 '20 02:08 RudBob