Support library downgrade after crashes

This commit is contained in:
Martin Fietz 2015-03-25 12:57:49 +01:00
parent e63e0a4f1c
commit 131bbb7356

View File

@ -1,12 +1,12 @@
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion 22 compileSdkVersion 21
buildToolsVersion "21.1.2" buildToolsVersion "21.1.2"
defaultConfig { defaultConfig {
minSdkVersion 10 minSdkVersion 10
targetSdkVersion 22 targetSdkVersion 21
versionCode 4 versionCode 4
versionName "0.6.1" versionName "0.6.1"
} }
@ -26,5 +26,5 @@ android {
dependencies { dependencies {
compile fileTree(dir: 'libs', include: ['*.jar']) compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:22.0.0' compile 'com.android.support:support-v4:21.0.3'
} }