OSDN Git Service

Remove unused public modifier for @VisibleForTesting methods
[android-x86/packages-apps-Taskbar.git] / build.gradle
1 buildscript {
2     repositories {
3         google()
4         jcenter()
5         maven { url 'https://jitpack.io' }
6     }
7
8     dependencies {
9         classpath 'com.android.tools.build:gradle:4.0.0'
10      // classpath 'com.novoda:bintray-release:0.9.2'
11         classpath 'com.github.marandaneto.bintray-release:bintray-release:1.0.3'
12     }
13 }
14
15 plugins {
16     id 'se.patrikerdes.use-latest-versions' version '0.2.14'
17     id 'com.github.ben-manes.versions' version '0.28.0'
18 }
19
20 ext {
21     // TODO keep version name and version code in sync with Android-x86 manifest
22     VERSION_CODE = 201
23     VERSION_NAME = "6.0"
24
25     MIN_SDK_VERSION = 21
26     BUILD_TOOLS_VERSION = "29.0.3"
27
28     // Keep at 29 for now, since bumping to 30 will break freeform mode on Android 11
29     SDK_VERSION = 29
30
31     SUPPORT_V4_VERSION = "1.0.0"
32     APPCOMPAT_VERSION = "1.1.0"
33     MATERIAL_VERSION = "1.1.0"
34     POWERMOCK_VERSION = "2.0.7"
35 }
36
37 dependencyUpdates {
38     revision = 'release'
39 }
40
41 allprojects {
42     repositories {
43         jcenter()
44         google()
45     }
46 }
47
48 task clean(type: Delete) {
49     delete rootProject.buildDir
50 }