diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-08-03 13:32:48 +0530 |
---|---|---|
committer | Harsh Shandilya <msfjarvis@gmail.com> | 2019-08-03 13:32:48 +0530 |
commit | 682e8a57158773616240943321b3a3cbda71521d (patch) | |
tree | ada1826b4bd015845ee282427cb7f4ba5de665f0 /app | |
parent | cc4b3ebd64280a9bb7c37c138dbfc164417015b2 (diff) |
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>
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle.kts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 6c481c3b..b6c3b7f1 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -72,6 +72,7 @@ dependencies { implementation("androidx.appcompat:appcompat:1.1.0-rc01") implementation("androidx.cardview:cardview:1.0.0") 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.recyclerview:recyclerview:1.1.0-beta01") implementation("com.google.android.material:material:1.1.0-alpha09") |