apply plugin: 'com.android.library' android { compileSdkVersion ANDROID_COMPILE_SDK_VERSION as int defaultConfig { minSdkVersion ANDROID_MIN_SDK_VERSION as int targetSdkVersion ANDORID_TARGET_SDK_VERSION as int versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { //fast json compileOnly 'com.alibaba:fastjson:1.2.52' }