apply plugin: 'com.android.library' apply from: '../mavenpush.gradle' android { compileSdkVersion 27 buildToolsVersion '27.0.2' defaultConfig { minSdkVersion 14 targetSdkVersion 27 versionCode 22 versionName "2.2.0-native" 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_' sourceSets.main { jni.srcDirs = []; } } dependencies { compile 'com.android.support:appcompat-v7:27.0.2' compile 'com.squareup.okhttp3:okhttp:3.8.1' }