Could not find aapt2-proto.jar

前端 未结 7 1423
攒了一身酷
攒了一身酷 2021-01-01 09:59

See this link (as I suspected) has the POM file and no jar.

Important Notes:

  • I am using latest version of react native ... v0.57.3 and also latest ver
相关标签:
7条回答
  • 2021-01-01 10:29

    This question's answer In build.gradle change position of google() and place it first: This is how it was before, if you don't have google() add it as the first one in the buildscript:

    buildscript {
           repositories {
                      jcenter()
                      google()
    }
    

    change to,

    buildscript {
           repositories {
                   google()
                   jcenter()
    }
    
    0 讨论(0)
提交回复
热议问题