feat(S3): add AWS S3 SDK dependency

This commit is contained in:
Manuel Jenny 2021-04-16 14:00:28 +02:00
parent e5382b6d52
commit 0224532c45
No known key found for this signature in database
GPG Key ID: 1C80FE62B2BEAA18
2 changed files with 4 additions and 0 deletions

View File

@ -51,6 +51,8 @@ ext {
// do not update to 1.4.0 until minsdk is 7.x (or desugaring works better) otherwise it will crash on 6.x
cryptolibVersion = '1.3.0'
awsS3Sdk = '1.11.999'
dropboxVersion = '4.0.0'
googleApiServicesVersion = 'v3-rev197-1.25.0'
@ -101,6 +103,7 @@ ext {
androidxViewpager : "androidx.viewpager:viewpager:${androidxViewpagerVersion}",
androidxSwiperefresh : "androidx.swiperefreshlayout:swiperefreshlayout:${androidxSwiperefreshVersion}",
androidxPreference : "androidx.preference:preference:${androidxPreferenceVersion}",
awsS3 : "com.amazonaws:aws-java-sdk-s3:${awsS3Sdk}",
documentFile : "androidx.documentfile:documentfile:${androidxDocumentfileVersion}",
recyclerView : "androidx.recyclerview:recyclerview:${androidxRecyclerViewVersion}",
androidxTestCore : "androidx.test:core:${androidxTestCoreVersion}",

View File

@ -99,6 +99,7 @@ dependencies {
annotationProcessor dependencies.daggerCompiler
implementation dependencies.dagger
// cloud
implementation dependencies.awsS3
implementation dependencies.dropbox
implementation dependencies.msgraph