forked from lisawray/groupie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (33 loc) · 1 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
apply plugin: 'com.android.application'
android {
compileSdkVersion rootProject.sdkVersion
defaultConfig {
applicationId "com.xwray.groupie.example.databinding"
minSdkVersion rootProject.minimumSdkVersion
targetSdkVersion rootProject.sdkVersion
versionCode 1
versionName "1.0"
vectorDrawables.useSupportLibrary true
}
buildTypes {
release {
minifyEnabled false
}
}
buildFeatures {
dataBinding true
viewBinding false
}
lintOptions {
abortOnError false
}
}
dependencies {
implementation project(':library-databinding')
implementation project(':example-shared')
implementation "androidx.appcompat:appcompat:1.4.1"
implementation "com.google.android.material:material:1.4.0"
implementation "androidx.cardview:cardview:1.0.0"
implementation "androidx.vectordrawable:vectordrawable:1.1.0"
implementation "androidx.vectordrawable:vectordrawable-animated:1.1.0"
}