apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion "23.0.2" defaultConfig { applicationId "com.socks.sample" minSdkVersion 8 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { debug { buildConfigField "boolean", "LOG_DEBUG", "true" minifyEnabled false } release { buildConfigField "boolean", "LOG_DEBUG", "false" minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile 'com.android.support:appcompat-v7:23.1.0' compile 'com.loopj.android:android-async-http:1.4.9' compile 'cz.msebera.android:httpclient:4.3.6' // compile 'com.github.zhaokaiqiang.klog:library:0.2.0' compile project(':library') }