Could not find aapt2-proto.jar

前端 未结 7 1426
攒了一身酷
攒了一身酷 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条回答
  •  -上瘾入骨i
    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()
    }
    

提交回复
热议问题