Skip to content

Commit

Permalink
add fix for androidX after bumping android plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
lbalmaceda committed Mar 5, 2020
1 parent 4e7b816 commit f9f70f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ org.gradle.jvmargs=-Xmx1536m
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

android.useAndroidX=true
5 changes: 4 additions & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ dependencies {

testImplementation 'junit:junit:4.13'
testImplementation 'org.hamcrest:java-hamcrest:2.0.0.0'
testImplementation 'org.robolectric:robolectric:4.3.1'
testImplementation('org.robolectric:robolectric:4.3.1') {
// https://github.com/robolectric/robolectric/issues/5245
exclude group: 'com.google.auto.service', module: 'auto-service'
}
testImplementation 'org.mockito:mockito-core:3.2.4'
}

Expand Down

0 comments on commit f9f70f6

Please sign in to comment.