Could not find any matches for com.android.tools.build:gradle:2.3.+ as no versions of com.android.tools.build:gradle are available

后端 未结 6 1877
陌清茗
陌清茗 2020-12-17 21:03

hi i have a probleme with testing my react native app, this morning it works fine , but when i test it now i get this error:

Could not resolve all files for          


        
6条回答
  •  無奈伤痛
    2020-12-17 21:19

    Older versions of react-native-vector-icons appear to be referencing a version of the Android Gradle Plugin that recently stopped being available.

    Updating your version should fix the problem. You can do this per the react-native-vector-icons installation instructions with:

    npm install react-native-vector-icons --save
    

    or if you use yarn:

    yarn add react-native-vector-icons
    

提交回复
热议问题