Add S3 as module dependency

This commit is contained in:
Julian Raufelder 2021-04-28 12:36:34 +02:00 committed by Manuel Jenny
parent f07e343849
commit 1a3b26696c
No known key found for this signature in database
GPG Key ID: 1C80FE62B2BEAA18
6 changed files with 14 additions and 6 deletions

3
.gitmodules vendored
View File

@ -7,3 +7,6 @@
[submodule "pcloud-sdk-java"]
path = pcloud-sdk-java
url = https://github.com/SailReal/pcloud-sdk-java
[submodule "aws-sdk-android"]
path = aws-sdk-android
url = https://github.com/SailReal/aws-sdk-android.git

1
.idea/vcs.xml generated
View File

@ -2,6 +2,7 @@
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
<mapping directory="$PROJECT_DIR$/aws-sdk-android" vcs="Git" />
<mapping directory="$PROJECT_DIR$/msa-auth-for-android" vcs="Git" />
<mapping directory="$PROJECT_DIR$/pcloud-sdk-java" vcs="Git" />
<mapping directory="$PROJECT_DIR$/subsampling-scale-image-view" vcs="Git" />

1
aws-sdk-android Submodule

@ -0,0 +1 @@
Subproject commit 5383caff6e352936a638491b941b02e17c6b593a

View File

@ -51,9 +51,6 @@ 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'
awsAndroidSdkS3 = '2.22.6'
awsS3Sdk = '1.11.999'
dropboxVersion = '4.0.0'
googleApiServicesVersion = 'v3-rev197-1.25.0'
@ -104,7 +101,6 @@ ext {
androidxViewpager : "androidx.viewpager:viewpager:${androidxViewpagerVersion}",
androidxSwiperefresh : "androidx.swiperefreshlayout:swiperefreshlayout:${androidxSwiperefreshVersion}",
androidxPreference : "androidx.preference:preference:${androidxPreferenceVersion}",
awsAndroidS3 : "com.amazonaws:aws-android-sdk-s3:${awsAndroidSdkS3}",
documentFile : "androidx.documentfile:documentfile:${androidxDocumentfileVersion}",
recyclerView : "androidx.recyclerview:recyclerview:${androidxRecyclerViewVersion}",
androidxTestCore : "androidx.test:core:${androidxTestCoreVersion}",

View File

@ -89,6 +89,7 @@ dependencies {
implementation project(':util')
implementation project(':msa-auth-for-android')
implementation project(':pcloud-sdk-java')
implementation project(':aws-android-sdk-s3')
// cryptomator
implementation dependencies.cryptolib
@ -99,7 +100,6 @@ dependencies {
annotationProcessor dependencies.daggerCompiler
implementation dependencies.dagger
// cloud
implementation dependencies.awsAndroidS3
implementation dependencies.dropbox
implementation dependencies.msgraph

View File

@ -1,5 +1,12 @@
include ':generator', ':presentation', ':generator-api', ':domain', ':data', ':util', ':subsampling-image-view', ':msa-auth-for-android', ':pcloud-sdk-java-root', ':pcloud-sdk-java', ':pcloud-sdk-android'
include ':generator', ':presentation', ':generator-api', ':domain', ':data', ':util', ':subsampling-image-view', ':msa-auth-for-android', ':pcloud-sdk-java-root', ':pcloud-sdk-java', ':pcloud-sdk-android', 'aws-sdk-android', ':aws-android-sdk-s3', ':aws-android-sdk-core', ':aws-android-sdk-kms'
project(':subsampling-image-view').projectDir = file(new File(rootDir, 'subsampling-scale-image-view/library'))
project(':pcloud-sdk-java-root').projectDir = file(new File(rootDir, 'pcloud-sdk-java'))
project(':pcloud-sdk-java').projectDir = file(new File(rootDir, 'pcloud-sdk-java/java-core'))
project(':pcloud-sdk-android').projectDir = file(new File(rootDir, 'pcloud-sdk-java/android'))
project(':aws-sdk-android').projectDir = file(new File(rootDir, 'aws-sdk-android'))
project(':aws-android-sdk-core').projectDir = file(new File(rootDir, 'aws-sdk-android/aws-android-sdk-core'))
project(':aws-android-sdk-kms').projectDir = file(new File(rootDir, 'aws-sdk-android/aws-android-sdk-kms'))
project(':aws-android-sdk-s3').projectDir = file(new File(rootDir, 'aws-sdk-android/aws-android-sdk-s3'))