apply plugin: 'com.android.application' android { compileSdkVersion 19 buildToolsVersion "23.0.1" defaultConfig { applicationId "com.example.furt.myapplication" minSdkVersion 16 targetSdkVersion 19 compileOptions { sourceCompatibility JavaVersion.VERSION_1_7 targetCompatibility JavaVersion.VERSION_1_7 } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } } } dependencies { compile 'com.android.support:support-v4:19.1.0' }