react native Could not resolve org.ow2.asm:asm:6.0

初始化了一個最新配置的react-native項目,遇到報錯信息:

 react native Could not resolve org.ow2.asm:asm:6.0

谷歌了一下,找到解決方式,原文地址: https://github.com/flutter/flutter/issues/19719

Adding mavenCentral() in build.gradle solved for me

buildscript {
    repositories {
        mavenCentral()
        jcenter()
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章