apply plugin: 'com.android.library' android { compileSdkVersion rootProject.ext.compileSdkVersion defaultConfig { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 1 versionName "1.0" vectorDrawables.useSupportLibrary = true } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_7 targetCompatibility JavaVersion.VERSION_1_7 } lintOptions { abortOnError false } resourcePrefix 'ucrop_' } dependencies { //noinspection GradleCompatible implementation "com.android.support:appcompat-v7:$rootProject.supportVersion" //noinspection GradleCompatible implementation "com.android.support:recyclerview-v7:$rootProject.supportVersion" api "com.github.bumptech.glide:glide:4.5.0" }