Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'reactive-livedata/build.gradle')
-rw-r--r--reactive-livedata/build.gradle29
1 files changed, 0 insertions, 29 deletions
diff --git a/reactive-livedata/build.gradle b/reactive-livedata/build.gradle
deleted file mode 100644
index c18feca69..000000000
--- a/reactive-livedata/build.gradle
+++ /dev/null
@@ -1,29 +0,0 @@
-apply plugin: 'com.android.library'
-
-android {
- compileSdk 34
- namespace 'it.niedermann.android.reactivelivedata'
-
- defaultConfig {
- minSdk 22
- targetSdk 34
- }
-
- compileOptions {
- coreLibraryDesugaringEnabled true
- sourceCompatibility JavaVersion.VERSION_17
- targetCompatibility JavaVersion.VERSION_17
- }
-}
-
-dependencies {
- coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
-
- implementation "androidx.lifecycle:lifecycle-livedata:2.7.0"
- implementation 'androidx.core:core:1.12.0'
-
- testImplementation 'junit:junit:4.13.2'
- testImplementation 'org.robolectric:robolectric:4.11.1'
- testImplementation 'androidx.test:core:1.5.0'
- testImplementation 'androidx.arch.core:core-testing:2.2.0'
-}