1apply plugin: 'com.android.library'
2
3android {
4    compileSdkVersion 28
5
6    defaultConfig {
7        minSdkVersion 16
8        targetSdkVersion 28
9        versionCode 1
10        versionName "1.0"
11
12        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
13
14    }
15    buildTypes {
16        release {
17            minifyEnabled false
18            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
19        }
20    }
21}
22
23dependencies {
24    compile 'com.android.support:appcompat-v7:25.3.1'
25    compile 'com.android.support:recyclerview-v7:25.3.1'
26    compile 'com.github.bumptech.glide:glide:3.7.0'
27    testCompile 'junit:junit:4.12'
28}
29