xref: /aosp_15_r20/external/oboe/apps/fxlab/build.gradle (revision 05767d913155b055644481607e6fa1e35e2fe72c)
1*05767d91SRobert Wu/*
2*05767d91SRobert Wu * Copyright  2019 Google LLC
3*05767d91SRobert Wu *
4*05767d91SRobert Wu * Licensed under the Apache License, Version 2.0 (the "License");
5*05767d91SRobert Wu * you may not use this file except in compliance with the License.
6*05767d91SRobert Wu * You may obtain a copy of the License at
7*05767d91SRobert Wu *
8*05767d91SRobert Wu *     https://www.apache.org/licenses/LICENSE-2.0
9*05767d91SRobert Wu *
10*05767d91SRobert Wu * Unless required by applicable law or agreed to in writing, software
11*05767d91SRobert Wu * distributed under the License is distributed on an "AS IS" BASIS,
12*05767d91SRobert Wu * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*05767d91SRobert Wu * See the License for the specific language governing permissions and
14*05767d91SRobert Wu * limitations under the License.
15*05767d91SRobert Wu */
16*05767d91SRobert Wu
17*05767d91SRobert Wu// Top-level build file where you can add configuration options common to all sub-projects/modules.
18*05767d91SRobert Wu
19*05767d91SRobert Wubuildscript {
20*05767d91SRobert Wu    ext.kotlin_version = '1.7.0'
21*05767d91SRobert Wu    repositories {
22*05767d91SRobert Wu        google()
23*05767d91SRobert Wu        jcenter()
24*05767d91SRobert Wu
25*05767d91SRobert Wu    }
26*05767d91SRobert Wu    dependencies {
27*05767d91SRobert Wu        classpath 'com.android.tools.build:gradle:7.2.1'
28*05767d91SRobert Wu        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
29*05767d91SRobert Wu        // NOTE: Do not place your application dependencies here; they belong
30*05767d91SRobert Wu        // in the individual module build.gradle files
31*05767d91SRobert Wu    }
32*05767d91SRobert Wu}
33*05767d91SRobert Wu
34*05767d91SRobert Wuallprojects {
35*05767d91SRobert Wu    repositories {
36*05767d91SRobert Wu        google()
37*05767d91SRobert Wu        jcenter()
38*05767d91SRobert Wu
39*05767d91SRobert Wu    }
40*05767d91SRobert Wu}
41*05767d91SRobert Wu
42*05767d91SRobert Wutask clean(type: Delete) {
43*05767d91SRobert Wu    delete rootProject.buildDir
44*05767d91SRobert Wu}
45