fixed gradle versions

This commit is contained in:
danijoo
2015-12-03 11:58:48 +01:00
parent d597999c2c
commit 91b747d7cd

View File

@@ -1,7 +1,7 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 21 compileSdkVersion 23
buildToolsVersion "23.0.2" buildToolsVersion "23.0.2"
defaultConfig { defaultConfig {
@@ -18,7 +18,7 @@ android {
} }
} }
buildTypes.each { buildTypes.each {
it.buildConfigField 'String', 'OPEN_WEATHER_MAP_API_KEY', "myapikey" it.buildConfigField 'String', 'OPEN_WEATHER_MAP_API_KEY', '""'
} }
} }
@@ -31,6 +31,6 @@ dependencies {
compile 'com.android.support:appcompat-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:design:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1' compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.google.android.gms:play-services-gcm:8.3.0' 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.apps.muzei:muzei-api:2.0'
} }