简体   繁体   中英

Android Studio Error : Could not find Android Buld Tools

So, My Friend who is in University wanted me to check out his Application, He sent me the Project File and When I tried to Run it I was greeted with an Error Message that Detailed.

Could not Find com.android.tools.build:aapt2:3.3.2-5309881.

Any Help would be Highly Appreciated (:

Required by: project: app

在此处输入图片说明

AAPT2 moved to Google's Maven repository, to use AAPT2, make sure that you have a google() dependency in your build.gradle file, as shown here:

  buildscript {
      repositories {
          google() // here
          jcenter()
      }
      dependencies {
          classpath 'com.android.tools.build:gradle:3.3.2'
      }
  } 

  allprojects {
      repositories {
          google() // and here
          jcenter()
  }

See: https://developer.android.com/studio/releases/#aapt2_gmaven

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM