forked from tinkoff-mobile-tech/ScrollingPagerIndicator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (33 loc) · 785 Bytes
/
build.gradle
File metadata and controls
40 lines (33 loc) · 785 Bytes
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
def useMavenLocal = project.hasProperty("useMavenLocal")
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
}
}
allprojects {
repositories {
if (useMavenLocal) mavenLocal()
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdk = 14
compileSdk = 33
targetSdk = 33
isRelease = project.hasProperty('release')
versionName = isRelease ? VERSION_NAME : "$VERSION_NAME-SNAPSHOT"
appCompatVersion = "1.6.1"
constraintLayoutVersion = "2.1.4"
viewPagerVersion = "1.0.0"
viewPager2Version = "1.0.0"
cardViewVersion = "1.0.0"
recyclerViewVersion = "1.3.0"
}