-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
1675 lines (1675 loc) · 150 KB
/
.gitignore
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
/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock
/.gradle/7.1/dependencies-accessors/gc.properties
/.gradle/7.1/executionHistory/executionHistory.bin
/.gradle/7.1/executionHistory/executionHistory.lock
/.gradle/7.1/fileChanges/last-build.bin
/.gradle/7.1/fileHashes/fileHashes.bin
/.gradle/7.1/fileHashes/fileHashes.lock
/.gradle/7.1/fileHashes/resourceHashesCache.bin
/.gradle/7.1/gc.properties
/appcore/build/.transforms/6c945c7a503f6c2a37195abd62b10afc/transformed/classes/classes.dex
/appcore/build/.transforms/6c945c7a503f6c2a37195abd62b10afc/results.bin
/appcore/build/.transforms/627ca5f7a15ff98e36e670a3faf23bca/transformed/classes/classes.dex
/appcore/build/.transforms/627ca5f7a15ff98e36e670a3faf23bca/results.bin
/appcore/build/generated/data_binding_base_class_source_out/debug/out/com/bapidas/news/appcore/databinding/DummLayoutBinding.java
/appcore/build/generated/data_binding_base_class_source_out/debug/out/com/bapidas/news/appcore/databinding/DummyItemBinding.java
/appcore/build/generated/data_binding_trigger/debug/com/bapidas/news/appcore/DataBindingTriggerClass.java
/appcore/build/generated/source/buildConfig/debug/com/bapidas/news/appcore/BuildConfig.java
/appcore/build/generated/source/kapt/debug/androidx/databinding/library/baseAdapters/BR.java
/appcore/build/generated/source/kapt/debug/androidx/databinding/DataBindingComponent.java
/appcore/build/generated/source/kapt/debug/com/bapidas/news/appcore/activity/BaseActivity_MembersInjector.java
/appcore/build/generated/source/kapt/debug/com/bapidas/news/appcore/activity/BaseActivityModule_Companion_ProvideViewModelProviderFactory.java
/appcore/build/generated/source/kapt/debug/com/bapidas/news/appcore/activity/BaseActivityModule_ProvideViewModelProviderFactory.java
/appcore/build/generated/source/kapt/debug/com/bapidas/news/appcore/databinding/DummLayoutBindingImpl.java
/appcore/build/generated/source/kapt/debug/com/bapidas/news/appcore/databinding/DummyItemBindingImpl.java
/appcore/build/generated/source/kapt/debug/com/bapidas/news/appcore/fragment/BaseFragment_MembersInjector.java
/appcore/build/generated/source/kapt/debug/com/bapidas/news/appcore/fragment/BaseFragmentModule_Companion_ProvideViewModelProviderFactory.java
/appcore/build/generated/source/kapt/debug/com/bapidas/news/appcore/fragment/BaseFragmentModule_ProvideViewModelProviderFactory.java
/appcore/build/generated/source/kapt/debug/com/bapidas/news/appcore/viewmodel/factory/ActivityViewModelFactory_Factory.java
/appcore/build/generated/source/kapt/debug/com/bapidas/news/appcore/viewmodel/factory/FragmentViewModelFactory_Factory.java
/appcore/build/generated/source/kapt/debug/com/bapidas/news/appcore/worker/WorkerInjectorFactory_Factory.java
/appcore/build/generated/source/kapt/debug/com/bapidas/news/appcore/BR.java
/appcore/build/generated/source/kapt/debug/com/bapidas/news/appcore/DataBinderMapperImpl.java
/appcore/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml
/appcore/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json
/appcore/build/intermediates/aar_main_jar/debug/classes.jar
/appcore/build/intermediates/aar_metadata/debug/aar-metadata.properties
/appcore/build/intermediates/annotation_processor_list/debug/annotationProcessors.json
/appcore/build/intermediates/annotations_typedef_file/debug/typedefs.txt
/appcore/build/intermediates/compile_library_classes_jar/debug/classes.jar
/appcore/build/intermediates/compile_r_class_jar/debug/R.jar
/appcore/build/intermediates/compile_symbol_list/debug/R.txt
/appcore/build/intermediates/compiled_local_resources/debug/out/drawable_bg_circle_transparent_arrow.xml.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/drawable_bg_circle_transparent_web.xml.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/drawable_bg_gradient.xml.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/drawable_cbsn_fusion.jpg.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/drawable_ic_arrow_back_white_42dp.xml.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/drawable_ic_baseline_language_24.xml.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/font_roboto_slab_black.ttf.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/font_roboto_slab_bold.ttf.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/font_roboto_slab_extra_bold.ttf.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/font_roboto_slab_extra_light.ttf.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/font_roboto_slab_light.ttf.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/font_roboto_slab_medium.ttf.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/font_roboto_slab_regular.ttf.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/font_roboto_slab_semi_bold.ttf.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/font_roboto_slab_thin.ttf.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/layout_dumm_layout.xml.flat
/appcore/build/intermediates/compiled_local_resources/debug/out/layout_dummy_item.xml.flat
/appcore/build/intermediates/data_binding_artifact/debug/kaptDebugKotlin/com.bapidas.news.appcore-br.bin
/appcore/build/intermediates/data_binding_artifact/debug/kaptDebugKotlin/com.bapidas.news.appcore-setter_store.json
/appcore/build/intermediates/data_binding_base_class_log_artifact/debug/out/com.bapidas.news.appcore-binding_classes.json
/appcore/build/intermediates/data_binding_base_class_logs_dependency_artifacts/debug/androidx.databinding.library.baseAdapters-binding_classes.json
/appcore/build/intermediates/data_binding_dependency_artifacts/debug/androidx.databinding.library.baseAdapters-br.bin
/appcore/build/intermediates/data_binding_dependency_artifacts/debug/androidx.databinding.library.baseAdapters-setter_store.json
/appcore/build/intermediates/data_binding_export_class_list/debug/kaptDebugKotlin
/appcore/build/intermediates/data_binding_layout_info_type_package/debug/out/dumm_layout-layout.xml
/appcore/build/intermediates/data_binding_layout_info_type_package/debug/out/dummy_item-layout.xml
/appcore/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json
/appcore/build/intermediates/incremental/debug-mergeJavaRes/merge-state
/appcore/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
/appcore/build/intermediates/incremental/mergeDebugShaders/merger.xml
/appcore/build/intermediates/incremental/packageDebugAssets/merger.xml
/appcore/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml
/appcore/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/dumm_layout.xml
/appcore/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/dummy_item.xml
/appcore/build/intermediates/incremental/packageDebugResources/compile-file-map.properties
/appcore/build/intermediates/incremental/packageDebugResources/merger.xml
/appcore/build/intermediates/javac/debug/classes/androidx/databinding/library/baseAdapters/BR.class
/appcore/build/intermediates/javac/debug/classes/androidx/databinding/DataBindingComponent.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/activity/BaseActivity_MembersInjector.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/activity/BaseActivityModule_Companion_ProvideViewModelProviderFactory.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/activity/BaseActivityModule_ProvideViewModelProviderFactory.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/databinding/DummLayoutBinding.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/databinding/DummLayoutBindingImpl.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/databinding/DummyItemBinding.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/databinding/DummyItemBindingImpl.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/fragment/BaseFragment_MembersInjector.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/fragment/BaseFragmentModule_Companion_ProvideViewModelProviderFactory.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/fragment/BaseFragmentModule_ProvideViewModelProviderFactory.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/viewmodel/factory/ActivityViewModelFactory_Factory.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/viewmodel/factory/FragmentViewModelFactory_Factory.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/worker/WorkerInjectorFactory_Factory.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/BR.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/BuildConfig.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/DataBinderMapperImpl$InnerBrLookup.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/DataBinderMapperImpl$InnerLayoutIdLookup.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/DataBinderMapperImpl.class
/appcore/build/intermediates/javac/debug/classes/com/bapidas/news/appcore/DataBindingTriggerClass.class
/appcore/build/intermediates/library_java_res/debug/res.jar
/appcore/build/intermediates/library_manifest/debug/AndroidManifest.xml
/appcore/build/intermediates/local_only_symbol_list/debug/R-def.txt
/appcore/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
/appcore/build/intermediates/merged_consumer_proguard_file/debug/proguard.txt
/appcore/build/intermediates/merged_java_res/debug/out.jar
/appcore/build/intermediates/navigation_json/debug/navigation.json
/appcore/build/intermediates/packaged_manifests/debug/output-metadata.json
/appcore/build/intermediates/packaged_res/debug/drawable/bg_circle_transparent_arrow.xml
/appcore/build/intermediates/packaged_res/debug/drawable/bg_circle_transparent_web.xml
/appcore/build/intermediates/packaged_res/debug/drawable/bg_gradient.xml
/appcore/build/intermediates/packaged_res/debug/drawable/cbsn_fusion.jpg
/appcore/build/intermediates/packaged_res/debug/drawable/ic_arrow_back_white_42dp.xml
/appcore/build/intermediates/packaged_res/debug/drawable/ic_baseline_language_24.xml
/appcore/build/intermediates/packaged_res/debug/font/roboto_slab_black.ttf
/appcore/build/intermediates/packaged_res/debug/font/roboto_slab_bold.ttf
/appcore/build/intermediates/packaged_res/debug/font/roboto_slab_extra_bold.ttf
/appcore/build/intermediates/packaged_res/debug/font/roboto_slab_extra_light.ttf
/appcore/build/intermediates/packaged_res/debug/font/roboto_slab_light.ttf
/appcore/build/intermediates/packaged_res/debug/font/roboto_slab_medium.ttf
/appcore/build/intermediates/packaged_res/debug/font/roboto_slab_regular.ttf
/appcore/build/intermediates/packaged_res/debug/font/roboto_slab_semi_bold.ttf
/appcore/build/intermediates/packaged_res/debug/font/roboto_slab_thin.ttf
/appcore/build/intermediates/packaged_res/debug/layout/dumm_layout.xml
/appcore/build/intermediates/packaged_res/debug/layout/dummy_item.xml
/appcore/build/intermediates/packaged_res/debug/values/values.xml
/appcore/build/intermediates/runtime_library_classes_jar/debug/classes.jar
/appcore/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.values.at
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i
/appcore/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len
/appcore/build/kotlin/compileDebugKotlin/build-history.bin
/appcore/build/kotlin/compileDebugKotlin/last-build.bin
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.values.at
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin
/appcore/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin
/appcore/build/outputs/aar/appcore-debug.aar
/appcore/build/outputs/logs/manifest-merger-debug-report.txt
/appcore/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin
/appcore/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin
/appcore/build/tmp/kapt3/incApCache/debug/apt-cache.bin
/appcore/build/tmp/kapt3/incApCache/debug/classpath-entries.bin
/appcore/build/tmp/kapt3/incApCache/debug/classpath-structure.bin
/appcore/build/tmp/kapt3/incApCache/debug/java-cache.bin
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/activity/BaseActivity.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/activity/BaseActivityModule$Companion.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/activity/BaseActivityModule.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/adapter/callback/ItemViewListener.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/adapter/recycler/decoration/VerticalSpaceItemDecoration.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/adapter/recycler/BaseListAdapter.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/adapter/recycler/BasePagedListAdapter.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/adapter/recycler/BaseViewHolder.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/di/key/ActivityViewModelKey.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/di/key/FragmentViewModelKey.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/di/key/WorkerKey.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/di/qualifier/ActivityContext.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/di/qualifier/ApplicationContext.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/di/qualifier/FragmentContext.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/di/scope/ActivityScope.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/di/scope/FragmentScope.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/extensions/ActivityExtensionKt.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/extensions/ContextExtensionKt.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/extensions/ImageViewExtensionKt.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/extensions/ViewExtensionKt.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/fragment/BaseFragment.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/fragment/BaseFragmentModule$Companion.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/fragment/BaseFragmentModule.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/receiver/BaseBroadcastReceiver.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/service/BaseIntentService.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/service/BaseService.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/viewmodel/factory/ActivityViewModelFactory.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/viewmodel/factory/BaseViewModelFactory.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/viewmodel/factory/FragmentViewModelFactory.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/viewmodel/BaseActivityViewModel.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/viewmodel/BaseFragmentViewModel.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/viewmodel/BaseViewModel.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/worker/BaseWorker.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/worker/IWorkerFactory.class
/appcore/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/appcore/worker/WorkerInjectorFactory.class
/appcore/build/tmp/kapt3/incrementalData/debug/META-INF/appcore_debug.kotlin_module
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/activity/BaseActivity.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/activity/BaseActivity.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/activity/BaseActivityModule.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/activity/BaseActivityModule.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/adapter/callback/ItemViewListener.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/adapter/callback/ItemViewListener.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/adapter/recycler/decoration/VerticalSpaceItemDecoration.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/adapter/recycler/decoration/VerticalSpaceItemDecoration.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/adapter/recycler/BaseListAdapter.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/adapter/recycler/BaseListAdapter.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/adapter/recycler/BasePagedListAdapter.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/adapter/recycler/BasePagedListAdapter.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/adapter/recycler/BaseViewHolder.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/adapter/recycler/BaseViewHolder.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/key/ActivityViewModelKey.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/key/ActivityViewModelKey.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/key/FragmentViewModelKey.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/key/FragmentViewModelKey.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/key/WorkerKey.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/key/WorkerKey.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/qualifier/ActivityContext.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/qualifier/ActivityContext.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/qualifier/ApplicationContext.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/qualifier/ApplicationContext.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/qualifier/FragmentContext.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/qualifier/FragmentContext.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/scope/ActivityScope.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/scope/ActivityScope.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/scope/FragmentScope.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/di/scope/FragmentScope.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/extensions/ActivityExtensionKt.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/extensions/ActivityExtensionKt.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/extensions/ContextExtensionKt.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/extensions/ContextExtensionKt.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/extensions/ImageViewExtensionKt.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/extensions/ImageViewExtensionKt.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/extensions/ViewExtensionKt.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/extensions/ViewExtensionKt.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/fragment/BaseFragment.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/fragment/BaseFragment.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/fragment/BaseFragmentModule.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/fragment/BaseFragmentModule.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/receiver/BaseBroadcastReceiver.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/receiver/BaseBroadcastReceiver.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/service/BaseIntentService.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/service/BaseIntentService.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/service/BaseService.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/service/BaseService.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/viewmodel/factory/ActivityViewModelFactory.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/viewmodel/factory/ActivityViewModelFactory.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/viewmodel/factory/BaseViewModelFactory.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/viewmodel/factory/BaseViewModelFactory.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/viewmodel/factory/FragmentViewModelFactory.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/viewmodel/factory/FragmentViewModelFactory.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/viewmodel/BaseActivityViewModel.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/viewmodel/BaseActivityViewModel.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/viewmodel/BaseFragmentViewModel.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/viewmodel/BaseFragmentViewModel.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/viewmodel/BaseViewModel.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/viewmodel/BaseViewModel.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/worker/BaseWorker.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/worker/BaseWorker.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/worker/IWorkerFactory.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/worker/IWorkerFactory.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/worker/WorkerInjectorFactory.java
/appcore/build/tmp/kapt3/stubs/debug/com/bapidas/news/appcore/worker/WorkerInjectorFactory.kapt_metadata
/appcore/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/activity/BaseActivity.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/activity/BaseActivityModule$Companion.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/activity/BaseActivityModule.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/adapter/callback/ItemViewListener.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/adapter/recycler/decoration/VerticalSpaceItemDecoration.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/adapter/recycler/BaseListAdapter.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/adapter/recycler/BasePagedListAdapter.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/adapter/recycler/BaseViewHolder.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/di/key/ActivityViewModelKey.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/di/key/FragmentViewModelKey.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/di/key/WorkerKey.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/di/qualifier/ActivityContext.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/di/qualifier/ApplicationContext.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/di/qualifier/FragmentContext.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/di/scope/ActivityScope.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/di/scope/FragmentScope.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/extensions/ActivityExtensionKt.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/extensions/ContextExtensionKt.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/extensions/ImageViewExtensionKt.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/extensions/ViewExtensionKt.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/fragment/BaseFragment.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/fragment/BaseFragmentModule$Companion.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/fragment/BaseFragmentModule.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/receiver/BaseBroadcastReceiver.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/service/BaseIntentService.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/service/BaseService.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/viewmodel/factory/ActivityViewModelFactory.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/viewmodel/factory/BaseViewModelFactory.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/viewmodel/factory/FragmentViewModelFactory.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/viewmodel/BaseActivityViewModel.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/viewmodel/BaseFragmentViewModel.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/viewmodel/BaseViewModel.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/worker/BaseWorker.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/worker/IWorkerFactory.class
/appcore/build/tmp/kotlin-classes/debug/com/bapidas/news/appcore/worker/WorkerInjectorFactory.class
/appcore/build/tmp/kotlin-classes/debug/META-INF/appcore_debug.kotlin_module
/data/build/.transforms/7ae09edcd73747512342474860ede8a2/results.bin
/data/build/.transforms/8c3d900395e6a41592c7547172d64e6f/results.bin
/data/build/.transforms/61d318163428ed926836ade3f7bc27c8/transformed/jetified-data.jar
/data/build/.transforms/61d318163428ed926836ade3f7bc27c8/results.bin
/data/build/.transforms/a62d825ff9c7a01b41e65105ee55fd02/transformed/jetified-data/classes.dex
/data/build/.transforms/a62d825ff9c7a01b41e65105ee55fd02/results.bin
/data/build/.transforms/a81e10262df5eec8964c1610f46b8339/transformed/jetified-data.jar
/data/build/.transforms/a81e10262df5eec8964c1610f46b8339/results.bin
/data/build/.transforms/d56087392d923be74b88975fd7e1d92f/transformed/jetified-data/classes.dex
/data/build/.transforms/d56087392d923be74b88975fd7e1d92f/results.bin
/data/build/.transforms/e678c1eeafcd3adad1333e9bc4d1bc64/transformed/jetified-data.jar
/data/build/.transforms/e678c1eeafcd3adad1333e9bc4d1bc64/results.bin
/data/build/.transforms/f38012dd74abf2df5d8d349f7f2e3827/results.bin
/data/build/classes/kotlin/main/com/bapidas/news/data/factory/NewsDataStoreFactory.class
/data/build/classes/kotlin/main/com/bapidas/news/data/mapper/NewsEntityMapperKt.class
/data/build/classes/kotlin/main/com/bapidas/news/data/model/NewsEntity.class
/data/build/classes/kotlin/main/com/bapidas/news/data/model/NewsListEntity.class
/data/build/classes/kotlin/main/com/bapidas/news/data/model/SourceEntity.class
/data/build/classes/kotlin/main/com/bapidas/news/data/repository/NewsLocalRepository.class
/data/build/classes/kotlin/main/com/bapidas/news/data/repository/NewsRemoteRepository.class
/data/build/classes/kotlin/main/com/bapidas/news/data/store/NewsDataStore.class
/data/build/classes/kotlin/main/com/bapidas/news/data/store/NewsLocalDataStore.class
/data/build/classes/kotlin/main/com/bapidas/news/data/store/NewsRemoteDataStore.class
/data/build/classes/kotlin/main/com/bapidas/news/data/NewsRepositoryImpl$getNews$1.class
/data/build/classes/kotlin/main/com/bapidas/news/data/NewsRepositoryImpl$getNewsAfter$1.class
/data/build/classes/kotlin/main/com/bapidas/news/data/NewsRepositoryImpl.class
/data/build/classes/kotlin/main/META-INF/data.kotlin_module
/data/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab
/data/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab.keystream
/data/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len
/data/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab.len
/data/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab.values.at
/data/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab_i
/data/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab_i.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/package-parts.tab
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab_i
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/subtypes.tab
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/supertypes.tab
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i
/data/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len
/data/build/kotlin/compileKotlin/caches-jvm/lookups/counters.tab
/data/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab
/data/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab.keystream
/data/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len
/data/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab.len
/data/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab.values.at
/data/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab_i
/data/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab_i.len
/data/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab
/data/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab.keystream
/data/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len
/data/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab.len
/data/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab.values.at
/data/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab_i
/data/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab_i.len
/data/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab
/data/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab.keystream
/data/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab.keystream.len
/data/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab.len
/data/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab.values.at
/data/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab_i
/data/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab_i.len
/data/build/kotlin/compileKotlin/build-history.bin
/data/build/kotlin/compileKotlin/last-build.bin
/data/build/kotlin/datajar-classes.txt
/data/build/libs/data.jar
/data/build/tmp/jar/MANIFEST.MF
/domain/build/.transforms/6d0ac24bc5d21316e1ae48b588c8b35a/transformed/jetified-domain.jar
/domain/build/.transforms/6d0ac24bc5d21316e1ae48b588c8b35a/results.bin
/domain/build/.transforms/7b7ac4361ce1ca1f4fe037417b70bdf9/transformed/jetified-domain.jar
/domain/build/.transforms/7b7ac4361ce1ca1f4fe037417b70bdf9/results.bin
/domain/build/.transforms/81b3e61f488831b5cf1f57fd22cded7b/transformed/jetified-domain/classes.dex
/domain/build/.transforms/81b3e61f488831b5cf1f57fd22cded7b/results.bin
/domain/build/.transforms/413918b6fafe6cab52dd1a15fe16b889/transformed/jetified-domain.jar
/domain/build/.transforms/413918b6fafe6cab52dd1a15fe16b889/results.bin
/domain/build/.transforms/a7e054a8f958c952c7feb5ca19249bed/results.bin
/domain/build/.transforms/cb4638b6f269de2f15c792ed15bb9ad4/transformed/jetified-domain/classes.dex
/domain/build/.transforms/cb4638b6f269de2f15c792ed15bb9ad4/results.bin
/domain/build/.transforms/f7577e6f54b4a733d70f1519f0b16d1e/results.bin
/domain/build/.transforms/fddc865d00cefb7cceed66c284de1fcf/results.bin
/domain/build/classes/kotlin/main/com/bapidas/news/domain/model/NewsDomain.class
/domain/build/classes/kotlin/main/com/bapidas/news/domain/model/NewsListDomain.class
/domain/build/classes/kotlin/main/com/bapidas/news/domain/model/SourceDomain.class
/domain/build/classes/kotlin/main/com/bapidas/news/domain/usecases/ClearNews.class
/domain/build/classes/kotlin/main/com/bapidas/news/domain/usecases/GetNews.class
/domain/build/classes/kotlin/main/com/bapidas/news/domain/usecases/GetNewsAfter.class
/domain/build/classes/kotlin/main/com/bapidas/news/domain/usecases/GetNewsCount.class
/domain/build/classes/kotlin/main/com/bapidas/news/domain/usecases/SaveNews.class
/domain/build/classes/kotlin/main/com/bapidas/news/domain/NewsRepository.class
/domain/build/classes/kotlin/main/META-INF/domain.kotlin_module
/domain/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab
/domain/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab.keystream
/domain/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len
/domain/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab.len
/domain/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab.values.at
/domain/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab_i
/domain/build/kotlin/compileKotlin/caches-jvm/inputs/source-to-output.tab_i.len
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.len
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab_i
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i
/domain/build/kotlin/compileKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/counters.tab
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab.keystream
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab.len
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab.values.at
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab_i
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/file-to-id.tab_i.len
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab.keystream
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab.len
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab.values.at
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab_i
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/id-to-file.tab_i.len
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab.keystream
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab.keystream.len
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab.len
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab.values.at
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab_i
/domain/build/kotlin/compileKotlin/caches-jvm/lookups/lookups.tab_i.len
/domain/build/kotlin/compileKotlin/build-history.bin
/domain/build/kotlin/compileKotlin/last-build.bin
/domain/build/kotlin/domainjar-classes.txt
/domain/build/libs/domain.jar
/domain/build/tmp/jar/MANIFEST.MF
/framework/build/.transforms/a3fab70ddb5f4bc563a56ed0f1cb118d/transformed/classes/classes.dex
/framework/build/.transforms/a3fab70ddb5f4bc563a56ed0f1cb118d/results.bin
/framework/build/.transforms/e893eec094e001888dc9bde79ee760e8/transformed/classes/classes.dex
/framework/build/.transforms/e893eec094e001888dc9bde79ee760e8/results.bin
/framework/build/generated/source/buildConfig/debug/com/bapidas/news/framework/BuildConfig.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/db/NewsDatabase_Impl.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/ApiModule_ProvideNewsRemoteApiFactory.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/GlideApp.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/GlideOptions.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/GlideRequest.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/GlideRequests.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/InteractionsModule_ProvideNewsInteractionsFactory.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/NetworkModule_ProvideCacheFactory.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/NetworkModule_ProvideGsonConverterFactoryFactory.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/NetworkModule_ProvideGsonFactory.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/NetworkModule_ProvideHttpLoggingInterceptorFactory.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/NetworkModule_ProvideOkHttpClientFactory.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/NetworkModule_ProvideRetrofitFactory.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/RoomModule_ProvidesAppDatabaseFactory.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/RoomModule_ProvidesNewsDaoFactory.java
/framework/build/generated/source/kapt/debug/com/bapidas/news/framework/di/module/TimberModule_ProvideTimberTreeFactory.java
/framework/build/generated/source/kapt/debug/com/bumptech/glide/GeneratedAppGlideModuleImpl.java
/framework/build/generated/source/kapt/debug/com/bumptech/glide/GeneratedRequestManagerFactory.java
/framework/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml
/framework/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json
/framework/build/intermediates/aar_main_jar/debug/classes.jar
/framework/build/intermediates/aar_metadata/debug/aar-metadata.properties
/framework/build/intermediates/annotation_processor_list/debug/annotationProcessors.json
/framework/build/intermediates/annotations_typedef_file/debug/typedefs.txt
/framework/build/intermediates/compile_library_classes_jar/debug/classes.jar
/framework/build/intermediates/compile_r_class_jar/debug/R.jar
/framework/build/intermediates/compile_symbol_list/debug/R.txt
/framework/build/intermediates/incremental/debug-mergeJavaRes/merge-state
/framework/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
/framework/build/intermediates/incremental/mergeDebugShaders/merger.xml
/framework/build/intermediates/incremental/packageDebugAssets/merger.xml
/framework/build/intermediates/incremental/packageDebugResources/compile-file-map.properties
/framework/build/intermediates/incremental/packageDebugResources/merger.xml
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$1.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$2.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$3.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$4.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$5.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$6.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$7.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$8.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$9.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$10.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$11.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$12.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$13.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$14.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$15.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl$16.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/dao/RoomNewsDao_Impl.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/NewsDatabase_Impl$1.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/db/NewsDatabase_Impl.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/ApiModule_ProvideNewsRemoteApiFactory.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/GlideApp.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/GlideOptions.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/GlideRequest.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/GlideRequests.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/InteractionsModule_ProvideNewsInteractionsFactory.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/NetworkModule_ProvideCacheFactory.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/NetworkModule_ProvideGsonConverterFactoryFactory.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/NetworkModule_ProvideGsonFactory.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/NetworkModule_ProvideHttpLoggingInterceptorFactory.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/NetworkModule_ProvideOkHttpClientFactory.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/NetworkModule_ProvideRetrofitFactory.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/RoomModule_ProvidesAppDatabaseFactory.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/RoomModule_ProvidesNewsDaoFactory.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/di/module/TimberModule_ProvideTimberTreeFactory.class
/framework/build/intermediates/javac/debug/classes/com/bapidas/news/framework/BuildConfig.class
/framework/build/intermediates/javac/debug/classes/com/bumptech/glide/GeneratedAppGlideModuleImpl.class
/framework/build/intermediates/javac/debug/classes/com/bumptech/glide/GeneratedRequestManagerFactory.class
/framework/build/intermediates/library_java_res/debug/res.jar
/framework/build/intermediates/library_manifest/debug/AndroidManifest.xml
/framework/build/intermediates/local_only_symbol_list/debug/R-def.txt
/framework/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
/framework/build/intermediates/merged_consumer_proguard_file/debug/proguard.txt
/framework/build/intermediates/merged_java_res/debug/out.jar
/framework/build/intermediates/navigation_json/debug/navigation.json
/framework/build/intermediates/packaged_manifests/debug/output-metadata.json
/framework/build/intermediates/runtime_library_classes_jar/debug/classes.jar
/framework/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt
/framework/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream
/framework/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at
/framework/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i
/framework/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.values.at
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i
/framework/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i
/framework/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len
/framework/build/kotlin/compileDebugKotlin/build-history.bin
/framework/build/kotlin/compileDebugKotlin/last-build.bin
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.values.at
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.values.at
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin
/framework/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin
/framework/build/outputs/aar/framework-debug.aar
/framework/build/outputs/logs/manifest-merger-debug-report.txt
/framework/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin
/framework/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin
/framework/build/tmp/kapt3/incApCache/debug/apt-cache.bin
/framework/build/tmp/kapt3/incApCache/debug/classpath-entries.bin
/framework/build/tmp/kapt3/incApCache/debug/classpath-structure.bin
/framework/build/tmp/kapt3/incApCache/debug/java-cache.bin
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/db/dao/RoomBaseDao.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/db/dao/RoomNewsDao.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/db/entity/NewsLocal.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/db/mapper/NewsLocalMapperKt.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/db/repository/RoomNewsRepository.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/db/NewsDatabase$Companion.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/db/NewsDatabase.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/di/module/ApiModule.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/di/module/InteractionsModule.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/di/module/MyGlideAppModule.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/di/module/NetworkModule$Companion.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/di/module/NetworkModule.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/di/module/RoomModule.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/di/module/TimberModule.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/di/FrameworkModule.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/image/ImageLoadingKt.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/interactions/NewsInteractions.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/network/api/RemoteNewsApi.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/network/api/Urls$News.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/network/api/Urls.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/network/entity/News.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/network/entity/NewsList.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/network/entity/Source.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/network/mapper/NewsRemoteMapperKt.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/network/repository/RemoteNewsRepository$Companion.class
/framework/build/tmp/kapt3/incrementalData/debug/com/bapidas/news/framework/network/repository/RemoteNewsRepository.class
/framework/build/tmp/kapt3/incrementalData/debug/META-INF/framework_debug.kotlin_module
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/db/dao/RoomBaseDao.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/db/dao/RoomBaseDao.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/db/dao/RoomNewsDao.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/db/dao/RoomNewsDao.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/db/entity/NewsLocal.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/db/entity/NewsLocal.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/db/mapper/NewsLocalMapperKt.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/db/mapper/NewsLocalMapperKt.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/db/repository/RoomNewsRepository.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/db/repository/RoomNewsRepository.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/db/NewsDatabase.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/db/NewsDatabase.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/module/ApiModule.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/module/ApiModule.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/module/InteractionsModule.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/module/InteractionsModule.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/module/MyGlideAppModule.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/module/MyGlideAppModule.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/module/NetworkModule.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/module/NetworkModule.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/module/RoomModule.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/module/RoomModule.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/module/TimberModule.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/module/TimberModule.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/FrameworkModule.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/di/FrameworkModule.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/image/ImageLoadingKt.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/image/ImageLoadingKt.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/interactions/NewsInteractions.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/interactions/NewsInteractions.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/api/RemoteNewsApi.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/api/RemoteNewsApi.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/api/Urls.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/api/Urls.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/entity/News.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/entity/News.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/entity/NewsList.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/entity/NewsList.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/entity/Source.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/entity/Source.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/mapper/NewsRemoteMapperKt.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/mapper/NewsRemoteMapperKt.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/repository/RemoteNewsRepository.java
/framework/build/tmp/kapt3/stubs/debug/com/bapidas/news/framework/network/repository/RemoteNewsRepository.kapt_metadata
/framework/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java
/framework/build/tmp/kotlin-classes/debug/com/bapidas/news/framework/db/dao/RoomBaseDao.class
/framework/build/tmp/kotlin-classes/debug/com/bapidas/news/framework/db/dao/RoomNewsDao.class
/framework/build/tmp/kotlin-classes/debug/com/bapidas/news/framework/db/entity/NewsLocal.class
/framework/build/tmp/kotlin-classes/debug/com/bapidas/news/framework/db/mapper/NewsLocalMapperKt.class
/framework/build/tmp/kotlin-classes/debug/com/bapidas/news/framework/db/repository/RoomNewsRepository$getNews$1.class
/framework/build/tmp/kotlin-classes/debug/com/bapidas/news/framework/db/repository/RoomNewsRepository$getNewsAfter$1.class
/framework/build/tmp/kotlin-classes/debug/com/bapidas/news/framework/db/repository/RoomNewsRepository.class
/framework/build/tmp/kotlin-classes/debug/com/bapidas/news/framework/db/NewsDatabase$Companion$createDB$1.class
/framework/build/tmp/kotlin-classes/debug/com/bapidas/news/framework/db/NewsDatabase$Companion.class
/framework/build/tmp/kotlin-classes/debug/com/bapidas/news/framework/db/NewsDatabase.class
/framework/build/tmp/kotlin-classes/debug/com/bapidas/news/framework/di/module/ApiModule.class