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