Updated Gradle config for Android Studio 1.0
[Sunshine.git] / app / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4 compileSdkVersion 20
5 buildToolsVersion "20.0.0"
6
7 defaultConfig {
8 applicationId "uk.me.njae.sunshine"
9 minSdkVersion 10
10 targetSdkVersion 20
11 versionCode 1
12 versionName "1.0"
13 }
14 buildTypes {
15 release {
16 minifyEnabled false
17 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18 }
19 }
20 }
21
22 dependencies {
23 compile fileTree(dir: 'libs', include: ['*.jar'])
24 compile 'com.android.support:appcompat-v7:19.+'
25 // You must install or update the Support Repository through the SDK manager to use this dependency.
26 compile 'com.android.support:support-v4:19.+'
27 }