xref: /aosp_15_r20/external/webrtc/examples/aarproject/build.gradle (revision d9f758449e529ab9291ac668be2861e7a55c2422)
1*d9f75844SAndroid Build Coastguard Worker// Top-level build file where you can add configuration options common to all sub-projects/modules.
2*d9f75844SAndroid Build Coastguard Worker
3*d9f75844SAndroid Build Coastguard Workerbuildscript {
4*d9f75844SAndroid Build Coastguard Worker
5*d9f75844SAndroid Build Coastguard Worker    repositories {
6*d9f75844SAndroid Build Coastguard Worker        google()
7*d9f75844SAndroid Build Coastguard Worker        mavenCentral()
8*d9f75844SAndroid Build Coastguard Worker    }
9*d9f75844SAndroid Build Coastguard Worker    dependencies {
10*d9f75844SAndroid Build Coastguard Worker        classpath "com.android.tools.build:gradle:7.0.3"
11*d9f75844SAndroid Build Coastguard Worker
12*d9f75844SAndroid Build Coastguard Worker
13*d9f75844SAndroid Build Coastguard Worker        // NOTE: Do not place your application dependencies here; they belong
14*d9f75844SAndroid Build Coastguard Worker        // in the individual module build.gradle files
15*d9f75844SAndroid Build Coastguard Worker    }
16*d9f75844SAndroid Build Coastguard Worker}
17*d9f75844SAndroid Build Coastguard Worker
18*d9f75844SAndroid Build Coastguard Workerallprojects {
19*d9f75844SAndroid Build Coastguard Worker    repositories {
20*d9f75844SAndroid Build Coastguard Worker        google()
21*d9f75844SAndroid Build Coastguard Worker        mavenCentral()
22*d9f75844SAndroid Build Coastguard Worker    }
23*d9f75844SAndroid Build Coastguard Worker}
24*d9f75844SAndroid Build Coastguard Worker
25*d9f75844SAndroid Build Coastguard Workertask clean(type: Delete) {
26*d9f75844SAndroid Build Coastguard Worker    delete rootProject.buildDir
27*d9f75844SAndroid Build Coastguard Worker}
28