2019-10-15 10:30:08 -07:00
|
|
|
/*
|
2022-10-04 13:59:32 -07:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2018-10-24 03:09:58 -07:00
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
|
|
|
|
2023-05-31 14:48:05 -07:00
|
|
|
plugins {
|
|
|
|
id("com.android.library") version "8.0.1" apply false
|
|
|
|
id("com.android.application") version "8.0.1" apply false
|
2017-02-23 04:57:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2019-02-12 05:32:33 -08:00
|
|
|
google()
|
2021-05-21 11:40:17 -07:00
|
|
|
mavenCentral()
|
2017-02-23 04:57:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-19 10:48:59 -07:00
|
|
|
ext {
|
2023-01-16 04:16:07 -08:00
|
|
|
buildToolsVersion = "33.0.0"
|
2023-05-15 14:03:00 -07:00
|
|
|
ndkVersion = "23.1.7779620"
|
2023-01-16 04:16:07 -08:00
|
|
|
minSdkVersion = 21
|
|
|
|
compileSdkVersion = 33
|
|
|
|
targetSdkVersion = 33
|
2023-05-05 04:07:40 -07:00
|
|
|
sourceCompatibilityVersion = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibilityVersion = JavaVersion.VERSION_1_8
|
2017-04-19 10:48:59 -07:00
|
|
|
}
|
|
|
|
|
2017-02-23 04:57:16 -08:00
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|