apply plugin: 'com.android.application' android { compileSdkVersion 21 buildToolsVersion "21.1.2" defaultConfig { applicationId "com.example.android.sunshine.app" minSdkVersion 10 targetSdkVersion 21 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.github.bumptech.glide:glide:3.5.2' compile 'com.android.support:appcompat-v7:22.1.0' compile 'com.android.support:support-annotations:22.1.0' compile 'com.android.support:gridlayout-v7:22.1.0' compile 'com.android.support:cardview-v7:22.1.1' compile 'com.android.support:recyclerview-v7:22.1.1' compile 'com.google.android.gms:play-services-gcm:7.0.0' }