aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.gradle12
1 files changed, 6 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle
index 62e6e73..0082881 100644
--- a/build.gradle
+++ b/build.gradle
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-import static androidx.build.SupportConfig.*
+import androidx.build.SupportConfig
buildscript {
dependencies {
@@ -28,12 +28,12 @@ plugins {
}
android {
- buildToolsVersion BUILD_TOOLS_VERSION
- compileSdkVersion COMPILE_SDK_VERSION
+ buildToolsVersion SupportConfig.buildToolsVersion(project)
+ compileSdkVersion SupportConfig.COMPILE_SDK_VERSION
defaultConfig {
- minSdkVersion DEFAULT_MIN_SDK_VERSION
- targetSdkVersion TARGET_SDK_VERSION
- testInstrumentationRunner INSTRUMENTATION_RUNNER
+ minSdkVersion SupportConfig.DEFAULT_MIN_SDK_VERSION
+ targetSdkVersion SupportConfig.TARGET_SDK_VERSION
+ testInstrumentationRunner SupportConfig.INSTRUMENTATION_RUNNER
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8