-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (43 loc) · 1.71 KB
/
build.gradle
File metadata and controls
49 lines (43 loc) · 1.71 KB
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
49
subprojects {
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath 'digital.wup:android-maven-publish:3.6.3'
}
}
repositories {
google()
jcenter()
}
group = GROUP
version = VERSION_NAME
}
ext {
minSdkVersion = 15
compileSdkVersion = 28
buildToolsVersion = '28.0.3'
truth = 'com.google.truth:truth:1.0'
androidxAnnotation = "androidx.annotation:annotation:1.0.0"
androidxAppCompat = "androidx.appcompat:appcompat:1.0.0"
androidxCardView = "androidx.cardview:cardview:1.0.0"
androidxCollection = "androidx.collection:collection:1.0.0"
androidxCore = "androidx.core:core:1.0.0"
androidxCursorAdapter = "androidx.cursoradapter:cursoradapter:1.0.0"
androidxFragment = "androidx.fragment:fragment:1.0.0"
androidxGridLayout = "androidx.gridlayout:gridlayout:1.0.0"
androidxLegacySupportCoreUi = "androidx.legacy:legacy-support-core-ui:1.0.0"
androidxLoader = "androidx.loader:loader:1.0.0"
androidxMediaRouter = "androidx.mediarouter:mediarouter:1.0.0"
androidxPalette = "androidx.palette:palette:1.0.0"
androidxPrint = "androidx.print:print:1.0.0"
androidxRecyclerView = "androidx.recyclerview:recyclerview:1.0.0"
androidxSlidingPaneLayout = "androidx.slidingpanelayout:slidingpanelayout:1.0.0"
androidxSwipeRefreshLayout = "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
androidxViewPager = "androidx.viewpager:viewpager:1.0.0"
materialComponents = "com.google.android.material:material:1.0.0"
playServices = 'com.google.android.gms:play-services:7.5.0'
}