38 lines
1.2 KiB
Groovy
38 lines
1.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.android.sunshine.app"
|
|
minSdkVersion 10
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
buildTypes.each {
|
|
it.buildConfigField 'String', 'OPEN_WEATHER_MAP_API_KEY', 'API_KEY'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.github.bumptech.glide:glide:3.5.2'
|
|
compile 'com.android.support:support-annotations:23.1.1'
|
|
compile 'com.android.support:gridlayout-v7:23.1.1'
|
|
compile 'com.android.support:cardview-v7:23.1.1'
|
|
compile 'com.android.support:appcompat-v7:23.1.1'
|
|
compile 'com.android.support:design:23.1.1'
|
|
compile 'com.android.support:recyclerview-v7:23.1.1'
|
|
compile 'com.google.android.gms:play-services-gcm:7.8.0'
|
|
compile 'com.google.android.apps.muzei:muzei-api:2.0'
|
|
compile 'com.google.android.gms:play-services-wearable:7.8.0'
|
|
}
|