-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathmaven_install.json
4901 lines (4901 loc) · 314 KB
/
maven_install.json
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
{
"dependency_tree": {
"__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": 2048127206,
"conflict_resolution": {
"junit:junit:4.11": "junit:junit:4.12"
},
"dependencies": [
{
"coord": "androidx.activity:activity:aar:1.0.0",
"dependencies": [
"androidx.lifecycle:lifecycle-common:2.2.0",
"androidx.annotation:annotation:1.1.0",
"androidx.savedstate:savedstate:aar:1.0.0",
"androidx.collection:collection:1.1.0",
"androidx.lifecycle:lifecycle-viewmodel:aar:2.1.0",
"androidx.arch.core:core-common:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:2.2.0",
"androidx.versionedparcelable:versionedparcelable:aar:1.1.0",
"androidx.core:core:aar:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.savedstate:savedstate:aar:1.0.0",
"androidx.lifecycle:lifecycle-viewmodel:aar:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:2.2.0",
"androidx.core:core:aar:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/activity/activity/1.0.0/activity-1.0.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/activity/activity/1.0.0/activity-1.0.0.aar",
"https://maven.google.com/androidx/activity/activity/1.0.0/activity-1.0.0.aar",
"https://repo1.maven.org/maven2/androidx/activity/activity/1.0.0/activity-1.0.0.aar"
],
"sha256": "d1bc9842455c2e534415d88c44df4d52413b478db9093a1ba36324f705f44c3d",
"url": "https://maven.google.com/androidx/activity/activity/1.0.0/activity-1.0.0.aar"
},
{
"coord": "androidx.activity:activity:aar:sources:1.0.0",
"dependencies": [
"androidx.versionedparcelable:versionedparcelable:aar:sources:1.1.0",
"androidx.lifecycle:lifecycle-viewmodel:aar:sources:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:sources:2.2.0",
"androidx.collection:collection:jar:sources:1.1.0",
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.savedstate:savedstate:aar:sources:1.0.0",
"androidx.core:core:aar:sources:1.1.0",
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0"
],
"directDependencies": [
"androidx.lifecycle:lifecycle-viewmodel:aar:sources:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:sources:2.2.0",
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.savedstate:savedstate:aar:sources:1.0.0",
"androidx.core:core:aar:sources:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/activity/activity/1.0.0/activity-1.0.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/activity/activity/1.0.0/activity-1.0.0-sources.jar",
"https://maven.google.com/androidx/activity/activity/1.0.0/activity-1.0.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/activity/activity/1.0.0/activity-1.0.0-sources.jar"
],
"sha256": "602c62707525404ae6c76a6bdf452e1c7f0e039b370f70222f1b5941421ddbd5",
"url": "https://maven.google.com/androidx/activity/activity/1.0.0/activity-1.0.0-sources.jar"
},
{
"coord": "androidx.annotation:annotation:1.1.0",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/maven.google.com/androidx/annotation/annotation/1.1.0/annotation-1.1.0.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/annotation/annotation/1.1.0/annotation-1.1.0.jar",
"https://maven.google.com/androidx/annotation/annotation/1.1.0/annotation-1.1.0.jar",
"https://repo1.maven.org/maven2/androidx/annotation/annotation/1.1.0/annotation-1.1.0.jar"
],
"sha256": "d38d63edb30f1467818d50aaf05f8a692dea8b31392a049bfa991b159ad5b692",
"url": "https://maven.google.com/androidx/annotation/annotation/1.1.0/annotation-1.1.0.jar"
},
{
"coord": "androidx.annotation:annotation:jar:sources:1.1.0",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/maven.google.com/androidx/annotation/annotation/1.1.0/annotation-1.1.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/annotation/annotation/1.1.0/annotation-1.1.0-sources.jar",
"https://maven.google.com/androidx/annotation/annotation/1.1.0/annotation-1.1.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/annotation/annotation/1.1.0/annotation-1.1.0-sources.jar"
],
"sha256": "92bcd2773b5624fd88b7ee21d5685145d7cafed59316c4ce83de33a7b2dd8c02",
"url": "https://maven.google.com/androidx/annotation/annotation/1.1.0/annotation-1.1.0-sources.jar"
},
{
"coord": "androidx.appcompat:appcompat-resources:aar:1.1.0",
"dependencies": [
"androidx.interpolator:interpolator:aar:1.0.0",
"androidx.lifecycle:lifecycle-common:2.2.0",
"androidx.annotation:annotation:1.1.0",
"androidx.collection:collection:1.1.0",
"androidx.vectordrawable:vectordrawable:aar:1.1.0",
"androidx.arch.core:core-common:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:2.2.0",
"androidx.vectordrawable:vectordrawable-animated:aar:1.1.0",
"androidx.versionedparcelable:versionedparcelable:aar:1.1.0",
"androidx.core:core:aar:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.collection:collection:1.1.0",
"androidx.vectordrawable:vectordrawable:aar:1.1.0",
"androidx.vectordrawable:vectordrawable-animated:aar:1.1.0",
"androidx.core:core:aar:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0.aar",
"https://maven.google.com/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0.aar",
"https://repo1.maven.org/maven2/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0.aar"
],
"sha256": "19944d32b46551a17c347e21894b95837fbd7baaafc9e2082794344f222f7361",
"url": "https://maven.google.com/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0.aar"
},
{
"coord": "androidx.appcompat:appcompat-resources:aar:sources:1.1.0",
"dependencies": [
"androidx.versionedparcelable:versionedparcelable:aar:sources:1.1.0",
"androidx.vectordrawable:vectordrawable-animated:aar:sources:1.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:sources:2.2.0",
"androidx.collection:collection:jar:sources:1.1.0",
"androidx.interpolator:interpolator:aar:sources:1.0.0",
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.core:core:aar:sources:1.1.0",
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0",
"androidx.vectordrawable:vectordrawable:aar:sources:1.1.0"
],
"directDependencies": [
"androidx.vectordrawable:vectordrawable-animated:aar:sources:1.1.0",
"androidx.collection:collection:jar:sources:1.1.0",
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.core:core:aar:sources:1.1.0",
"androidx.vectordrawable:vectordrawable:aar:sources:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0-sources.jar",
"https://maven.google.com/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0-sources.jar"
],
"sha256": "d5b641a3df82df177add93944cc38f0009841237760d2f034169251888ebde0b",
"url": "https://maven.google.com/androidx/appcompat/appcompat-resources/1.1.0/appcompat-resources-1.1.0-sources.jar"
},
{
"coord": "androidx.appcompat:appcompat:1.1.0",
"dependencies": [
"androidx.lifecycle:lifecycle-livedata-core:aar:2.1.0",
"androidx.interpolator:interpolator:aar:1.0.0",
"androidx.lifecycle:lifecycle-common:2.2.0",
"androidx.annotation:annotation:1.1.0",
"androidx.savedstate:savedstate:aar:1.0.0",
"androidx.collection:collection:1.1.0",
"androidx.fragment:fragment:aar:1.1.0",
"androidx.lifecycle:lifecycle-viewmodel:aar:2.1.0",
"androidx.vectordrawable:vectordrawable:aar:1.1.0",
"androidx.cursoradapter:cursoradapter:aar:1.0.0",
"androidx.appcompat:appcompat-resources:aar:1.1.0",
"androidx.lifecycle:lifecycle-livedata:aar:2.1.0",
"androidx.customview:customview:aar:1.0.0",
"androidx.activity:activity:aar:1.0.0",
"androidx.arch.core:core-common:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:2.2.0",
"androidx.vectordrawable:vectordrawable-animated:aar:1.1.0",
"androidx.versionedparcelable:versionedparcelable:aar:1.1.0",
"androidx.core:core:aar:1.1.0",
"androidx.viewpager:viewpager:aar:1.0.0",
"androidx.arch.core:core-runtime:aar:2.1.0",
"androidx.loader:loader:aar:1.0.0",
"androidx.drawerlayout:drawerlayout:aar:1.0.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.collection:collection:1.1.0",
"androidx.fragment:fragment:aar:1.1.0",
"androidx.cursoradapter:cursoradapter:aar:1.0.0",
"androidx.appcompat:appcompat-resources:aar:1.1.0",
"androidx.core:core:aar:1.1.0",
"androidx.drawerlayout:drawerlayout:aar:1.0.0"
],
"file": "v1/https/maven.google.com/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0.aar",
"https://maven.google.com/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0.aar",
"https://repo1.maven.org/maven2/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0.aar"
],
"sha256": "8d7299bca44cb3bdf17f5595766acbf459fc81fee223e8686cc6acd3a42ab5c0",
"url": "https://maven.google.com/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0.aar"
},
{
"coord": "androidx.appcompat:appcompat:jar:sources:1.1.0",
"dependencies": [
"androidx.fragment:fragment:aar:sources:1.1.0",
"androidx.versionedparcelable:versionedparcelable:aar:sources:1.1.0",
"androidx.arch.core:core-runtime:aar:sources:2.1.0",
"androidx.vectordrawable:vectordrawable-animated:aar:sources:1.1.0",
"androidx.lifecycle:lifecycle-viewmodel:aar:sources:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:sources:2.2.0",
"androidx.collection:collection:jar:sources:1.1.0",
"androidx.viewpager:viewpager:aar:sources:1.0.0",
"androidx.drawerlayout:drawerlayout:aar:sources:1.0.0",
"androidx.lifecycle:lifecycle-livedata:aar:sources:2.1.0",
"androidx.interpolator:interpolator:aar:sources:1.0.0",
"androidx.cursoradapter:cursoradapter:aar:sources:1.0.0",
"androidx.customview:customview:aar:sources:1.0.0",
"androidx.appcompat:appcompat-resources:aar:sources:1.1.0",
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.savedstate:savedstate:aar:sources:1.0.0",
"androidx.core:core:aar:sources:1.1.0",
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.activity:activity:aar:sources:1.0.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0",
"androidx.loader:loader:aar:sources:1.0.0",
"androidx.lifecycle:lifecycle-livedata-core:aar:sources:2.1.0",
"androidx.vectordrawable:vectordrawable:aar:sources:1.1.0"
],
"directDependencies": [
"androidx.fragment:fragment:aar:sources:1.1.0",
"androidx.collection:collection:jar:sources:1.1.0",
"androidx.drawerlayout:drawerlayout:aar:sources:1.0.0",
"androidx.cursoradapter:cursoradapter:aar:sources:1.0.0",
"androidx.appcompat:appcompat-resources:aar:sources:1.1.0",
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.core:core:aar:sources:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0-sources.jar",
"https://maven.google.com/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0-sources.jar"
],
"sha256": "6d86c69d9c8d853772b1cc851d0aed112deba1ecd3b40b6a39eec84b69f80769",
"url": "https://maven.google.com/androidx/appcompat/appcompat/1.1.0/appcompat-1.1.0-sources.jar"
},
{
"coord": "androidx.arch.core:core-common:2.1.0",
"dependencies": [
"androidx.annotation:annotation:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/arch/core/core-common/2.1.0/core-common-2.1.0.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/arch/core/core-common/2.1.0/core-common-2.1.0.jar",
"https://maven.google.com/androidx/arch/core/core-common/2.1.0/core-common-2.1.0.jar",
"https://repo1.maven.org/maven2/androidx/arch/core/core-common/2.1.0/core-common-2.1.0.jar"
],
"sha256": "fe1237bf029d063e7f29fe39aeaf73ef74c8b0a3658486fc29d3c54326653889",
"url": "https://maven.google.com/androidx/arch/core/core-common/2.1.0/core-common-2.1.0.jar"
},
{
"coord": "androidx.arch.core:core-common:jar:sources:2.1.0",
"dependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/arch/core/core-common/2.1.0/core-common-2.1.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/arch/core/core-common/2.1.0/core-common-2.1.0-sources.jar",
"https://maven.google.com/androidx/arch/core/core-common/2.1.0/core-common-2.1.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/arch/core/core-common/2.1.0/core-common-2.1.0-sources.jar"
],
"sha256": "01ef2736c9b688658d7446e8396099ff0c598d9a7e753131d566f953270c5878",
"url": "https://maven.google.com/androidx/arch/core/core-common/2.1.0/core-common-2.1.0-sources.jar"
},
{
"coord": "androidx.arch.core:core-runtime:aar:2.1.0",
"dependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.arch.core:core-common:2.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.arch.core:core-common:2.1.0"
],
"file": "v1/https/maven.google.com/androidx/arch/core/core-runtime/2.1.0/core-runtime-2.1.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/arch/core/core-runtime/2.1.0/core-runtime-2.1.0.aar",
"https://maven.google.com/androidx/arch/core/core-runtime/2.1.0/core-runtime-2.1.0.aar",
"https://repo1.maven.org/maven2/androidx/arch/core/core-runtime/2.1.0/core-runtime-2.1.0.aar"
],
"sha256": "dd77615bd3dd275afb11b62df25bae46b10b4a117cd37943af45bdcbf8755852",
"url": "https://maven.google.com/androidx/arch/core/core-runtime/2.1.0/core-runtime-2.1.0.aar"
},
{
"coord": "androidx.arch.core:core-runtime:aar:sources:2.1.0",
"dependencies": [
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.arch.core:core-common:jar:sources:2.1.0"
],
"file": "v1/https/maven.google.com/androidx/arch/core/core-runtime/2.1.0/core-runtime-2.1.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/arch/core/core-runtime/2.1.0/core-runtime-2.1.0-sources.jar",
"https://maven.google.com/androidx/arch/core/core-runtime/2.1.0/core-runtime-2.1.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/arch/core/core-runtime/2.1.0/core-runtime-2.1.0-sources.jar"
],
"sha256": "913acdee357814e814745466a46a793e8ad7410086ba4548458b83cd6a98424b",
"url": "https://maven.google.com/androidx/arch/core/core-runtime/2.1.0/core-runtime-2.1.0-sources.jar"
},
{
"coord": "androidx.collection:collection:1.1.0",
"dependencies": [
"androidx.annotation:annotation:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/collection/collection/1.1.0/collection-1.1.0.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/collection/collection/1.1.0/collection-1.1.0.jar",
"https://maven.google.com/androidx/collection/collection/1.1.0/collection-1.1.0.jar",
"https://repo1.maven.org/maven2/androidx/collection/collection/1.1.0/collection-1.1.0.jar"
],
"sha256": "632a0e5407461de774409352940e292a291037724207a787820c77daf7d33b72",
"url": "https://maven.google.com/androidx/collection/collection/1.1.0/collection-1.1.0.jar"
},
{
"coord": "androidx.collection:collection:jar:sources:1.1.0",
"dependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/collection/collection/1.1.0/collection-1.1.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/collection/collection/1.1.0/collection-1.1.0-sources.jar",
"https://maven.google.com/androidx/collection/collection/1.1.0/collection-1.1.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/collection/collection/1.1.0/collection-1.1.0-sources.jar"
],
"sha256": "158ae7efee9c7394a241139ebf220751f8b812eda40269a38ef725dbe784b98d",
"url": "https://maven.google.com/androidx/collection/collection/1.1.0/collection-1.1.0-sources.jar"
},
{
"coord": "androidx.core:core:aar:1.1.0",
"dependencies": [
"androidx.lifecycle:lifecycle-common:2.2.0",
"androidx.annotation:annotation:1.1.0",
"androidx.collection:collection:1.1.0",
"androidx.arch.core:core-common:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:2.2.0",
"androidx.versionedparcelable:versionedparcelable:aar:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.collection:collection:1.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:2.2.0",
"androidx.versionedparcelable:versionedparcelable:aar:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/core/core/1.1.0/core-1.1.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/core/core/1.1.0/core-1.1.0.aar",
"https://maven.google.com/androidx/core/core/1.1.0/core-1.1.0.aar",
"https://repo1.maven.org/maven2/androidx/core/core/1.1.0/core-1.1.0.aar"
],
"sha256": "76c7cfbe596fe3c09a6983bf1c89e889299c08ac9a3b52ce5182a088d056647e",
"url": "https://maven.google.com/androidx/core/core/1.1.0/core-1.1.0.aar"
},
{
"coord": "androidx.core:core:aar:sources:1.1.0",
"dependencies": [
"androidx.versionedparcelable:versionedparcelable:aar:sources:1.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:sources:2.2.0",
"androidx.collection:collection:jar:sources:1.1.0",
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0"
],
"directDependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.collection:collection:jar:sources:1.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:sources:2.2.0",
"androidx.versionedparcelable:versionedparcelable:aar:sources:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/core/core/1.1.0/core-1.1.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/core/core/1.1.0/core-1.1.0-sources.jar",
"https://maven.google.com/androidx/core/core/1.1.0/core-1.1.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/core/core/1.1.0/core-1.1.0-sources.jar"
],
"sha256": "9677b5fe2d1b444a68af62212e99075a8cc39045f1d4821b35c83d13c8aaf04e",
"url": "https://maven.google.com/androidx/core/core/1.1.0/core-1.1.0-sources.jar"
},
{
"coord": "androidx.cursoradapter:cursoradapter:aar:1.0.0",
"dependencies": [
"androidx.annotation:annotation:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.aar",
"https://maven.google.com/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.aar",
"https://repo1.maven.org/maven2/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.aar"
],
"sha256": "a81c8fe78815fa47df5b749deb52727ad11f9397da58b16017f4eb2c11e28564",
"url": "https://maven.google.com/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0.aar"
},
{
"coord": "androidx.cursoradapter:cursoradapter:aar:sources:1.0.0",
"dependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0-sources.jar",
"https://maven.google.com/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0-sources.jar"
],
"sha256": "99b72a3aec8c9edfd9de20f5913ce4c413bca2f0cf9877b504e26aa03ef50323",
"url": "https://maven.google.com/androidx/cursoradapter/cursoradapter/1.0.0/cursoradapter-1.0.0-sources.jar"
},
{
"coord": "androidx.customview:customview:aar:1.0.0",
"dependencies": [
"androidx.lifecycle:lifecycle-common:2.2.0",
"androidx.annotation:annotation:1.1.0",
"androidx.collection:collection:1.1.0",
"androidx.arch.core:core-common:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:2.2.0",
"androidx.versionedparcelable:versionedparcelable:aar:1.1.0",
"androidx.core:core:aar:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.core:core:aar:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/customview/customview/1.0.0/customview-1.0.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/customview/customview/1.0.0/customview-1.0.0.aar",
"https://maven.google.com/androidx/customview/customview/1.0.0/customview-1.0.0.aar",
"https://repo1.maven.org/maven2/androidx/customview/customview/1.0.0/customview-1.0.0.aar"
],
"sha256": "20e5b8f6526a34595a604f56718da81167c0b40a7a94a57daa355663f2594df2",
"url": "https://maven.google.com/androidx/customview/customview/1.0.0/customview-1.0.0.aar"
},
{
"coord": "androidx.customview:customview:aar:sources:1.0.0",
"dependencies": [
"androidx.versionedparcelable:versionedparcelable:aar:sources:1.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:sources:2.2.0",
"androidx.collection:collection:jar:sources:1.1.0",
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.core:core:aar:sources:1.1.0",
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0"
],
"directDependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.core:core:aar:sources:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/customview/customview/1.0.0/customview-1.0.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/customview/customview/1.0.0/customview-1.0.0-sources.jar",
"https://maven.google.com/androidx/customview/customview/1.0.0/customview-1.0.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/customview/customview/1.0.0/customview-1.0.0-sources.jar"
],
"sha256": "87c910a3c3c5d1e4881ebcc7a8f7fced04fdad6ff1f8e5ff7f100adf62df1787",
"url": "https://maven.google.com/androidx/customview/customview/1.0.0/customview-1.0.0-sources.jar"
},
{
"coord": "androidx.drawerlayout:drawerlayout:aar:1.0.0",
"dependencies": [
"androidx.lifecycle:lifecycle-common:2.2.0",
"androidx.annotation:annotation:1.1.0",
"androidx.collection:collection:1.1.0",
"androidx.customview:customview:aar:1.0.0",
"androidx.arch.core:core-common:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:2.2.0",
"androidx.versionedparcelable:versionedparcelable:aar:1.1.0",
"androidx.core:core:aar:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.core:core:aar:1.1.0",
"androidx.customview:customview:aar:1.0.0"
],
"file": "v1/https/maven.google.com/androidx/drawerlayout/drawerlayout/1.0.0/drawerlayout-1.0.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/drawerlayout/drawerlayout/1.0.0/drawerlayout-1.0.0.aar",
"https://maven.google.com/androidx/drawerlayout/drawerlayout/1.0.0/drawerlayout-1.0.0.aar",
"https://repo1.maven.org/maven2/androidx/drawerlayout/drawerlayout/1.0.0/drawerlayout-1.0.0.aar"
],
"sha256": "9402442cdc5a43cf62fb14f8cf98c63342d4d9d9b805c8033c6cf7e802749ac1",
"url": "https://maven.google.com/androidx/drawerlayout/drawerlayout/1.0.0/drawerlayout-1.0.0.aar"
},
{
"coord": "androidx.drawerlayout:drawerlayout:aar:sources:1.0.0",
"dependencies": [
"androidx.versionedparcelable:versionedparcelable:aar:sources:1.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:sources:2.2.0",
"androidx.collection:collection:jar:sources:1.1.0",
"androidx.customview:customview:aar:sources:1.0.0",
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.core:core:aar:sources:1.1.0",
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0"
],
"directDependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.core:core:aar:sources:1.1.0",
"androidx.customview:customview:aar:sources:1.0.0"
],
"file": "v1/https/maven.google.com/androidx/drawerlayout/drawerlayout/1.0.0/drawerlayout-1.0.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/drawerlayout/drawerlayout/1.0.0/drawerlayout-1.0.0-sources.jar",
"https://maven.google.com/androidx/drawerlayout/drawerlayout/1.0.0/drawerlayout-1.0.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/drawerlayout/drawerlayout/1.0.0/drawerlayout-1.0.0-sources.jar"
],
"sha256": "3702e90acc99c16d192eada8467aea9595d1c3fff3e2155ffe66e5f31e334513",
"url": "https://maven.google.com/androidx/drawerlayout/drawerlayout/1.0.0/drawerlayout-1.0.0-sources.jar"
},
{
"coord": "androidx.fragment:fragment:aar:1.1.0",
"dependencies": [
"androidx.lifecycle:lifecycle-livedata-core:aar:2.1.0",
"androidx.lifecycle:lifecycle-common:2.2.0",
"androidx.annotation:annotation:1.1.0",
"androidx.savedstate:savedstate:aar:1.0.0",
"androidx.collection:collection:1.1.0",
"androidx.lifecycle:lifecycle-viewmodel:aar:2.1.0",
"androidx.lifecycle:lifecycle-livedata:aar:2.1.0",
"androidx.customview:customview:aar:1.0.0",
"androidx.activity:activity:aar:1.0.0",
"androidx.arch.core:core-common:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:2.2.0",
"androidx.versionedparcelable:versionedparcelable:aar:1.1.0",
"androidx.core:core:aar:1.1.0",
"androidx.viewpager:viewpager:aar:1.0.0",
"androidx.arch.core:core-runtime:aar:2.1.0",
"androidx.loader:loader:aar:1.0.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.collection:collection:1.1.0",
"androidx.lifecycle:lifecycle-viewmodel:aar:2.1.0",
"androidx.activity:activity:aar:1.0.0",
"androidx.core:core:aar:1.1.0",
"androidx.viewpager:viewpager:aar:1.0.0",
"androidx.loader:loader:aar:1.0.0"
],
"file": "v1/https/maven.google.com/androidx/fragment/fragment/1.1.0/fragment-1.1.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/fragment/fragment/1.1.0/fragment-1.1.0.aar",
"https://maven.google.com/androidx/fragment/fragment/1.1.0/fragment-1.1.0.aar",
"https://repo1.maven.org/maven2/androidx/fragment/fragment/1.1.0/fragment-1.1.0.aar"
],
"sha256": "a14c8b8f2153f128e800fbd266a6beab1c283982a29ec570d2cc05d307d81496",
"url": "https://maven.google.com/androidx/fragment/fragment/1.1.0/fragment-1.1.0.aar"
},
{
"coord": "androidx.fragment:fragment:aar:sources:1.1.0",
"dependencies": [
"androidx.versionedparcelable:versionedparcelable:aar:sources:1.1.0",
"androidx.arch.core:core-runtime:aar:sources:2.1.0",
"androidx.lifecycle:lifecycle-viewmodel:aar:sources:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:sources:2.2.0",
"androidx.collection:collection:jar:sources:1.1.0",
"androidx.viewpager:viewpager:aar:sources:1.0.0",
"androidx.lifecycle:lifecycle-livedata:aar:sources:2.1.0",
"androidx.customview:customview:aar:sources:1.0.0",
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.savedstate:savedstate:aar:sources:1.0.0",
"androidx.core:core:aar:sources:1.1.0",
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.activity:activity:aar:sources:1.0.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0",
"androidx.loader:loader:aar:sources:1.0.0",
"androidx.lifecycle:lifecycle-livedata-core:aar:sources:2.1.0"
],
"directDependencies": [
"androidx.lifecycle:lifecycle-viewmodel:aar:sources:2.1.0",
"androidx.collection:collection:jar:sources:1.1.0",
"androidx.viewpager:viewpager:aar:sources:1.0.0",
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.core:core:aar:sources:1.1.0",
"androidx.activity:activity:aar:sources:1.0.0",
"androidx.loader:loader:aar:sources:1.0.0"
],
"file": "v1/https/maven.google.com/androidx/fragment/fragment/1.1.0/fragment-1.1.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/fragment/fragment/1.1.0/fragment-1.1.0-sources.jar",
"https://maven.google.com/androidx/fragment/fragment/1.1.0/fragment-1.1.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/fragment/fragment/1.1.0/fragment-1.1.0-sources.jar"
],
"sha256": "b28eee487b08d7896d3e18f2b09f9dc128d5fa88c0f1e52416670d0e601763bf",
"url": "https://maven.google.com/androidx/fragment/fragment/1.1.0/fragment-1.1.0-sources.jar"
},
{
"coord": "androidx.interpolator:interpolator:aar:1.0.0",
"dependencies": [
"androidx.annotation:annotation:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.aar",
"https://maven.google.com/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.aar",
"https://repo1.maven.org/maven2/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.aar"
],
"sha256": "33193135a64fe21fa2c35eec6688f1a76e512606c0fc83dc1b689e37add7732a",
"url": "https://maven.google.com/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0.aar"
},
{
"coord": "androidx.interpolator:interpolator:aar:sources:1.0.0",
"dependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0-sources.jar",
"https://maven.google.com/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0-sources.jar"
],
"sha256": "fa13ada71fe7bd9461f622f418e7c16a18e85da7708fb505c75229a9b8830345",
"url": "https://maven.google.com/androidx/interpolator/interpolator/1.0.0/interpolator-1.0.0-sources.jar"
},
{
"coord": "androidx.lifecycle:lifecycle-common-java8:2.2.0",
"dependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.lifecycle:lifecycle-common:2.2.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.lifecycle:lifecycle-common:2.2.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-common-java8/2.2.0/lifecycle-common-java8-2.2.0.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-common-java8/2.2.0/lifecycle-common-java8-2.2.0.jar",
"https://maven.google.com/androidx/lifecycle/lifecycle-common-java8/2.2.0/lifecycle-common-java8-2.2.0.jar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-common-java8/2.2.0/lifecycle-common-java8-2.2.0.jar"
],
"sha256": "a1ec63c1bb973443cb731d78ec336c5e20e7ee35c89cbb32d36f92c55bb02542",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-common-java8/2.2.0/lifecycle-common-java8-2.2.0.jar"
},
{
"coord": "androidx.lifecycle:lifecycle-common-java8:jar:sources:2.2.0",
"dependencies": [
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0",
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-common-java8/2.2.0/lifecycle-common-java8-2.2.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-common-java8/2.2.0/lifecycle-common-java8-2.2.0-sources.jar",
"https://maven.google.com/androidx/lifecycle/lifecycle-common-java8/2.2.0/lifecycle-common-java8-2.2.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-common-java8/2.2.0/lifecycle-common-java8-2.2.0-sources.jar"
],
"sha256": "f6dc13cca0d461dd9ac0c515ede93b45f2209545cb75e658040ae7df5dc80823",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-common-java8/2.2.0/lifecycle-common-java8-2.2.0-sources.jar"
},
{
"coord": "androidx.lifecycle:lifecycle-common:2.2.0",
"dependencies": [
"androidx.annotation:annotation:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-common/2.2.0/lifecycle-common-2.2.0.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-common/2.2.0/lifecycle-common-2.2.0.jar",
"https://maven.google.com/androidx/lifecycle/lifecycle-common/2.2.0/lifecycle-common-2.2.0.jar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-common/2.2.0/lifecycle-common-2.2.0.jar"
],
"sha256": "63898dabf7cfe5ec5d7ed8b8c2564c1427be876e1496ead95c2703cf59d3734b",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-common/2.2.0/lifecycle-common-2.2.0.jar"
},
{
"coord": "androidx.lifecycle:lifecycle-common:jar:sources:2.2.0",
"dependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-common/2.2.0/lifecycle-common-2.2.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-common/2.2.0/lifecycle-common-2.2.0-sources.jar",
"https://maven.google.com/androidx/lifecycle/lifecycle-common/2.2.0/lifecycle-common-2.2.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-common/2.2.0/lifecycle-common-2.2.0-sources.jar"
],
"sha256": "faa1efdbf3fb66de1cd40132c9ae0f642e7ffb922d21fb3acf171903aeb8e872",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-common/2.2.0/lifecycle-common-2.2.0-sources.jar"
},
{
"coord": "androidx.lifecycle:lifecycle-livedata-core:aar:2.1.0",
"dependencies": [
"androidx.arch.core:core-runtime:aar:2.1.0",
"androidx.annotation:annotation:1.1.0",
"androidx.lifecycle:lifecycle-common:2.2.0",
"androidx.arch.core:core-common:2.1.0"
],
"directDependencies": [
"androidx.arch.core:core-common:2.1.0",
"androidx.arch.core:core-runtime:aar:2.1.0",
"androidx.lifecycle:lifecycle-common:2.2.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-livedata-core/2.1.0/lifecycle-livedata-core-2.1.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-livedata-core/2.1.0/lifecycle-livedata-core-2.1.0.aar",
"https://maven.google.com/androidx/lifecycle/lifecycle-livedata-core/2.1.0/lifecycle-livedata-core-2.1.0.aar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-livedata-core/2.1.0/lifecycle-livedata-core-2.1.0.aar"
],
"sha256": "a150743e86c30eddf1660ad454b1f86041efdefcd1a039320c4c26db87f7119a",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-livedata-core/2.1.0/lifecycle-livedata-core-2.1.0.aar"
},
{
"coord": "androidx.lifecycle:lifecycle-livedata-core:aar:sources:2.1.0",
"dependencies": [
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0",
"androidx.arch.core:core-runtime:aar:sources:2.1.0",
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"directDependencies": [
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.arch.core:core-runtime:aar:sources:2.1.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-livedata-core/2.1.0/lifecycle-livedata-core-2.1.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-livedata-core/2.1.0/lifecycle-livedata-core-2.1.0-sources.jar",
"https://maven.google.com/androidx/lifecycle/lifecycle-livedata-core/2.1.0/lifecycle-livedata-core-2.1.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-livedata-core/2.1.0/lifecycle-livedata-core-2.1.0-sources.jar"
],
"sha256": "8141ce33501eaed19d17ac531bd4076da65e06076d46cbe9c1540806e8aa5772",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-livedata-core/2.1.0/lifecycle-livedata-core-2.1.0-sources.jar"
},
{
"coord": "androidx.lifecycle:lifecycle-livedata:aar:2.1.0",
"dependencies": [
"androidx.lifecycle:lifecycle-livedata-core:aar:2.1.0",
"androidx.lifecycle:lifecycle-common:2.2.0",
"androidx.annotation:annotation:1.1.0",
"androidx.arch.core:core-common:2.1.0",
"androidx.arch.core:core-runtime:aar:2.1.0"
],
"directDependencies": [
"androidx.arch.core:core-common:2.1.0",
"androidx.arch.core:core-runtime:aar:2.1.0",
"androidx.lifecycle:lifecycle-livedata-core:aar:2.1.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-livedata/2.1.0/lifecycle-livedata-2.1.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-livedata/2.1.0/lifecycle-livedata-2.1.0.aar",
"https://maven.google.com/androidx/lifecycle/lifecycle-livedata/2.1.0/lifecycle-livedata-2.1.0.aar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-livedata/2.1.0/lifecycle-livedata-2.1.0.aar"
],
"sha256": "242e446bed3db36f0df0aab0cb7f91060bd2dab7adcad1117adf54e724cd1d26",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-livedata/2.1.0/lifecycle-livedata-2.1.0.aar"
},
{
"coord": "androidx.lifecycle:lifecycle-livedata:aar:sources:2.1.0",
"dependencies": [
"androidx.arch.core:core-runtime:aar:sources:2.1.0",
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0",
"androidx.lifecycle:lifecycle-livedata-core:aar:sources:2.1.0"
],
"directDependencies": [
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.arch.core:core-runtime:aar:sources:2.1.0",
"androidx.lifecycle:lifecycle-livedata-core:aar:sources:2.1.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-livedata/2.1.0/lifecycle-livedata-2.1.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-livedata/2.1.0/lifecycle-livedata-2.1.0-sources.jar",
"https://maven.google.com/androidx/lifecycle/lifecycle-livedata/2.1.0/lifecycle-livedata-2.1.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-livedata/2.1.0/lifecycle-livedata-2.1.0-sources.jar"
],
"sha256": "f774d6018dbc7f56c278130122e608d96304f8bd78e4778d44855a01f5982d13",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-livedata/2.1.0/lifecycle-livedata-2.1.0-sources.jar"
},
{
"coord": "androidx.lifecycle:lifecycle-runtime:2.2.0",
"dependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.lifecycle:lifecycle-common:2.2.0",
"androidx.arch.core:core-common:2.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.arch.core:core-common:2.1.0",
"androidx.lifecycle:lifecycle-common:2.2.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-runtime/2.2.0/lifecycle-runtime-2.2.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-runtime/2.2.0/lifecycle-runtime-2.2.0.aar",
"https://maven.google.com/androidx/lifecycle/lifecycle-runtime/2.2.0/lifecycle-runtime-2.2.0.aar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-runtime/2.2.0/lifecycle-runtime-2.2.0.aar"
],
"sha256": "2f866c07a1f33a8c9bb69a9545d4f20b4f0628cd0a155432386d7cb081e1e0bc",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-runtime/2.2.0/lifecycle-runtime-2.2.0.aar"
},
{
"coord": "androidx.lifecycle:lifecycle-runtime:aar:sources:2.2.0",
"dependencies": [
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0",
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-runtime/2.2.0/lifecycle-runtime-2.2.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-runtime/2.2.0/lifecycle-runtime-2.2.0-sources.jar",
"https://maven.google.com/androidx/lifecycle/lifecycle-runtime/2.2.0/lifecycle-runtime-2.2.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-runtime/2.2.0/lifecycle-runtime-2.2.0-sources.jar"
],
"sha256": "3b7867671a7875525358a71e81adf66ba4d2a45cf2b53ffe5ad0350e3ea06362",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-runtime/2.2.0/lifecycle-runtime-2.2.0-sources.jar"
},
{
"coord": "androidx.lifecycle:lifecycle-service:2.2.0",
"dependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:2.2.0",
"androidx.lifecycle:lifecycle-common:2.2.0",
"androidx.arch.core:core-common:2.1.0"
],
"directDependencies": [
"androidx.lifecycle:lifecycle-runtime:aar:2.2.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-service/2.2.0/lifecycle-service-2.2.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-service/2.2.0/lifecycle-service-2.2.0.aar",
"https://maven.google.com/androidx/lifecycle/lifecycle-service/2.2.0/lifecycle-service-2.2.0.aar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-service/2.2.0/lifecycle-service-2.2.0.aar"
],
"sha256": "ca2801ffc069555afed8eddd2292130f436956452bc8bbad30fb56f8e4e382a0",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-service/2.2.0/lifecycle-service-2.2.0.aar"
},
{
"coord": "androidx.lifecycle:lifecycle-service:aar:sources:2.2.0",
"dependencies": [
"androidx.lifecycle:lifecycle-runtime:aar:sources:2.2.0",
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0",
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"directDependencies": [
"androidx.lifecycle:lifecycle-runtime:aar:sources:2.2.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-service/2.2.0/lifecycle-service-2.2.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-service/2.2.0/lifecycle-service-2.2.0-sources.jar",
"https://maven.google.com/androidx/lifecycle/lifecycle-service/2.2.0/lifecycle-service-2.2.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-service/2.2.0/lifecycle-service-2.2.0-sources.jar"
],
"sha256": "672b07e4607fc897672d2794af751724306d418e7892b636002be8e3b78fc08c",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-service/2.2.0/lifecycle-service-2.2.0-sources.jar"
},
{
"coord": "androidx.lifecycle:lifecycle-viewmodel:aar:2.1.0",
"dependencies": [
"androidx.annotation:annotation:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-viewmodel/2.1.0/lifecycle-viewmodel-2.1.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-viewmodel/2.1.0/lifecycle-viewmodel-2.1.0.aar",
"https://maven.google.com/androidx/lifecycle/lifecycle-viewmodel/2.1.0/lifecycle-viewmodel-2.1.0.aar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-viewmodel/2.1.0/lifecycle-viewmodel-2.1.0.aar"
],
"sha256": "ba55fb7ac1b2828d5327cda8acf7085d990b2b4c43ef336caa67686249b8523d",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-viewmodel/2.1.0/lifecycle-viewmodel-2.1.0.aar"
},
{
"coord": "androidx.lifecycle:lifecycle-viewmodel:aar:sources:2.1.0",
"dependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0"
],
"file": "v1/https/maven.google.com/androidx/lifecycle/lifecycle-viewmodel/2.1.0/lifecycle-viewmodel-2.1.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/lifecycle/lifecycle-viewmodel/2.1.0/lifecycle-viewmodel-2.1.0-sources.jar",
"https://maven.google.com/androidx/lifecycle/lifecycle-viewmodel/2.1.0/lifecycle-viewmodel-2.1.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/lifecycle/lifecycle-viewmodel/2.1.0/lifecycle-viewmodel-2.1.0-sources.jar"
],
"sha256": "f3daf886654c397ec01c400b1e1c6e4a271b904f1ae4d1cbbec8da54977275f3",
"url": "https://maven.google.com/androidx/lifecycle/lifecycle-viewmodel/2.1.0/lifecycle-viewmodel-2.1.0-sources.jar"
},
{
"coord": "androidx.loader:loader:aar:1.0.0",
"dependencies": [
"androidx.lifecycle:lifecycle-livedata-core:aar:2.1.0",
"androidx.lifecycle:lifecycle-common:2.2.0",
"androidx.annotation:annotation:1.1.0",
"androidx.collection:collection:1.1.0",
"androidx.lifecycle:lifecycle-viewmodel:aar:2.1.0",
"androidx.lifecycle:lifecycle-livedata:aar:2.1.0",
"androidx.arch.core:core-common:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:2.2.0",
"androidx.versionedparcelable:versionedparcelable:aar:1.1.0",
"androidx.core:core:aar:1.1.0",
"androidx.arch.core:core-runtime:aar:2.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:1.1.0",
"androidx.core:core:aar:1.1.0",
"androidx.lifecycle:lifecycle-livedata:aar:2.1.0",
"androidx.lifecycle:lifecycle-viewmodel:aar:2.1.0"
],
"file": "v1/https/maven.google.com/androidx/loader/loader/1.0.0/loader-1.0.0.aar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/loader/loader/1.0.0/loader-1.0.0.aar",
"https://maven.google.com/androidx/loader/loader/1.0.0/loader-1.0.0.aar",
"https://repo1.maven.org/maven2/androidx/loader/loader/1.0.0/loader-1.0.0.aar"
],
"sha256": "11f735cb3b55c458d470bed9e25254375b518b4b1bad6926783a7026db0f5025",
"url": "https://maven.google.com/androidx/loader/loader/1.0.0/loader-1.0.0.aar"
},
{
"coord": "androidx.loader:loader:aar:sources:1.0.0",
"dependencies": [
"androidx.versionedparcelable:versionedparcelable:aar:sources:1.1.0",
"androidx.arch.core:core-runtime:aar:sources:2.1.0",
"androidx.lifecycle:lifecycle-viewmodel:aar:sources:2.1.0",
"androidx.lifecycle:lifecycle-runtime:aar:sources:2.2.0",
"androidx.collection:collection:jar:sources:1.1.0",
"androidx.lifecycle:lifecycle-livedata:aar:sources:2.1.0",
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.core:core:aar:sources:1.1.0",
"androidx.arch.core:core-common:jar:sources:2.1.0",
"androidx.lifecycle:lifecycle-common:jar:sources:2.2.0",
"androidx.lifecycle:lifecycle-livedata-core:aar:sources:2.1.0"
],
"directDependencies": [
"androidx.annotation:annotation:jar:sources:1.1.0",
"androidx.core:core:aar:sources:1.1.0",
"androidx.lifecycle:lifecycle-livedata:aar:sources:2.1.0",
"androidx.lifecycle:lifecycle-viewmodel:aar:sources:2.1.0"
],
"file": "v1/https/maven.google.com/androidx/loader/loader/1.0.0/loader-1.0.0-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/loader/loader/1.0.0/loader-1.0.0-sources.jar",
"https://maven.google.com/androidx/loader/loader/1.0.0/loader-1.0.0-sources.jar",
"https://repo1.maven.org/maven2/androidx/loader/loader/1.0.0/loader-1.0.0-sources.jar"
],
"sha256": "efcbafaac8fc06bd5b162b57ac1e146d11919b79dea2202339470c931cecdc67",
"url": "https://maven.google.com/androidx/loader/loader/1.0.0/loader-1.0.0-sources.jar"
},
{
"coord": "androidx.room:room-common:2.2.3",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/maven.google.com/androidx/room/room-common/2.2.3/room-common-2.2.3.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/room/room-common/2.2.3/room-common-2.2.3.jar",
"https://maven.google.com/androidx/room/room-common/2.2.3/room-common-2.2.3.jar",
"https://repo1.maven.org/maven2/androidx/room/room-common/2.2.3/room-common-2.2.3.jar"
],
"sha256": "2b130dd4a1d3d91b6701ed33096d389f01c4fc1197a7acd6b91724ddc5acfc06",
"url": "https://maven.google.com/androidx/room/room-common/2.2.3/room-common-2.2.3.jar"
},
{
"coord": "androidx.room:room-common:jar:sources:2.2.3",
"dependencies": [],
"directDependencies": [],
"file": "v1/https/maven.google.com/androidx/room/room-common/2.2.3/room-common-2.2.3-sources.jar",
"mirror_urls": [
"https://jcenter.bintray.com/androidx/room/room-common/2.2.3/room-common-2.2.3-sources.jar",
"https://maven.google.com/androidx/room/room-common/2.2.3/room-common-2.2.3-sources.jar",