forked from PublicNTP/time-server-app
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
48 lines (37 loc) · 1.22 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
ext {
// As of 15 Jan 2018 KikKat (API19) is still on %13 of active devices
// and Marshmallow (API23) is the most popular with %29, Nougat (API24)
// is fairly popular with %21 and Oreo (API26) has very low presence
// at <%1 of active devices.
//
// Refer to https://developer.android.com/about/dashboards/index.html
// This app will not be compatible with devices running an older version
// of Android than Nougat (API24) to allow us to build using the new time
// and location APIs introduced in that version.
minSdkVersion = 24
targetSdkVersion = 33
compileSdkVersion = 33
supportLibraryVersion = '27.0.2'
}
task clean(type: Delete) {
delete rootProject.buildDir
}