Could not find aapt2-proto.jar

前端 未结 7 1424
攒了一身酷
攒了一身酷 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:25

    You have to add google() to repositories in build.gradle file and put it at first position:

    ...
    repositories {
        google()        
        jcenter()
    }
    ...
    

    In my case the problem was the repository order.

提交回复
热议问题