From 7ca8fe14a3d63c0ab0f733a79ba1a3c87a47dd59 Mon Sep 17 00:00:00 2001 From: Stefan Niedermann Date: Sat, 20 Jun 2020 12:55:36 +0200 Subject: Move SSO Glide integration into own module --- glide-sso-integration/build.gradle | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 glide-sso-integration/build.gradle (limited to 'glide-sso-integration/build.gradle') diff --git a/glide-sso-integration/build.gradle b/glide-sso-integration/build.gradle new file mode 100644 index 000000000..1f8cddf59 --- /dev/null +++ b/glide-sso-integration/build.gradle @@ -0,0 +1,34 @@ +apply plugin: 'com.android.library' + +android { + compileSdkVersion 29 + buildToolsVersion "29.0.3" + + defaultConfig { + minSdkVersion 14 + targetSdkVersion 29 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + consumerProguardFiles "consumer-rules.pro" + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + // Nextcloud SSO + implementation "com.github.nextcloud:Android-SingleSignOn:0.5.1" + + // Glide + implementation 'com.github.bumptech.glide:glide:4.11.0' + annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0' + + implementation fileTree(dir: "libs", include: ["*.jar"]) +} \ No newline at end of file -- cgit v1.2.3