
as instructed at https://github.com/rburgst/okhttp-digest?tab=readme-ov-file#use-via-gradle
57 lines
1.7 KiB
Groovy
57 lines
1.7 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
|
|
namespace 'keepass2android.javafilestorage'
|
|
|
|
compileSdkVersion 33
|
|
|
|
defaultConfig {
|
|
minSdkVersion 15
|
|
targetSdkVersion 33
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
|
|
}
|
|
}
|
|
productFlavors {
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility 11
|
|
targetCompatibility 11
|
|
}
|
|
}
|
|
|
|
/*
|
|
NOTE: If you change dependencies here, don't forget to update the jar files in JavaFileStorageBindings as well!
|
|
*/
|
|
|
|
dependencies {
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.10.0-RC1'
|
|
implementation 'io.github.rburgst:okhttp-digest:2.5'
|
|
|
|
implementation 'com.google.http-client:google-http-client-gson:1.20.0'
|
|
implementation('com.google.api-client:google-api-client-android:1.30.5') {
|
|
exclude group: 'com.google.android.google-play-services'
|
|
}
|
|
implementation 'com.google.apis:google-api-services-drive:v2-rev102-1.16.0-rc'
|
|
implementation 'com.dropbox.core:dropbox-core-sdk:4.0.0'
|
|
implementation 'com.google.api-client:google-api-client:1.30.5'
|
|
implementation 'com.google.api-client:google-api-client-android:1.30.5'
|
|
|
|
implementation 'com.google.android.gms:play-services-auth:20.4.0'
|
|
//onedrive:
|
|
implementation('com.onedrive.sdk:onedrive-sdk-android:1.2.0') {
|
|
transitive = false
|
|
}
|
|
implementation 'com.pcloud.sdk:java-core:1.9.1'
|
|
implementation 'com.pcloud.sdk:android:1.9.1'
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
|
implementation 'com.microsoft.services.msa:msa-auth:0.8.6'
|
|
implementation 'com.microsoft.aad:adal:1.14.0'
|
|
|
|
}
|