Add explicit documentfile dependency

We were previously depending on it transitively coming into
the dependency graph but AndroidX artifacts are increasingly
getting rid of transitive deps so let's start being explicit about
our dependencies.

Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
Harsh Shandilya 2019-08-03 13:32:48 +05:30
parent cc4b3ebd64
commit 682e8a5715
No known key found for this signature in database
GPG key ID: C2E74282C2133D62

View file

@ -72,6 +72,7 @@ dependencies {
implementation("androidx.appcompat:appcompat:1.1.0-rc01") implementation("androidx.appcompat:appcompat:1.1.0-rc01")
implementation("androidx.cardview:cardview:1.0.0") implementation("androidx.cardview:cardview:1.0.0")
implementation("androidx.constraintlayout:constraintlayout:2.0.0-beta2") implementation("androidx.constraintlayout:constraintlayout:2.0.0-beta2")
implementation("androidx.documentfile:documentfile:1.0.1")
implementation("androidx.preference:preference:1.1.0-rc01") implementation("androidx.preference:preference:1.1.0-rc01")
implementation("androidx.recyclerview:recyclerview:1.1.0-beta01") implementation("androidx.recyclerview:recyclerview:1.1.0-beta01")
implementation("com.google.android.material:material:1.1.0-alpha09") implementation("com.google.android.material:material:1.1.0-alpha09")