OSDN Git Service

Convert all ListViews to RecyclerView
[android-x86/packages-apps-Taskbar.git] / build.gradle
1 buildscript {
2     repositories {
3         google()
4         jcenter()
5     }
6
7     dependencies {
8         classpath 'com.android.tools.build:gradle:3.5.2'
9         classpath 'com.novoda:bintray-release:0.9.1'
10     }
11 }
12
13 plugins {
14     id 'se.patrikerdes.use-latest-versions' version '0.2.13'
15     id 'com.github.ben-manes.versions' version '0.27.0'
16 }
17
18 ext {
19     // TODO keep version name and version code in sync with Android-x86 manifest
20     VERSION_CODE = 196
21     VERSION_NAME = "5.0"
22
23     SUPPORT_LIBRARY_VERSION = "28.0.0"
24     MIN_SDK_VERSION = 21
25     SDK_VERSION = 29
26     BUILD_TOOLS_VERSION = "28.0.3"
27 }
28
29 dependencyUpdates {
30     revision = 'release'
31 }
32
33 allprojects {
34     repositories {
35         jcenter()
36     }
37 }
38
39 task clean(type: Delete) {
40     delete rootProject.buildDir
41 }