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.
|
|
|
|
*/
|
|
|
|
|
2017-02-23 04:57:16 -08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2019-02-12 05:32:33 -08:00
|
|
|
google()
|
2021-05-21 11:14:07 -07:00
|
|
|
mavenCentral()
|
2017-02-23 04:57:16 -08:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-05-21 11:14:07 -07:00
|
|
|
classpath 'com.android.tools.build:gradle:4.2.1'
|
2021-05-21 11:40:17 -07:00
|
|
|
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.15.1'
|
2017-02-23 04:57:16 -08:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2017-06-16 06:33:32 -07:00
|
|
|
minSdkVersion = 14
|
2021-05-21 11:14:07 -07:00
|
|
|
targetSdkVersion = 29
|
|
|
|
compileSdkVersion = 29
|
|
|
|
buildToolsVersion = '30.0.2'
|
|
|
|
ndkVersion = '21.3.6528147'
|
2017-04-19 10:48:59 -07:00
|
|
|
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibilityVersion = JavaVersion.VERSION_1_7
|
|
|
|
}
|
|
|
|
|
2017-02-23 04:57:16 -08:00
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|