-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDeps.kt
2046 lines (2010 loc) · 131 KB
/
Deps.kt
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@file:Suppress(
"unused",
"SpellCheckingInspection",
"GrazieInspection",
"ClassName",
"PackageDirectoryMismatch",
"MemberVisibilityCanBePrivate", "FunctionName",
)
package pl.mareklangiewicz.deps
import pl.mareklangiewicz.utils.*
// region [[Deps Data Structures]]
/**
* Stable -> 0
* ReleaseCandidate -> 100
* Milestone -> 120
* EarlyAccessProgram -> 140
* Beta -> 200
* Alpha -> 300
* Development -> 320
* Preview -> 400
* Snapshot -> 500
* Unknown -> 900
*
* Other positive numbers are allowed if really necessary.
*/
data class Instability(val instability: Int)
private val reStableStr = """\d{1,3}\.\d{1,8}\.\d{1,8}"""
private val instabilities = linkedMapOf<Regex, Int>(
// order of keys/regexes matters (potentially more stable only if not matched as less stable)
Regex("(?i:snapshot)") to 500,
Regex("(?i:preview)") to 400,
Regex("(?i:dev)") to 320,
Regex("(?i:alpha)") to 300,
Regex("(?i:beta)") to 200,
Regex("(?i:eap)") to 140,
Regex("$reStableStr.*?M\\d") to 120,
Regex("$reStableStr.*?(?i:rc)") to 100,
Regex(reStableStr) to 0,
)
fun detectInstability(verStr: String): Instability {
for (re in instabilities.keys)
if (re.find(verStr) != null)
return Instability(instabilities[re]!!)
return Instability(900) // Unknown (so assume very unstable)
}
infix fun Instability?.moreStableThan(other: Instability?): Boolean {
val left = this?.instability ?: Int.MAX_VALUE
val right = other?.instability ?: Int.MAX_VALUE
return left < right
}
data class Ver(val str: String, val instability: Instability = detectInstability(str)) {
constructor(ver: String, instability: Int) : this(ver, Instability(instability))
constructor(major: Int, minor: Int, patch: Int, patchLength: Int = 2, suffix: String = "") :
this("$major.$minor.${patch.toString().padStart(patchLength, '0')}$suffix")
val code get() = str.toVerIntCode()
}
class NoSuchVerException(val dep: Dep, override val message: String = "No such ver.") : NoSuchElementException()
/** versions should always be sorted from oldest to newest */
data class Dep(val group: String, val name: String, val vers: List<Ver>) : CharSequence {
constructor(group: String, name: String, vararg vers: Ver) : this(group, name, vers.toList())
val verLast: Ver get() = verLastOrNull ?: throw NoSuchVerException(this, "No vers at all.")
val verLastOrNull: Ver? get() = vers.lastOrNull()
val mvn: String get() = verLastOrNull?.str?.let { "$group:$name:$it" } ?: "$group:$name"
override fun toString() = mvn
override val length get() = mvn.length
override fun get(index: Int) = mvn[index]
override fun subSequence(startIndex: Int, endIndex: Int) = mvn.subSequence(startIndex, endIndex)
}
fun DepP(pluginId: String, vararg vers: Ver) = Dep(pluginId, "$pluginId.gradle.plugin", *vers)
fun Dep.withNoVer() = copy(vers = emptyList())
fun Dep.withVer(ver: Ver) = copy(vers = listOf(ver))
fun Dep.withVer(verStr: String, verInstability: Instability = detectInstability(verStr)) =
withVer(Ver(verStr, verInstability))
fun Dep.withVers(vararg vers: Ver) = copy(vers = vers.toList())
fun Dep.withVers(maxInstability: Instability) =
copy(vers = vers.filter { !(maxInstability moreStableThan it.instability) })
val Dep.verLastStable get() = vers.lastOrNull { it.instability.instability == 0 } ?: throw NoSuchVerException(this, "No stable vers.")
// endregion [[Deps Data Structures]]
// region [[Deps Selected]]
/**
* - [releases](https://github.com/JetBrains/kotlin/releases)
* - [release details](https://kotlinlang.org/docs/releases.html#release-details)
* - [changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
*/
typealias Kotlin = Org.JetBrains.Kotlin
/**
* - KotlinX some libs links
* - [date time](https://github.com/Kotlin/kotlinx-datetime)
* - [coroutines](https://github.com/Kotlin/kotlinx.coroutines/releases)
* - [serialization](https://github.com/Kotlin/kotlinx.serialization/releases)
* - [atomic fu](https://github.com/Kotlin/kotlinx.atomicfu/releases)
* - [html](https://github.com/Kotlin/kotlinx.html/releases)
* - [node js](https://github.com/Kotlin/kotlinx-nodejs)
*/
typealias KotlinX = Org.JetBrains.KotlinX
/**
* - [github](https://github.com/mareklangiewicz)
* - [github repositories](https://github.com/mareklangiewicz?tab=repositories)
* - [repo1 maven](https://repo1.maven.org/maven2/pl/mareklangiewicz/)
*/
typealias Langiewicz = Pl.MarekLangiewicz
/**
* - [github](https://github.com/JetBrains/compose-multiplatform)
* - [github releases](https://github.com/JetBrains/compose-multiplatform/releases)
* - [github changelog](https://github.com/JetBrains/compose-multiplatform/blob/master/CHANGELOG.md)
* - [maven space](https://maven.pkg.jetbrains.space/public/p/compose/dev/org/jetbrains/compose/)
* - [maven space plugin](https://maven.pkg.jetbrains.space/public/p/compose/dev/org/jetbrains/compose/compose-gradle-plugin/)
*/
typealias Compose = Org.JetBrains.Compose
/**
* - [releases](https://developer.android.com/jetpack/androidx/releases/compose)
* - [releases compatibility](https://developer.android.com/jetpack/androidx/releases/compose-kotlin#pre-release_kotlin_compatibility)
* - [compiler dev repo table](https://androidx.dev/storage/compose-compiler/repository)
* - [compiler mvnrepository releases](https://mvnrepository.com/artifact/org.jetbrains.compose.compiler/compiler)
*/
typealias ComposeAndro = AndroidX.Compose
/**
* - [accompanist docs](https://google.github.io/accompanist/)
* - [accompanist sonatype search](https://central.sonatype.com/search?namespace=com.google.accompanist)
*/
typealias GoogleAccompanist = Com.Google.Accompanist
/**
* Android related kdoc links
* TODO: better places for links (auto injecting into generated objects?)
* - [google maven index](https://maven.google.com/web/index.html)
* - [androidx versions](https://developer.android.com/jetpack/androidx/versions)
* - [constraint layout](https://developer.android.com/develop/ui/views/layout/constraint-layout)
* - [navigation](https://developer.android.com/jetpack/androidx/releases/navigation)
* - [material components](https://github.com/material-components/material-components-android/releases)
* - [browser helper](https://github.com/GoogleChrome/android-browser-helper)
* - [flexbox layout](https://github.com/google/flexbox-layout/releases)
* - [percent layout](https://developer.android.com/jetpack/androidx/releases/percentlayout)
* - [lifecycle](https://developer.android.com/jetpack/androidx/releases/lifecycle)
* - [camera](https://developer.android.com/jetpack/androidx/releases/camera)
* - [room](https://developer.android.com/jetpack/androidx/releases/room)
* - [auto fill](https://developer.android.com/jetpack/androidx/releases/autofill)
* - [test](https://developer.android.com/jetpack/androidx/releases/test)
* - [rx binding](https://github.com/JakeWharton/RxBinding)
* - [rx android](https://github.com/ReactiveX/RxAndroid/releases)
* - [google services plugin](https://developers.google.com/android/guides/google-services-plugin)
* - [google play services setup](https://developers.google.com/android/guides/setup)
* - [google play services releases](https://developers.google.com/android/guides/releases)
* - [firebase crashlytics get started](https://firebase.google.com/docs/crashlytics/get-started?platform=android)
* - [firebase release notes andro](https://firebase.google.com/support/release-notes/android)
* - [firebase setup andro bom](https://firebase.google.com/docs/android/setup#add-sdks)
* - [picasso](https://github.com/square/picasso)
* - [leak canary](https://github.com/square/leakcanary/releases)
* - [mockito releases](https://github.com/mockito/mockito/releases)
* - [mockito core sonatype](https://central.sonatype.com/search?q=mockito-core&namespace=org.mockito)
* - [mockito android sonatype](https://central.sonatype.com/search?q=mockito-android&namespace=org.mockito)
* - [robolectric getting started](https://robolectric.org/getting-started/)
* - [realm android install](https://docs.mongodb.com/realm/sdk/android/install/)
* - [rsocket kotlin github](https://github.com/rsocket/rsocket-kotlin)
* - [rsocket kotlin github releases](https://github.com/rsocket/rsocket-kotlin/releases)
* - [splitties github](https://github.com/LouisCAD/Splitties)
* - [splitties github releases](https://github.com/rsocket/rsocket-kotlin/releases)
*/
val AndroLinks: Nothing get() = error("Dont' use AndroLinks in code. It's only for links in kdoc comment.")
/**
*
* Other kdoc links
* TODO: better places for links (auto injecting into generated objects?)
* - [rx java releases](https://github.com/ReactiveX/RxJava/releases)
* - [rx kotlin releases](https://github.com/ReactiveX/RxKotlin/releases)
* - [rx relay](https://github.com/JakeWharton/RxRelay)
* - [retrofit](https://github.com/square/retrofit)
* - [okhttp](https://github.com/square/okhttp)
* - [okio](https://square.github.io/okio)
* - [mockito kotlin releases](https://github.com/nhaarman/mockito-kotlin/releases)
* - [junit4 releases](https://github.com/junit-team/junit4/releases)
* - [junit5 jupiter releases](https://github.com/junit-team/junit5/releases)
* - [google truth releases](https://github.com/google/truth/releases)
* - [ktor maven space](https://maven.pkg.jetbrains.space/public/p/ktor/eap/io/ktor/ktor/)
* - [ktor github](https://github.com/ktorio/ktor)
* - [ktor github](https://github.com/ktorio/ktor)
* - [ktor github](https://github.com/ktorio/ktor)
* - [ktor github releases](https://github.com/ktorio/ktor/releases)
*/
val OtherLinks: Nothing get() = error("Don't use OtherLinks in code. It's only for links in kdoc comment.")
// endregion [[Deps Selected]]
// Micro syntax/dsl (private syntax sugar) so diffs can be understood at glance.
private infix fun String.d(name: String) = Dep(this, name)
private infix fun Dep.w(verStr: String) = copy(vers = vers + Ver(verStr))
// @formatter:off
// region [[Deps Generated]]
object AndroidX {
object Activity {
val activity = "androidx.activity" d "activity" w "1.3.0-beta01" w "1.10.0"
val compose = "androidx.activity" d "activity-compose" w "1.3.0-beta01" w "1.10.0"
val ktx = "androidx.activity" d "activity-ktx" w "1.3.0-beta01" w "1.10.0"
}
object Annotation {
val annotation = "androidx.annotation" d "annotation" w "1.3.0-alpha01" w "1.9.1"
val experimental = "androidx.annotation" d "annotation-experimental" w "1.2.0-alpha01" w "1.4.1" w "1.5.0-alpha01"
}
object AppCompat {
val appcompat = "androidx.appcompat" d "appcompat" w "1.7.0"
val resources = "androidx.appcompat" d "appcompat-resources" w "1.7.0"
}
object AppSearch {
val appsearch = "androidx.appsearch" d "appsearch" w "1.1.0-beta01"
val builtin_types = "androidx.appsearch" d "appsearch-builtin-types" w "1.1.0-beta01"
val compiler = "androidx.appsearch" d "appsearch-compiler" w "1.1.0-beta01"
val local_storage = "androidx.appsearch" d "appsearch-local-storage" w "1.1.0-beta01"
val platform_storage = "androidx.appsearch" d "appsearch-platform-storage" w "1.1.0-beta01"
}
object Arch {
object Core {
val common = "androidx.arch.core" d "core-common" w "2.2.0"
val runtime = "androidx.arch.core" d "core-runtime" w "2.2.0"
val testing = "androidx.arch.core" d "core-testing" w "2.2.0"
}
}
object AsyncLayoutInflater {
val appcompat = "androidx.asynclayoutinflater" d "asynclayoutinflater-appcompat" w "1.1.0-alpha01"
val asynclayoutinflater = "androidx.asynclayoutinflater" d "asynclayoutinflater" w "1.0.0" w "1.1.0-alpha01"
}
object AutoFill {
val autofill = "androidx.autofill" d "autofill" w "1.1.0" w "1.3.0-beta01"
}
object Benchmark {
val common = "androidx.benchmark" d "benchmark-common" w "1.1.0-alpha03" w "1.3.3" w "1.4.0-alpha07"
val gradle_plugin = "androidx.benchmark" d "benchmark-gradle-plugin" w "1.3.3" w "1.4.0-alpha07"
val junit4 = "androidx.benchmark" d "benchmark-junit4" w "1.1.0-alpha03" w "1.3.3" w "1.4.0-alpha07"
val macro = "androidx.benchmark" d "benchmark-macro" w "1.1.0-alpha03" w "1.3.3" w "1.4.0-alpha07"
val macro_junit4 = "androidx.benchmark" d "benchmark-macro-junit4" w "1.1.0-alpha03" w "1.3.3" w "1.4.0-alpha07"
}
object Biometric {
val biometric = "androidx.biometric" d "biometric" w "1.1.0" w "1.4.0-alpha02"
val ktx = "androidx.biometric" d "biometric-ktx" w "1.4.0-alpha02"
}
object Browser {
val browser = "androidx.browser" d "browser" w "1.8.0" w "1.9.0-alpha01"
}
object Camera {
val camera2 = "androidx.camera" d "camera-camera2" w "1.4.1" w "1.5.0-alpha05"
val core = "androidx.camera" d "camera-core" w "1.4.1" w "1.5.0-alpha05"
val extensions = "androidx.camera" d "camera-extensions" w "1.4.1" w "1.5.0-alpha05"
val lifecycle = "androidx.camera" d "camera-lifecycle" w "1.4.1" w "1.5.0-alpha05"
val mlkit_vision = "androidx.camera" d "camera-mlkit-vision" w "1.4.1" w "1.5.0-alpha05"
val video = "androidx.camera" d "camera-video" w "1.4.1" w "1.5.0-alpha05"
val view = "androidx.camera" d "camera-view" w "1.4.1" w "1.5.0-alpha05"
}
object Car {
object App {
val app = "androidx.car.app" d "app" w "1.4.0" w "1.7.0-rc01"
val automotive = "androidx.car.app" d "app-automotive" w "1.4.0" w "1.7.0-rc01"
val projected = "androidx.car.app" d "app-projected" w "1.4.0" w "1.7.0-rc01"
val testing = "androidx.car.app" d "app-testing" w "1.4.0" w "1.7.0-rc01"
}
}
object CardView {
val cardview = "androidx.cardview" d "cardview" w "1.0.0"
}
object Collection {
val collection = "androidx.collection" d "collection" w "1.4.5" w "1.5.0-beta03"
val ktx = "androidx.collection" d "collection-ktx" w "1.4.5" w "1.5.0-beta03"
}
object Compose {
val bom = "androidx.compose" d "compose-bom" w "2025.01.01"
object Animation {
val animation = "androidx.compose.animation" d "animation" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val core = "androidx.compose.animation" d "animation-core" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val graphics = "androidx.compose.animation" d "animation-graphics" w "1.7.7" w "1.8.0-beta01"
}
object Compiler {
val compiler = "androidx.compose.compiler" d "compiler" w "1.0.0-beta06" w "1.5.15"
}
object Foundation {
val foundation = "androidx.compose.foundation" d "foundation" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val layout = "androidx.compose.foundation" d "foundation-layout" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
}
object Material {
val icons_core = "androidx.compose.material" d "material-icons-core" w "1.0.0-beta06" w "1.7.7"
val icons_extended = "androidx.compose.material" d "material-icons-extended" w "1.0.0-beta06" w "1.7.7"
val material = "androidx.compose.material" d "material" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val ripple = "androidx.compose.material" d "material-ripple" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
}
object Material3 {
val material3 = "androidx.compose.material3" d "material3" w "1.3.1" w "1.4.0-alpha07"
val window_size_class = "androidx.compose.material3" d "material3-window-size-class" w "1.3.1" w "1.4.0-alpha07"
}
object Runtime {
val dispatch = "androidx.compose.runtime" d "runtime-dispatch" w "1.0.0-alpha12"
val livedata = "androidx.compose.runtime" d "runtime-livedata" w "1.7.7" w "1.8.0-beta01"
val runtime = "androidx.compose.runtime" d "runtime" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val rxjava2 = "androidx.compose.runtime" d "runtime-rxjava2" w "1.7.7" w "1.8.0-beta01"
val rxjava3 = "androidx.compose.runtime" d "runtime-rxjava3" w "1.7.7" w "1.8.0-beta01"
val saveable = "androidx.compose.runtime" d "runtime-saveable" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val tracing = "androidx.compose.runtime" d "runtime-tracing" w "1.7.7" w "1.8.0-beta01"
}
object Ui {
val geometry = "androidx.compose.ui" d "ui-geometry" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val graphics = "androidx.compose.ui" d "ui-graphics" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val test = "androidx.compose.ui" d "ui-test" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val test_junit4 = "androidx.compose.ui" d "ui-test-junit4" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val test_manifest = "androidx.compose.ui" d "ui-test-manifest" w "1.7.7" w "1.8.0-beta01"
val text = "androidx.compose.ui" d "ui-text" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val text_google_fonts = "androidx.compose.ui" d "ui-text-google-fonts" w "1.7.7" w "1.8.0-beta01"
val tooling = "androidx.compose.ui" d "ui-tooling" w "1.7.7" w "1.8.0-beta01"
val tooling_data = "androidx.compose.ui" d "ui-tooling-data" w "1.7.7" w "1.8.0-beta01"
val tooling_preview = "androidx.compose.ui" d "ui-tooling-preview" w "1.7.7" w "1.8.0-beta01"
val ui = "androidx.compose.ui" d "ui" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val unit = "androidx.compose.ui" d "ui-unit" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val util = "androidx.compose.ui" d "ui-util" w "1.0.0-beta06" w "1.7.7" w "1.8.0-beta01"
val viewbinding = "androidx.compose.ui" d "ui-viewbinding" w "1.7.7" w "1.8.0-beta01"
}
}
object Concurrent {
val futures = "androidx.concurrent" d "concurrent-futures" w "1.2.0" w "1.3.0-alpha01"
val futures_ktx = "androidx.concurrent" d "concurrent-futures-ktx" w "1.2.0" w "1.3.0-alpha01"
}
object ConstraintLayout {
val compose = "androidx.constraintlayout" d "constraintlayout-compose" w "1.1.0"
val constraintlayout = "androidx.constraintlayout" d "constraintlayout" w "2.2.0"
}
object ContentPager {
val contentpager = "androidx.contentpager" d "contentpager" w "1.0.0"
}
object CoordinatorLayout {
val coordinatorlayout = "androidx.coordinatorlayout" d "coordinatorlayout" w "1.2.0" w "1.3.0-beta01"
}
object Core {
val animation = "androidx.core" d "core-animation" w "1.0.0"
val animation_testing = "androidx.core" d "core-animation-testing" w "1.0.0"
val core = "androidx.core" d "core" w "1.15.0" w "1.16.0-alpha02"
val google_shortcuts = "androidx.core" d "core-google-shortcuts" w "1.1.0" w "1.2.0-alpha01"
val ktx = "androidx.core" d "core-ktx" w "1.15.0" w "1.16.0-alpha02"
val performance = "androidx.core" d "core-performance" w "1.0.0"
val remoteviews = "androidx.core" d "core-remoteviews" w "1.1.0"
val role = "androidx.core" d "core-role" w "1.0.0" w "1.1.0-rc01"
val splashscreen = "androidx.core" d "core-splashscreen" w "1.0.1" w "1.1.0-rc01" w "1.2.0-alpha02"
object Uwb {
val rxjava3 = "androidx.core.uwb" d "uwb-rxjava3" w "1.0.0-alpha10"
val uwb = "androidx.core.uwb" d "uwb" w "1.0.0-alpha10"
}
}
object CursorAdapter {
val cursoradapter = "androidx.cursoradapter" d "cursoradapter" w "1.0.0"
}
object CustomView {
val customview = "androidx.customview" d "customview" w "1.1.0" w "1.2.0-alpha02"
val poolingcontainer = "androidx.customview" d "customview-poolingcontainer" w "1.0.0"
}
object DataStore {
val core = "androidx.datastore" d "datastore-core" w "1.1.2"
val core_okio = "androidx.datastore" d "datastore-core-okio" w "1.1.2"
val datastore = "androidx.datastore" d "datastore" w "1.1.2"
val preferences = "androidx.datastore" d "datastore-preferences" w "1.1.2"
val preferences_core = "androidx.datastore" d "datastore-preferences-core" w "1.1.2"
val preferences_rxjava2 = "androidx.datastore" d "datastore-preferences-rxJava2" w "1.1.2"
val preferences_rxjava3 = "androidx.datastore" d "datastore-preferences-rxJava3" w "1.1.2"
val rxjava2 = "androidx.datastore" d "datastore-rxJava2" w "1.1.2"
val rxjava3 = "androidx.datastore" d "datastore-rxJava3" w "1.1.2"
}
object DocumentFile {
val documentfile = "androidx.documentfile" d "documentfile" w "1.0.1" w "1.1.0-alpha01"
}
object Draganddrop {
val draganddrop = "androidx.draganddrop" d "draganddrop" w "1.0.0"
}
object DrawerLayout {
val drawerlayout = "androidx.drawerlayout" d "drawerlayout" w "1.2.0"
}
object DynamicAnimation {
val dynamicanimation = "androidx.dynamicanimation" d "dynamicanimation" w "1.0.0" w "1.1.0-alpha03"
val ktx = "androidx.dynamicanimation" d "dynamicanimation-ktx" w "1.0.0-alpha03"
}
object Emoji {
val appcompat = "androidx.emoji" d "emoji-appcompat" w "1.1.0" w "1.2.0-alpha03"
val bundled = "androidx.emoji" d "emoji-bundled" w "1.1.0" w "1.2.0-alpha03"
val emoji = "androidx.emoji" d "emoji" w "1.1.0" w "1.2.0-alpha03"
}
object Emoji2 {
val bundled = "androidx.emoji2" d "emoji2-bundled" w "1.5.0"
val emoji2 = "androidx.emoji2" d "emoji2" w "1.5.0"
val views = "androidx.emoji2" d "emoji2-views" w "1.5.0"
val views_helper = "androidx.emoji2" d "emoji2-views-helper" w "1.5.0"
}
object Enterprise {
val feedback = "androidx.enterprise" d "enterprise-feedback" w "1.1.0"
val feedback_testing = "androidx.enterprise" d "enterprise-feedback-testing" w "1.1.0"
}
object Exifinterface {
val exifinterface = "androidx.exifinterface" d "exifinterface" w "1.3.7" w "1.4.0-rc01"
}
object Fragment {
val fragment = "androidx.fragment" d "fragment" w "1.8.5"
val ktx = "androidx.fragment" d "fragment-ktx" w "1.8.5"
val testing = "androidx.fragment" d "fragment-testing" w "1.8.5"
}
object Games {
val activity = "androidx.games" d "games-activity" w "3.0.5" w "4.0.0-rc01"
val controller = "androidx.games" d "games-controller" w "2.0.2"
val frame_pacing = "androidx.games" d "games-frame-pacing" w "2.1.2"
val performance_tuner = "androidx.games" d "games-performance-tuner" w "2.0.0"
val text_input = "androidx.games" d "games-text-input" w "3.0.4" w "4.0.0-rc01"
}
object Glance {
val appwidget = "androidx.glance" d "glance-appwidget" w "1.1.1"
val glance = "androidx.glance" d "glance" w "1.1.1"
val wear_tiles = "androidx.glance" d "glance-wear-tiles" w "1.0.0-alpha05"
}
object GraphIcs {
val core = "androidx.graphics" d "graphics-core" w "1.0.2"
}
object GridLayout {
val gridlayout = "androidx.gridlayout" d "gridlayout" w "1.0.0" w "1.1.0-beta01"
}
object Health {
val services_client = "androidx.health" d "health-services-client" w "1.0.0-rc02" w "1.1.0-alpha05"
object Connect {
val client = "androidx.health.connect" d "connect-client" w "1.1.0-alpha11"
}
}
object Heifwriter {
val heifwriter = "androidx.heifwriter" d "heifwriter" w "1.0.0" w "1.1.0-alpha04"
}
object Hilt {
val compiler = "androidx.hilt" d "hilt-compiler" w "1.2.0"
val navigation_compose = "androidx.hilt" d "hilt-navigation-compose" w "1.0.0-alpha03" w "1.2.0"
val navigation_fragment = "androidx.hilt" d "hilt-navigation-fragment" w "1.2.0"
val work = "androidx.hilt" d "hilt-work" w "1.2.0"
}
object Input {
val motionprediction = "androidx.input" d "input-motionprediction" w "1.0.0-beta05"
}
object Interpolator {
val interpolator = "androidx.interpolator" d "interpolator" w "1.0.0"
}
object JavaScriptengine {
val javascriptengine = "androidx.javascriptengine" d "javascriptengine" w "1.0.0-beta01"
}
object Leanback {
val grid = "androidx.leanback" d "leanback-grid" w "1.0.0-alpha03"
val leanback = "androidx.leanback" d "leanback" w "1.0.0" w "1.1.0-rc02" w "1.2.0-alpha04"
val paging = "androidx.leanback" d "leanback-paging" w "1.1.0-alpha11"
val preference = "androidx.leanback" d "leanback-preference" w "1.0.0" w "1.1.0-rc01" w "1.2.0-alpha04"
val tab = "androidx.leanback" d "leanback-tab" w "1.1.0-beta01"
}
object Lifecycle {
val common = "androidx.lifecycle" d "lifecycle-common" w "2.8.7" w "2.9.0-alpha09"
val common_java8 = "androidx.lifecycle" d "lifecycle-common-java8" w "2.8.7" w "2.9.0-alpha09"
val compiler = "androidx.lifecycle" d "lifecycle-compiler" w "2.8.7" w "2.9.0-alpha09"
val extensions = "androidx.lifecycle" d "lifecycle-extensions" w "2.2.0"
val livedata = "androidx.lifecycle" d "lifecycle-livedata" w "2.8.7" w "2.9.0-alpha09"
val livedata_ktx = "androidx.lifecycle" d "lifecycle-livedata-ktx" w "2.8.7" w "2.9.0-alpha09"
val process = "androidx.lifecycle" d "lifecycle-process" w "2.8.7" w "2.9.0-alpha09"
val reactivestreams = "androidx.lifecycle" d "lifecycle-reactivestreams" w "2.8.7" w "2.9.0-alpha09"
val reactivestreams_ktx = "androidx.lifecycle" d "lifecycle-reactivestreams-ktx" w "2.8.7" w "2.9.0-alpha09"
val runtime = "androidx.lifecycle" d "lifecycle-runtime" w "2.8.7" w "2.9.0-alpha09"
val runtime_compose = "androidx.lifecycle" d "lifecycle-runtime-compose" w "2.8.7" w "2.9.0-alpha09"
val runtime_ktx = "androidx.lifecycle" d "lifecycle-runtime-ktx" w "2.8.7" w "2.9.0-alpha09"
val runtime_testing = "androidx.lifecycle" d "lifecycle-runtime-testing" w "2.8.7" w "2.9.0-alpha09"
val service = "androidx.lifecycle" d "lifecycle-service" w "2.8.7" w "2.9.0-alpha09"
val viewmodel = "androidx.lifecycle" d "lifecycle-viewmodel" w "2.8.7" w "2.9.0-alpha09"
val viewmodel_compose = "androidx.lifecycle" d "lifecycle-viewmodel-compose" w "1.0.0-alpha06" w "2.8.7" w "2.9.0-alpha09"
val viewmodel_ktx = "androidx.lifecycle" d "lifecycle-viewmodel-ktx" w "2.8.7" w "2.9.0-alpha09"
val viewmodel_savedstate = "androidx.lifecycle" d "lifecycle-viewmodel-savedstate" w "2.8.7" w "2.9.0-alpha09"
}
object Loader {
val loader = "androidx.loader" d "loader" w "1.1.0"
}
object LocalBroadcastManager {
val localbroadcastmanager = "androidx.localbroadcastmanager" d "localbroadcastmanager" w "1.1.0"
}
object Media {
val media = "androidx.media" d "media" w "1.7.0"
}
object Media2 {
val common = "androidx.media2" d "media2-common" w "1.3.0"
val exoplayer = "androidx.media2" d "media2-exoplayer" w "1.3.0"
val player = "androidx.media2" d "media2-player" w "1.3.0"
val session = "androidx.media2" d "media2-session" w "1.3.0"
val widget = "androidx.media2" d "media2-widget" w "1.3.0"
}
object Media3 {
val cast = "androidx.media3" d "media3-cast" w "1.5.1" w "1.6.0-alpha01"
val common = "androidx.media3" d "media3-common" w "1.5.1" w "1.6.0-alpha01"
val database = "androidx.media3" d "media3-database" w "1.5.1" w "1.6.0-alpha01"
val datasource = "androidx.media3" d "media3-datasource" w "1.5.1" w "1.6.0-alpha01"
val datasource_cronet = "androidx.media3" d "media3-datasource-cronet" w "1.5.1" w "1.6.0-alpha01"
val datasource_okhttp = "androidx.media3" d "media3-datasource-okhttp" w "1.5.1" w "1.6.0-alpha01"
val datasource_rtmp = "androidx.media3" d "media3-datasource-rtmp" w "1.5.1" w "1.6.0-alpha01"
val decoder = "androidx.media3" d "media3-decoder" w "1.5.1" w "1.6.0-alpha01"
val exoplayer = "androidx.media3" d "media3-exoplayer" w "1.5.1" w "1.6.0-alpha01"
val exoplayer_dash = "androidx.media3" d "media3-exoplayer-dash" w "1.5.1" w "1.6.0-alpha01"
val exoplayer_hls = "androidx.media3" d "media3-exoplayer-hls" w "1.5.1" w "1.6.0-alpha01"
val exoplayer_ima = "androidx.media3" d "media3-exoplayer-ima" w "1.5.1" w "1.6.0-alpha01"
val exoplayer_rtsp = "androidx.media3" d "media3-exoplayer-rtsp" w "1.5.1" w "1.6.0-alpha01"
val exoplayer_workmanager = "androidx.media3" d "media3-exoplayer-workmanager" w "1.5.1" w "1.6.0-alpha01"
val extractor = "androidx.media3" d "media3-extractor" w "1.5.1" w "1.6.0-alpha01"
val session = "androidx.media3" d "media3-session" w "1.5.1" w "1.6.0-alpha01"
val test_utils = "androidx.media3" d "media3-test-utils" w "1.5.1" w "1.6.0-alpha01"
val test_utils_robolectric = "androidx.media3" d "media3-test-utils-robolectric" w "1.5.1" w "1.6.0-alpha01"
val transformer = "androidx.media3" d "media3-transformer" w "1.5.1" w "1.6.0-alpha01"
val ui = "androidx.media3" d "media3-ui" w "1.5.1" w "1.6.0-alpha01"
val ui_leanback = "androidx.media3" d "media3-ui-leanback" w "1.5.1" w "1.6.0-alpha01"
}
object MediaRouter {
val mediarouter = "androidx.mediarouter" d "mediarouter" w "1.7.0" w "1.8.0-alpha02"
}
object Metrics {
val performance = "androidx.metrics" d "metrics-performance" w "1.0.0-beta01"
}
object Multidex {
val instrumentation = "androidx.multidex" d "multidex-instrumentation" w "2.0.0"
val multidex = "androidx.multidex" d "multidex" w "2.0.1"
}
object Navigation {
val common = "androidx.navigation" d "navigation-common" w "2.4.0-alpha02" w "2.8.6" w "2.9.0-alpha05"
val common_ktx = "androidx.navigation" d "navigation-common-ktx" w "2.4.0-alpha02" w "2.8.6" w "2.9.0-alpha05"
val compose = "androidx.navigation" d "navigation-compose" w "2.4.0-alpha02" w "2.8.6" w "2.9.0-alpha05"
val dynamic_features_fragment = "androidx.navigation" d "navigation-dynamic-features-fragment" w "2.8.6" w "2.9.0-alpha05"
val fragment = "androidx.navigation" d "navigation-fragment" w "2.8.6" w "2.9.0-alpha05"
val fragment_ktx = "androidx.navigation" d "navigation-fragment-ktx" w "2.8.6" w "2.9.0-alpha05"
val runtime = "androidx.navigation" d "navigation-runtime" w "2.4.0-alpha02" w "2.8.6" w "2.9.0-alpha05"
val runtime_ktx = "androidx.navigation" d "navigation-runtime-ktx" w "2.4.0-alpha02" w "2.8.6" w "2.9.0-alpha05"
val safe_args_generator = "androidx.navigation" d "navigation-safe-args-generator" w "2.8.6" w "2.9.0-alpha05"
val safe_args_gradle_plugin = "androidx.navigation" d "navigation-safe-args-gradle-plugin" w "2.8.6" w "2.9.0-alpha05"
val testing = "androidx.navigation" d "navigation-testing" w "2.4.0-alpha02" w "2.8.6" w "2.9.0-alpha05"
val ui = "androidx.navigation" d "navigation-ui" w "2.8.6" w "2.9.0-alpha05"
val ui_ktx = "androidx.navigation" d "navigation-ui-ktx" w "2.8.6" w "2.9.0-alpha05"
}
object Paging {
val common = "androidx.paging" d "paging-common" w "3.1.0-alpha01" w "3.3.5"
val common_ktx = "androidx.paging" d "paging-common-ktx" w "3.3.5"
val compose = "androidx.paging" d "paging-compose" w "1.0.0-alpha10" w "3.3.5"
val guava = "androidx.paging" d "paging-guava" w "3.3.5"
val runtime = "androidx.paging" d "paging-runtime" w "3.3.5"
val runtime_ktx = "androidx.paging" d "paging-runtime-ktx" w "3.3.5"
val rxjava2 = "androidx.paging" d "paging-rxjava2" w "3.3.5"
val rxjava2_ktx = "androidx.paging" d "paging-rxjava2-ktx" w "3.3.5"
val rxjava3 = "androidx.paging" d "paging-rxjava3" w "3.3.5"
val testing = "androidx.paging" d "paging-testing" w "3.3.5"
}
object Palette {
val ktx = "androidx.palette" d "palette-ktx" w "1.0.0"
val palette = "androidx.palette" d "palette" w "1.0.0"
}
object PercentLayout {
val percentlayout = "androidx.percentlayout" d "percentlayout" w "1.0.0"
}
object Preference {
val ktx = "androidx.preference" d "preference-ktx" w "1.2.1"
val preference = "androidx.preference" d "preference" w "1.2.1"
}
object Print {
val print = "androidx.print" d "print" w "1.0.0" w "1.1.0-beta01"
}
object Recommendation {
val recommendation = "androidx.recommendation" d "recommendation" w "1.0.0"
}
object RecyclerView {
val recyclerview = "androidx.recyclerview" d "recyclerview" w "1.4.0"
val selection = "androidx.recyclerview" d "recyclerview-selection" w "1.1.0" w "1.2.0-alpha01"
}
object Remotecallback {
val processor = "androidx.remotecallback" d "remotecallback-processor" w "1.0.0-alpha02"
val remotecallback = "androidx.remotecallback" d "remotecallback" w "1.0.0-alpha02"
}
object Room {
val common = "androidx.room" d "room-common" w "2.6.1" w "2.7.0-alpha13"
val compiler = "androidx.room" d "room-compiler" w "2.6.1" w "2.7.0-alpha13"
val guava = "androidx.room" d "room-guava" w "2.6.1" w "2.7.0-alpha13"
val ktx = "androidx.room" d "room-ktx" w "2.6.1" w "2.7.0-alpha13"
val paging = "androidx.room" d "room-paging" w "2.6.1" w "2.7.0-alpha13"
val paging_guava = "androidx.room" d "room-paging-guava" w "2.6.1" w "2.7.0-alpha13"
val paging_rxjava2 = "androidx.room" d "room-paging-rxjava2" w "2.6.1" w "2.7.0-alpha13"
val paging_rxjava3 = "androidx.room" d "room-paging-rxjava3" w "2.6.1" w "2.7.0-alpha13"
val runtime = "androidx.room" d "room-runtime" w "2.6.1" w "2.7.0-alpha13"
val rxjava2 = "androidx.room" d "room-rxjava2" w "2.6.1" w "2.7.0-alpha13"
val rxjava3 = "androidx.room" d "room-rxjava3" w "2.6.1" w "2.7.0-alpha13"
val testing = "androidx.room" d "room-testing" w "2.6.1" w "2.7.0-alpha13"
}
object Savedstate {
val ktx = "androidx.savedstate" d "savedstate-ktx" w "1.2.1" w "1.3.0-alpha07"
val savedstate = "androidx.savedstate" d "savedstate" w "1.2.1" w "1.3.0-alpha07"
}
object Security {
val app_authenticator = "androidx.security" d "security-app-authenticator" w "1.0.0-beta01"
val app_authenticator_testing = "androidx.security" d "security-app-authenticator-testing" w "1.0.0-beta01"
val crypto = "androidx.security" d "security-crypto" w "1.0.0" w "1.1.0-alpha06"
val crypto_ktx = "androidx.security" d "security-crypto-ktx" w "1.1.0-alpha06"
val identity_credential = "androidx.security" d "security-identity-credential" w "1.0.0-alpha03"
}
object ShareTarget {
val sharetarget = "androidx.sharetarget" d "sharetarget" w "1.2.0"
}
object Slice {
val builders = "androidx.slice" d "slice-builders" w "1.0.0" w "1.1.0-alpha02"
val builders_ktx = "androidx.slice" d "slice-builders-ktx" w "1.0.0-alpha08"
val core = "androidx.slice" d "slice-core" w "1.0.0" w "1.1.0-alpha02"
val view = "androidx.slice" d "slice-view" w "1.0.0" w "1.1.0-alpha02"
}
object SlidingpaneLayout {
val slidingpanelayout = "androidx.slidingpanelayout" d "slidingpanelayout" w "1.2.0"
}
object Sqlite {
val framework = "androidx.sqlite" d "sqlite-framework" w "2.4.0" w "2.5.0-alpha13"
val ktx = "androidx.sqlite" d "sqlite-ktx" w "2.4.0" w "2.5.0-alpha13"
val sqlite = "androidx.sqlite" d "sqlite" w "2.4.0" w "2.5.0-alpha13"
}
object Startup {
val runtime = "androidx.startup" d "startup-runtime" w "1.2.0"
}
object SwiperefreshLayout {
val swiperefreshlayout = "androidx.swiperefreshlayout" d "swiperefreshlayout" w "1.1.0" w "1.2.0-alpha01"
}
object Test {
val core = "androidx.test" d "core" w "1.6.1"
val core_ktx = "androidx.test" d "core-ktx" w "1.6.1"
val monitor = "androidx.test" d "monitor" w "1.7.2"
val orchestrator = "androidx.test" d "orchestrator" w "1.5.1" w "1.6.0-alpha01"
val rules = "androidx.test" d "rules" w "1.6.1"
val runner = "androidx.test" d "runner" w "1.6.2"
object Espresso {
val accessibility = "androidx.test.espresso" d "espresso-accessibility" w "3.6.1"
val contrib = "androidx.test.espresso" d "espresso-contrib" w "3.6.1"
val core = "androidx.test.espresso" d "espresso-core" w "3.6.1"
val device = "androidx.test.espresso" d "espresso-device" w "1.0.1"
val idling_resource = "androidx.test.espresso" d "espresso-idling-resource" w "3.6.1"
val intents = "androidx.test.espresso" d "espresso-intents" w "3.6.1"
val remote = "androidx.test.espresso" d "espresso-remote" w "3.6.1"
val web = "androidx.test.espresso" d "espresso-web" w "3.6.1"
object Idling {
val concurrent = "androidx.test.espresso.idling" d "idling-concurrent" w "3.6.1"
val net = "androidx.test.espresso.idling" d "idling-net" w "3.6.1"
}
}
object Ext {
val junit = "androidx.test.ext" d "junit" w "1.2.1"
val junit_gtest = "androidx.test.ext" d "junit-gtest" w "1.0.0-alpha02"
val junit_ktx = "androidx.test.ext" d "junit-ktx" w "1.2.1"
val truth = "androidx.test.ext" d "truth" w "1.6.0"
}
object Services {
val test_services = "androidx.test.services" d "test-services" w "1.5.0" w "1.6.0-alpha01"
}
object UiAutoMator {
val uiautomator = "androidx.test.uiautomator" d "uiautomator" w "2.3.0" w "2.4.0-alpha01"
}
}
object TextClassifier {
val textclassifier = "androidx.textclassifier" d "textclassifier" w "1.0.0-alpha04"
}
object Tracing {
val ktx = "androidx.tracing" d "tracing-ktx" w "1.1.0-alpha01" w "1.2.0" w "1.3.0-alpha02"
val perfetto = "androidx.tracing" d "tracing-perfetto" w "1.0.0"
val tracing = "androidx.tracing" d "tracing" w "1.1.0-alpha01" w "1.2.0" w "1.3.0-alpha02"
}
object Transition {
val ktx = "androidx.transition" d "transition-ktx" w "1.5.1" w "1.6.0-alpha01"
val transition = "androidx.transition" d "transition" w "1.5.1" w "1.6.0-alpha01"
}
object Tv {
val foundation = "androidx.tv" d "tv-foundation" w "1.0.0-alpha12"
val material = "androidx.tv" d "tv-material" w "1.0.0" w "1.1.0-alpha01"
}
object TvProvider {
val tvprovider = "androidx.tvprovider" d "tvprovider" w "1.0.0" w "1.1.0-alpha01"
}
object Vectordrawable {
val animated = "androidx.vectordrawable" d "vectordrawable-animated" w "1.2.0"
val seekable = "androidx.vectordrawable" d "vectordrawable-seekable" w "1.0.0"
val vectordrawable = "androidx.vectordrawable" d "vectordrawable" w "1.2.0"
}
object Versionedparcelable {
val versionedparcelable = "androidx.versionedparcelable" d "versionedparcelable" w "1.2.1"
}
object ViewPager {
val viewpager = "androidx.viewpager" d "viewpager" w "1.1.0"
}
object ViewPager2 {
val viewpager2 = "androidx.viewpager2" d "viewpager2" w "1.1.0"
}
object Wear {
val input = "androidx.wear" d "wear-input" w "1.1.0" w "1.2.0-alpha02"
val input_testing = "androidx.wear" d "wear-input-testing" w "1.1.0" w "1.2.0-alpha02"
val ongoing = "androidx.wear" d "wear-ongoing" w "1.0.0" w "1.1.0-alpha01"
val phone_interactions = "androidx.wear" d "wear-phone-interactions" w "1.0.1" w "1.1.0-beta01"
val remote_interactions = "androidx.wear" d "wear-remote-interactions" w "1.1.0"
val wear = "androidx.wear" d "wear" w "1.3.0" w "1.4.0-alpha01"
object Compose {
val foundation = "androidx.wear.compose" d "compose-foundation" w "1.0.0-alpha01" w "1.4.0" w "1.5.0-alpha09"
val material = "androidx.wear.compose" d "compose-material" w "1.0.0-alpha01" w "1.4.0" w "1.5.0-alpha09"
val navigation = "androidx.wear.compose" d "compose-navigation" w "1.4.0" w "1.5.0-alpha09"
}
object Tiles {
val material = "androidx.wear.tiles" d "tiles-material" w "1.4.1" w "1.5.0-alpha07"
val renderer = "androidx.wear.tiles" d "tiles-renderer" w "1.4.1" w "1.5.0-alpha07"
val testing = "androidx.wear.tiles" d "tiles-testing" w "1.4.1" w "1.5.0-alpha07"
val tiles = "androidx.wear.tiles" d "tiles" w "1.4.1" w "1.5.0-alpha07"
}
object Watchface {
val complications_data_source = "androidx.wear.watchface" d "watchface-complications-data-source" w "1.2.1" w "1.3.0-alpha05"
val complications_data_source_ktx = "androidx.wear.watchface" d "watchface-complications-data-source-ktx" w "1.2.1" w "1.3.0-alpha05"
val complications_rendering = "androidx.wear.watchface" d "watchface-complications-rendering" w "1.2.1" w "1.3.0-alpha05"
val editor = "androidx.wear.watchface" d "watchface-editor" w "1.2.1" w "1.3.0-alpha05"
val watchface = "androidx.wear.watchface" d "watchface" w "1.2.1" w "1.3.0-alpha05"
}
}
object WebKit {
val webkit = "androidx.webkit" d "webkit" w "1.12.1" w "1.13.0-alpha03"
}
object Window {
val java = "androidx.window" d "window-java" w "1.3.0" w "1.4.0-beta01"
val rxjava2 = "androidx.window" d "window-rxjava2" w "1.3.0" w "1.4.0-beta01"
val rxjava3 = "androidx.window" d "window-rxjava3" w "1.3.0" w "1.4.0-beta01"
val testing = "androidx.window" d "window-testing" w "1.3.0" w "1.4.0-beta01"
val window = "androidx.window" d "window" w "1.3.0" w "1.4.0-beta01"
}
object Work {
val gcm = "androidx.work" d "work-gcm" w "2.10.0"
val multiprocess = "androidx.work" d "work-multiprocess" w "2.10.0"
val runtime = "androidx.work" d "work-runtime" w "2.10.0"
val runtime_ktx = "androidx.work" d "work-runtime-ktx" w "2.10.0"
val rxjava2 = "androidx.work" d "work-rxjava2" w "2.10.0"
val rxjava3 = "androidx.work" d "work-rxjava3" w "2.10.0"
val testing = "androidx.work" d "work-testing" w "2.10.0"
}
}
object App {
object Cash {
object Copper {
val flow = "app.cash.copper" d "copper-flow" w "1.0.0"
val rx2 = "app.cash.copper" d "copper-rx2" w "1.0.0"
val rx3 = "app.cash.copper" d "copper-rx3" w "1.0.0"
}
object Licensee {
val gradle_plugin = "app.cash.licensee" d "licensee-gradle-plugin" w "1.12.0"
}
object Molecule {
val gradle_plugin = "app.cash.molecule" d "molecule-gradle-plugin" w "1.4.3"
val runtime = "app.cash.molecule" d "molecule-runtime" w "2.0.0"
}
object Turbine {
val turbine = "app.cash.turbine" d "turbine" w "1.2.0"
}
}
}
object Co {
object TouchLab {
val kermit = "co.touchlab" d "kermit" w "2.0.5"
val kermit_bugsnag = "co.touchlab" d "kermit-bugsnag" w "2.0.5"
val kermit_bugsnag_test = "co.touchlab" d "kermit-bugsnag-test" w "1.1.3" w "1.2.0-M2"
val kermit_crashlytics = "co.touchlab" d "kermit-crashlytics" w "2.0.5"
val kermit_crashlytics_test = "co.touchlab" d "kermit-crashlytics-test" w "1.1.3" w "1.2.0-M2"
val kermit_gradle_plugin = "co.touchlab" d "kermit-gradle-plugin" w "1.2.3"
val kermit_test = "co.touchlab" d "kermit-test" w "2.0.5"
val stately_common = "co.touchlab" d "stately-common" w "2.1.0"
val stately_concurrency = "co.touchlab" d "stately-concurrency" w "2.1.0"
val stately_iso_collections = "co.touchlab" d "stately-iso-collections" w "2.1.0"
val stately_isolate = "co.touchlab" d "stately-isolate" w "2.1.0"
}
}
object Com {
object Android {
object Billingclient {
val billing = "com.android.billingclient" d "billing" w "7.1.1"
val billing_ktx = "com.android.billingclient" d "billing-ktx" w "7.1.1"
}
object Installreferrer {
val installreferrer = "com.android.installreferrer" d "installreferrer" w "2.2"
}
object Tools {
val desugar_jdk_libs = "com.android.tools" d "desugar_jdk_libs" w "2.1.4"
val r8 = "com.android.tools" d "r8" w "8.7.18"
object Build {
val gradle = "com.android.tools.build" d "gradle" w "2.3.0" w "8.8.0" w "8.9.0-beta01" w "8.10.0-alpha02"
}
}
}
object ApolloGraphQl {
object Apollo3 {
val apollo_adapters = "com.apollographql.apollo3" d "apollo-adapters" w "3.8.5" w "4.0.0-beta.7"
val apollo_api = "com.apollographql.apollo3" d "apollo-api" w "3.8.5" w "4.0.0-beta.7"
val apollo_ast = "com.apollographql.apollo3" d "apollo-ast" w "3.8.5" w "4.0.0-beta.7"
val apollo_http_cache = "com.apollographql.apollo3" d "apollo-http-cache" w "3.8.5" w "4.0.0-beta.7"
val apollo_idling_resource = "com.apollographql.apollo3" d "apollo-idling-resource" w "3.8.5" w "4.0.0-beta.7"
val apollo_mockserver = "com.apollographql.apollo3" d "apollo-mockserver" w "3.8.5" w "4.0.0-beta.7"
val apollo_normalized_cache = "com.apollographql.apollo3" d "apollo-normalized-cache" w "3.8.5" w "4.0.0-beta.7"
val apollo_normalized_cache_sqlite = "com.apollographql.apollo3" d "apollo-normalized-cache-sqlite" w "3.8.5" w "4.0.0-beta.7"
val apollo_runtime = "com.apollographql.apollo3" d "apollo-runtime" w "3.8.5" w "4.0.0-beta.7"
val apollo_testing_support = "com.apollographql.apollo3" d "apollo-testing-support" w "3.8.5" w "4.0.0-beta.7"
}
}
object GitHub {
object Ajalt {
object Clikt {
val clikt = "com.github.ajalt.clikt" d "clikt" w "5.0.2"
val core = "com.github.ajalt.clikt" d "clikt-core" w "5.0.2"
val markdown = "com.github.ajalt.clikt" d "clikt-markdown" w "5.0.2"
}
object Mordant {
val coroutines = "com.github.ajalt.mordant" d "mordant-coroutines" w "3.0.1"
val graal_ffi = "com.github.ajalt.mordant" d "mordant-graal-ffi"
val jvm_ffm = "com.github.ajalt.mordant" d "mordant-jvm-ffm" w "3.0.1"
val jvm_jna = "com.github.ajalt.mordant" d "mordant-jvm-jna" w "3.0.1"
val markdown = "com.github.ajalt.mordant" d "mordant-markdown" w "3.0.1"
val mordant = "com.github.ajalt.mordant" d "mordant" w "3.0.1"
val omnibus = "com.github.ajalt.mordant" d "mordant-omnibus"
}
}
object ChuckerTeam {
object Chucker {
val library = "com.github.chuckerteam.chucker" d "library" w "4.1.0"
val library_no_op = "com.github.chuckerteam.chucker" d "library-no-op" w "4.1.0"
}
}
}
object Google {
object Accompanist {
val appcompat_theme = "com.google.accompanist" d "accompanist-appcompat-theme" w "0.36.0"
val coil = "com.google.accompanist" d "accompanist-coil" w "0.15.0"
val drawablepainter = "com.google.accompanist" d "accompanist-drawablepainter" w "0.37.0"
val flowlayout = "com.google.accompanist" d "accompanist-flowlayout" w "0.36.0"
val glide = "com.google.accompanist" d "accompanist-glide" w "0.15.0"
val imageloading_core = "com.google.accompanist" d "accompanist-imageloading-core" w "0.15.0"
val insets = "com.google.accompanist" d "accompanist-insets" w "0.30.1" w "0.31.5-beta"
val insets_ui = "com.google.accompanist" d "accompanist-insets-ui" w "0.36.0"
val navigation_animation = "com.google.accompanist" d "accompanist-navigation-animation" w "0.36.0"
val navigation_material = "com.google.accompanist" d "accompanist-navigation-material" w "0.36.0"
val pager = "com.google.accompanist" d "accompanist-pager" w "0.36.0"
val pager_indicators = "com.google.accompanist" d "accompanist-pager-indicators" w "0.36.0"
val permissions = "com.google.accompanist" d "accompanist-permissions" w "0.37.0"
val picasso = "com.google.accompanist" d "accompanist-picasso" w "0.6.2"
val placeholder = "com.google.accompanist" d "accompanist-placeholder" w "0.36.0"
val placeholder_material = "com.google.accompanist" d "accompanist-placeholder-material" w "0.36.0"
val swiperefresh = "com.google.accompanist" d "accompanist-swiperefresh" w "0.36.0"
val systemuicontroller = "com.google.accompanist" d "accompanist-systemuicontroller" w "0.36.0"
val webview = "com.google.accompanist" d "accompanist-webview" w "0.36.0"
}
object Ambient {
object Crossdevice {
val crossdevice = "com.google.ambient.crossdevice" d "crossdevice" w "0.1.0-preview01"
}
}
object Android {
object Fhir {
val data_capture = "com.google.android.fhir" d "data-capture" w "1.2.0"
val engine = "com.google.android.fhir" d "engine" w "1.2.0"
val workflow = "com.google.android.fhir" d "workflow" w "0.1.0-beta01"
}
object Flexbox {
val flexbox = "com.google.android.flexbox" d "flexbox" w "3.0.0"
}
object Gms {
val oss_licenses_plugin = "com.google.android.gms" d "oss-licenses-plugin" w "0.10.6"
val play_services_analytics = "com.google.android.gms" d "play-services-analytics" w "18.1.1"
val play_services_appset = "com.google.android.gms" d "play-services-appset" w "16.1.0"
val play_services_auth = "com.google.android.gms" d "play-services-auth" w "21.3.0"
val play_services_auth_api_phone = "com.google.android.gms" d "play-services-auth-api-phone" w "18.1.0"
val play_services_auth_blockstore = "com.google.android.gms" d "play-services-auth-blockstore" w "16.4.0"
val play_services_awareness = "com.google.android.gms" d "play-services-awareness" w "19.1.0"
val play_services_base = "com.google.android.gms" d "play-services-base" w "18.5.0"
val play_services_basement = "com.google.android.gms" d "play-services-basement" w "18.5.0"
val play_services_cast = "com.google.android.gms" d "play-services-cast" w "22.0.0"
val play_services_cast_framework = "com.google.android.gms" d "play-services-cast-framework" w "22.0.0"
val play_services_cast_tv = "com.google.android.gms" d "play-services-cast-tv" w "21.1.1"
val play_services_cronet = "com.google.android.gms" d "play-services-cronet" w "18.1.0"
val play_services_drive = "com.google.android.gms" d "play-services-drive" w "17.0.0"
val play_services_fido = "com.google.android.gms" d "play-services-fido" w "21.1.0"
val play_services_fitness = "com.google.android.gms" d "play-services-fitness" w "21.2.0"
val play_services_games = "com.google.android.gms" d "play-services-games" w "23.2.0"
val play_services_gcm = "com.google.android.gms" d "play-services-gcm" w "17.0.0"
val play_services_identity = "com.google.android.gms" d "play-services-identity" w "18.1.0"
val play_services_instantapps = "com.google.android.gms" d "play-services-instantapps" w "18.1.0"
val play_services_location = "com.google.android.gms" d "play-services-location" w "21.3.0"
val play_services_maps = "com.google.android.gms" d "play-services-maps" w "19.0.0"
val play_services_mlkit_barcode_scanning = "com.google.android.gms" d "play-services-mlkit-barcode-scanning" w "18.3.1"
val play_services_mlkit_face_detection = "com.google.android.gms" d "play-services-mlkit-face-detection" w "17.1.0"
val play_services_mlkit_image_labeling = "com.google.android.gms" d "play-services-mlkit-image-labeling" w "16.0.8"
val play_services_mlkit_image_labeling_custom = "com.google.android.gms" d "play-services-mlkit-image-labeling-custom" w "16.0.0-beta5"
val play_services_mlkit_language_id = "com.google.android.gms" d "play-services-mlkit-language-id" w "17.0.0"
val play_services_mlkit_text_recognition = "com.google.android.gms" d "play-services-mlkit-text-recognition" w "19.0.1"
val play_services_nearby = "com.google.android.gms" d "play-services-nearby" w "19.3.0"
val play_services_oss_licenses = "com.google.android.gms" d "play-services-oss-licenses" w "17.1.0"
val play_services_panorama = "com.google.android.gms" d "play-services-panorama" w "17.1.0"
val play_services_password_complexity = "com.google.android.gms" d "play-services-password-complexity" w "18.1.0"
val play_services_pay = "com.google.android.gms" d "play-services-pay" w "16.5.0"
val play_services_recaptcha = "com.google.android.gms" d "play-services-recaptcha" w "17.1.0"
val play_services_safetynet = "com.google.android.gms" d "play-services-safetynet" w "18.1.0"
val play_services_tagmanager = "com.google.android.gms" d "play-services-tagmanager" w "18.1.1"
val play_services_tasks = "com.google.android.gms" d "play-services-tasks" w "18.2.0"
val play_services_vision = "com.google.android.gms" d "play-services-vision" w "20.1.3"
val play_services_wallet = "com.google.android.gms" d "play-services-wallet" w "19.4.0"
val play_services_wearable = "com.google.android.gms" d "play-services-wearable" w "19.0.0"
val strict_version_matcher_plugin = "com.google.android.gms" d "strict-version-matcher-plugin" w "1.2.4"
}
object Horologist {
val audio = "com.google.android.horologist" d "horologist-audio" w "0.6.22" w "0.7.8-alpha"
val audio_ui = "com.google.android.horologist" d "horologist-audio-ui" w "0.6.22" w "0.7.8-alpha"
val composables = "com.google.android.horologist" d "horologist-composables" w "0.6.22" w "0.7.8-alpha"
val compose_layout = "com.google.android.horologist" d "horologist-compose-layout" w "0.6.22" w "0.7.8-alpha"
val compose_tools = "com.google.android.horologist" d "horologist-compose-tools" w "0.6.22" w "0.7.8-alpha"
val datalayer = "com.google.android.horologist" d "horologist-datalayer" w "0.6.22" w "0.7.8-alpha"
val media = "com.google.android.horologist" d "horologist-media" w "0.6.22" w "0.7.8-alpha"
val media3_backend = "com.google.android.horologist" d "horologist-media3-backend" w "0.6.22" w "0.7.8-alpha"
val media_data = "com.google.android.horologist" d "horologist-media-data" w "0.6.22" w "0.7.8-alpha"
val media_ui = "com.google.android.horologist" d "horologist-media-ui" w "0.6.22" w "0.7.8-alpha"
val network_awareness = "com.google.android.horologist" d "horologist-network-awareness" w "0.6.22" w "0.7.8-alpha"
val tiles = "com.google.android.horologist" d "horologist-tiles" w "0.6.22" w "0.7.8-alpha"
}
object Libraries {
object Places {
val places = "com.google.android.libraries.places" d "places" w "4.1.0"
}
}
object Material {
val compose_theme_adapter = "com.google.android.material" d "compose-theme-adapter" w "1.2.1"
val compose_theme_adapter_3 = "com.google.android.material" d "compose-theme-adapter-3" w "1.1.1"
val material = "com.google.android.material" d "material" w "1.12.0" w "1.13.0-alpha10"
}
object Play {
val core = "com.google.android.play" d "core" w "1.10.3"
val core_ktx = "com.google.android.play" d "core-ktx" w "1.8.1"
}
object Support {
val wearable = "com.google.android.support" d "wearable" w "2.9.0"
}
object Wearable {
val wearable = "com.google.android.wearable" d "wearable" w "2.9.0"
}
}
object AndroidBrowserHelper {
val androidbrowserhelper = "com.google.androidbrowserhelper" d "androidbrowserhelper" w "2.5.0"
}
object Ar {
val core = "com.google.ar" d "core" w "1.47.0"
object Sceneform {
val animation = "com.google.ar.sceneform" d "animation" w "1.17.1"
val assets = "com.google.ar.sceneform" d "assets" w "1.17.1"
val base = "com.google.ar.sceneform" d "sceneform-base" w "1.17.1"
val core = "com.google.ar.sceneform" d "core" w "1.17.1"
val filament_android = "com.google.ar.sceneform" d "filament-android" w "1.17.1"
val plugin = "com.google.ar.sceneform" d "plugin" w "1.17.1"
val rendering = "com.google.ar.sceneform" d "rendering" w "1.17.1"
object Ux {
val sceneform_ux = "com.google.ar.sceneform.ux" d "sceneform-ux" w "1.17.1"
}
}
}
object Dagger {
val android = "com.google.dagger" d "dagger-android" w "2.55"
val android_processor = "com.google.dagger" d "dagger-android-processor" w "2.55"
val android_support = "com.google.dagger" d "dagger-android-support" w "2.55"
val compiler = "com.google.dagger" d "dagger-compiler" w "2.55"
val dagger = "com.google.dagger" d "dagger" w "2.55"
val grpc_server = "com.google.dagger" d "dagger-grpc-server" w "2.55"
val grpc_server_annotations = "com.google.dagger" d "dagger-grpc-server-annotations" w "2.55"
val grpc_server_processor = "com.google.dagger" d "dagger-grpc-server-processor" w "2.55"
val gwt = "com.google.dagger" d "dagger-gwt" w "2.55"
val hilt_android = "com.google.dagger" d "hilt-android" w "2.55"
val hilt_android_compiler = "com.google.dagger" d "hilt-android-compiler" w "2.55"
val hilt_android_gradle_plugin = "com.google.dagger" d "hilt-android-gradle-plugin" w "2.55"
val hilt_android_testing = "com.google.dagger" d "hilt-android-testing" w "2.55"
val hilt_compiler = "com.google.dagger" d "hilt-compiler" w "2.55"
val producers = "com.google.dagger" d "dagger-producers" w "2.55"
val spi = "com.google.dagger" d "dagger-spi" w "2.55"
}
object Firebase {
val analytics = "com.google.firebase" d "firebase-analytics" w "22.2.0"
val analytics_ktx = "com.google.firebase" d "firebase-analytics-ktx" w "22.2.0"
val appdistribution_gradle = "com.google.firebase" d "firebase-appdistribution-gradle" w "5.1.0"