OSDN Git Service

Integrate the Persistent Shortcuts app into Taskbar (2 of 2)
[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.3'
9         classpath 'com.novoda:bintray-release:0.9.2'
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 = 198
21     VERSION_NAME = "5.0.1"
22
23     MIN_SDK_VERSION = 21
24     BUILD_TOOLS_VERSION = "28.0.3"
25
26     // Keep at 29 for now, since bumping to 30 will break freeform mode on Android 11
27     SDK_VERSION = 29
28
29     SUPPORT_V4_VERSION = "1.0.0"
30     APPCOMPAT_VERSION = "1.1.0"
31     MATERIAL_VERSION = "1.0.0"
32 }
33
34 dependencyUpdates {
35     revision = 'release'
36 }
37
38 allprojects {
39     repositories {
40         jcenter()
41         google()
42     }
43 }
44
45 task clean(type: Delete) {
46     delete rootProject.buildDir
47 }