Merge pull request #690 from mfietz/dslv-integrate
Support library downgrade after crashes
This commit is contained in:
commit
98bade37fc
|
@ -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'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue