Fix failing unit tests

Robolectric supports a maxSdkVersion of 28, so I can't quite upgrade yet
This commit is contained in:
William Brawner 2019-08-04 21:12:11 -07:00 committed by William Brawner
parent feae3be2ec
commit 70e93fc0ce

View file

@ -29,7 +29,7 @@ android {
exclude 'META-INF/LICENSE' exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES' exclude 'META-INF/DEPENDENCIES'
} }
compileSdkVersion 29 compileSdkVersion 28
buildToolsVersion '28.0.3' buildToolsVersion '28.0.3'
compileOptions { compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8 sourceCompatibility JavaVersion.VERSION_1_8
@ -38,7 +38,7 @@ android {
defaultConfig { defaultConfig {
applicationId "com.wbrawner.simplemarkdown" applicationId "com.wbrawner.simplemarkdown"
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 29 targetSdkVersion 28
multiDexEnabled true multiDexEnabled true
versionCode 20 versionCode 20
versionName "0.7.0" versionName "0.7.0"