apply plugin: 'com.android.library' android { compileSdkVersion 23 buildToolsVersion '26.0.2' defaultConfig { minSdkVersion 17 } buildTypes { debug { debuggable true minifyEnabled false // applicationVariants.all { variant -> // renameAPK(variant, defaultConfig, 'debug') // } } release { debuggable false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' zipAlignEnabled true // applicationVariants.all { variant -> // renameAPK(variant, defaultConfig, 'release') // } } } } dependencies { compile 'com.android.support:support-v4:23.4.0' compile files('libs/JSR268Library.jar') }