-
Notifications
You must be signed in to change notification settings - Fork 0
/
local_history.patch
34 lines (30 loc) · 1.17 KB
/
local_history.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Index: app/build.gradle
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/app/build.gradle b/app/build.gradle
--- a/app/build.gradle
+++ b/app/build.gradle (date 1668953786345)
@@ -104,6 +104,24 @@
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.20.0"
+ def paging_version = "3.1.1" //current version at the time
+ implementation "androidx.paging:paging-runtime:$paging_version"
+ // alternatively - without Android dependencies for tests
+ testImplementation "androidx.paging:paging-common:$paging_version"
+
+ // optional - RxJava2 support
+ implementation "androidx.paging:paging-rxjava2:$paging_version"
+
+ // optional - RxJava3 support
+ implementation "androidx.paging:paging-rxjava3:$paging_version"
+
+ // optional - Guava ListenableFuture support
+ implementation "androidx.paging:paging-guava:$paging_version"
+
+ // Jetpack Compose Integration
+ implementation "androidx.paging:paging-compose:1.0.0-alpha17"
+
+
}
\ No newline at end of file