apply plugin: 'com.android.application' apply plugin: 'android-apt' android { compileSdkVersion 23 buildToolsVersion '25.0.0' defaultConfig { applicationId "project.prasanna.footballmanager" minSdkVersion 15 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:design:23.1.1' compile 'com.android.support:support-v4:23.1.1-beta1' compile 'com.github.bumptech.glide:glide:3.7.0' compile('com.mikepenz:materialdrawer:5.7.0@aar') { transitive = true } compile 'com.github.gabrielemariotti.cards:library:1.9.1' compile 'com.squareup.picasso:picasso:2.5.2' compile 'com.miguelcatalan:materialsearchview:1.4.0' compile 'com.squareup.okhttp3:okhttp:3.4.2' }