Merge pull request #690 from mfietz/dslv-integrate

Support library downgrade after crashes
This commit is contained in:
Tom Hennen 2015-03-25 19:00:39 -04:00
commit 98bade37fc
1 changed files with 3 additions and 3 deletions

View File

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