forked from REBOOTERS/AndroidAnimationExercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (27 loc) · 968 Bytes
/
build.gradle
File metadata and controls
31 lines (27 loc) · 968 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
apply plugin: 'com.android.library'
def ext = rootProject.ext
android {
compileSdkVersion ext.compileSdkVersion
buildToolsVersion ext.buildToolsVersion
defaultConfig {
minSdkVersion ext.minSdkVersion
targetSdkVersion ext.targetSdkVersion
versionCode 10
versionName "1.1.2"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'io.supercharge:shimmerlayout:2.1.0'
implementation "androidx.recyclerview:recyclerview:$ext.support_version"
implementation "androidx.appcompat:appcompat:$ext.androidx_appcompat"
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}