45 lines
1.3 KiB
Groovy
45 lines
1.3 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
buildToolsVersion '26.0.2'
|
|
defaultConfig {
|
|
minSdkVersion 15
|
|
targetSdkVersion 23
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
|
|
}
|
|
}
|
|
productFlavors {
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility 1.8
|
|
targetCompatibility 1.8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.squareup.okhttp3:okhttp:3.9.0'
|
|
compile 'com.burgstaller:okhttp-digest:1.7'
|
|
compile 'com.google.android.gms:play-services:4.0.30'
|
|
compile 'com.google.http-client:google-http-client-gson:1.20.0'
|
|
compile('com.google.api-client:google-api-client-android:1.16.0-rc') {
|
|
exclude group: 'com.google.android.google-play-services'
|
|
}
|
|
compile 'com.google.apis:google-api-services-drive:v2-rev102-1.16.0-rc'
|
|
compile 'com.dropbox.core:dropbox-core-sdk:3.0.3'
|
|
//onedrive:
|
|
compile('com.onedrive.sdk:onedrive-sdk-android:1.2.0') {
|
|
transitive = false
|
|
}
|
|
compile 'com.pcloud.sdk:java-core:1.0.1'
|
|
compile 'com.pcloud.sdk:android:1.0.1'
|
|
compile 'com.google.code.gson:gson:2.3.1'
|
|
compile 'com.microsoft.services.msa:msa-auth:0.8.6'
|
|
compile 'com.microsoft.aad:adal:1.14.0'
|
|
|
|
}
|