// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() mavenCentral() // huawei maven maven { url 'https://developer.huawei.com/repo/' } } dependencies { classpath "com.android.tools.build:gradle:4.1.0" classpath 'com.huawei.agconnect:agcp:1.4.1.300' } } allprojects { repositories { google() mavenCentral() jcenter() // Warning: this repository is going to shut down soon // huawei maven maven { url 'https://developer.huawei.com/repo/' } } } task clean(type: Delete) { delete rootProject.buildDir }