-
Notifications
You must be signed in to change notification settings - Fork 1
/
import-summary.txt
1236 lines (1227 loc) · 103 KB
/
import-summary.txt
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
ECLIPSE ANDROID PROJECT IMPORT SUMMARY
======================================
Ignored Files:
--------------
The following files were *not* copied into the new Gradle project; you
should evaluate whether these are still needed in your project and if
so manually move them:
From AbewyLibs:
* AbewyLibs.iml
* build.gradle
* proguard-project.txt
From Abewy_Extended:
* proguard-project.txt
From FacebookSDK:
* build.gradle
* build.xml
From HorizontalListView:
* .DS_Store
* build.gradle
* build.xml
* proguard-project.txt
From ImageViewTouch:
* build.xml
* pom.xml
* proguard-project.txt
From Klyph:
* Klyph Beta.eml
* Klyph Beta.iml
* Klyph.iml
* libs_ext/
* libs_ext/AbewyLibs2/
* libs_ext/AbewyLibs2/AbewyLibs/
* libs_ext/AbewyLibs2/AbewyLibs/.classpath
* libs_ext/AbewyLibs2/AbewyLibs/.project
* libs_ext/AbewyLibs2/AbewyLibs/.settings/
* libs_ext/AbewyLibs2/AbewyLibs/.settings/org.eclipse.jdt.core.prefs
* libs_ext/AbewyLibs2/AbewyLibs/AbewyLibs.iml
* libs_ext/AbewyLibs2/AbewyLibs/AndroidManifest.xml
* libs_ext/AbewyLibs2/AbewyLibs/bin/
* libs_ext/AbewyLibs2/AbewyLibs/bin/AndroidManifest.xml
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/BuildConfig.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/android/
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/android/ads/
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/android/ads/BannerAdManager.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/android/ads/IBannerAd.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/android/ads/IBannerCallback.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/android/widget/
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/android/widget/MultiTypeAdapter.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/app/
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/app/BaseActivity.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/app/BaseActivity2.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/app/BaseDialogListFragment.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/app/BaseFragment.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/app/BaseFragmentActivity.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/app/BaseListActivity.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/app/BaseListActivity2.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/app/BaseListFragment.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/app/BaseListFragment2.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/app/BaseViewPagerActivity.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/net/
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/net/ConnectionState.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/net/HttpRequest2.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/util/
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/util/Android.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/util/ApplicationUtil.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/util/NumberUtil.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/classes/com/abewy/util/PhoneUtil.class
* libs_ext/AbewyLibs2/AbewyLibs/bin/jarlist.cache
* libs_ext/AbewyLibs2/AbewyLibs/build.gradle
* libs_ext/AbewyLibs2/AbewyLibs/gen/
* libs_ext/AbewyLibs2/AbewyLibs/gen/com/
* libs_ext/AbewyLibs2/AbewyLibs/gen/com/abewy/
* libs_ext/AbewyLibs2/AbewyLibs/gen/com/abewy/BuildConfig.java
* libs_ext/AbewyLibs2/AbewyLibs/lint.xml
* libs_ext/AbewyLibs2/AbewyLibs/proguard-project.txt
* libs_ext/AbewyLibs2/AbewyLibs/project.properties
* libs_ext/AbewyLibs2/AbewyLibs/src/
* libs_ext/AbewyLibs2/AbewyLibs/src/com/
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/android/
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/android/ads/
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/android/ads/BannerAdManager.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/android/ads/IBannerAd.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/android/ads/IBannerCallback.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/android/widget/
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/android/widget/MultiTypeAdapter.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/app/
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/app/BaseActivity.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/app/BaseActivity2.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/app/BaseDialogListFragment.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/app/BaseFragment.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/app/BaseFragmentActivity.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/app/BaseListActivity.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/app/BaseListActivity2.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/app/BaseListFragment.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/app/BaseListFragment2.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/app/BaseViewPagerActivity.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/net/
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/net/ConnectionState.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/net/HttpRequest2.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/util/
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/util/Android.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/util/ApplicationUtil.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/util/NumberUtil.java
* libs_ext/AbewyLibs2/AbewyLibs/src/com/abewy/util/PhoneUtil.java
* libs_ext/Abewy_Extended/
* libs_ext/Abewy_Extended/.classpath
* libs_ext/Abewy_Extended/.project
* libs_ext/Abewy_Extended/.settings/
* libs_ext/Abewy_Extended/.settings/org.eclipse.jdt.core.prefs
* libs_ext/Abewy_Extended/AndroidManifest.xml
* libs_ext/Abewy_Extended/bin/
* libs_ext/Abewy_Extended/bin/AndroidManifest.xml
* libs_ext/Abewy_Extended/bin/classes/
* libs_ext/Abewy_Extended/bin/classes/com/
* libs_ext/Abewy_Extended/bin/classes/com/abewy/
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/BuildConfig.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/adapter/
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/adapter/MultiTypeAdapter.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/adapter/TypeAdapter.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/app/
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/app/ListFragment.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/fragment/
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/fragment/GridDialogFragment.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/fragment/GridFragment$IEmptyView.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/fragment/GridFragment.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/fragment/MultiTypeGridFragment.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/items/
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/items/BaseType.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/items/Header.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/items/Progress.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/items/TextButtonItem.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/items/TextItem.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/items/Title.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/items/TitleTextItem.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/items/TitleTwoItem.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/net/
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/net/ConnectionState.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/util/
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/util/AlertUtil.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/util/Android.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/util/ApplicationUtil.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/util/AttrUtil.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/util/MathUtil.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/util/PhoneUtil.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/util/PlayStoreUtil.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/util/SearchUtil.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/widget/
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/widget/BaseImageView.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/widget/MaxWidthFrameLayout$LayoutParams.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/widget/MaxWidthFrameLayout.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/widget/MaxWidthLinearLayout$LayoutParams.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/widget/MaxWidthLinearLayout.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/widget/RatioFrameLayout.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/widget/RatioImageView.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/widget/SquareFrameLayout.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/widget/SquareImageView.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/widget/SquareLinearLayout.class
* libs_ext/Abewy_Extended/bin/classes/com/abewy/android/extended/widget/TypefaceTextView.class
* libs_ext/Abewy_Extended/bin/jarlist.cache
* libs_ext/Abewy_Extended/gen/
* libs_ext/Abewy_Extended/gen/com/
* libs_ext/Abewy_Extended/gen/com/abewy/
* libs_ext/Abewy_Extended/gen/com/abewy/android/
* libs_ext/Abewy_Extended/gen/com/abewy/android/extended/
* libs_ext/Abewy_Extended/gen/com/abewy/android/extended/BuildConfig.java
* libs_ext/Abewy_Extended/libs/
* libs_ext/Abewy_Extended/libs/android-support-v13.jar
* libs_ext/Abewy_Extended/lint.xml
* libs_ext/Abewy_Extended/proguard-project.txt
* libs_ext/Abewy_Extended/project.properties
* libs_ext/Abewy_Extended/res/
* libs_ext/Abewy_Extended/res/drawable-hdpi/
* libs_ext/Abewy_Extended/res/drawable-hdpi/ic_launcher.png
* libs_ext/Abewy_Extended/res/drawable-mdpi/
* libs_ext/Abewy_Extended/res/drawable-mdpi/ic_launcher.png
* libs_ext/Abewy_Extended/res/drawable-xhdpi/
* libs_ext/Abewy_Extended/res/drawable-xhdpi/ic_launcher.png
* libs_ext/Abewy_Extended/res/values/
* libs_ext/Abewy_Extended/res/values/abewy_ext_attrs.xml
* libs_ext/Abewy_Extended/res/values/abewy_ext_ids.xml
* libs_ext/Abewy_Extended/src/
* libs_ext/Abewy_Extended/src/com/
* libs_ext/Abewy_Extended/src/com/abewy/
* libs_ext/Abewy_Extended/src/com/abewy/android/
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/adapter/
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/adapter/MultiTypeAdapter.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/adapter/TypeAdapter.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/app/
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/app/ListFragment.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/fragment/
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/fragment/GridDialogFragment.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/fragment/GridFragment.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/fragment/MultiTypeGridFragment.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/items/
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/items/BaseType.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/items/Header.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/items/Progress.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/items/TextButtonItem.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/items/TextItem.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/items/Title.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/items/TitleTextItem.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/items/TitleTwoItem.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/net/
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/net/ConnectionState.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/util/
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/util/AlertUtil.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/util/Android.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/util/ApplicationUtil.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/util/AttrUtil.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/util/MathUtil.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/util/PhoneUtil.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/util/PlayStoreUtil.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/util/SearchUtil.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/widget/
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/widget/BaseImageView.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/widget/MaxWidthFrameLayout.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/widget/MaxWidthLinearLayout.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/widget/RatioFrameLayout.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/widget/RatioImageView.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/widget/SquareFrameLayout.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/widget/SquareImageView.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/widget/SquareLinearLayout.java
* libs_ext/Abewy_Extended/src/com/abewy/android/extended/widget/TypefaceTextView.java
* libs_ext/ActionBar-PullToRefresh-master/
* libs_ext/ActionBar-PullToRefresh-master/.gitignore
* libs_ext/ActionBar-PullToRefresh-master/README.md
* libs_ext/ActionBar-PullToRefresh-master/build.gradle
* libs_ext/ActionBar-PullToRefresh-master/gradle.properties
* libs_ext/ActionBar-PullToRefresh-master/header.png
* libs_ext/ActionBar-PullToRefresh-master/library/
* libs_ext/ActionBar-PullToRefresh-master/library/.classpath
* libs_ext/ActionBar-PullToRefresh-master/library/.project
* libs_ext/ActionBar-PullToRefresh-master/library/.settings/
* libs_ext/ActionBar-PullToRefresh-master/library/.settings/org.eclipse.jdt.core.prefs
* libs_ext/ActionBar-PullToRefresh-master/library/AndroidManifest.xml
* libs_ext/ActionBar-PullToRefresh-master/library/bin/
* libs_ext/ActionBar-PullToRefresh-master/library/bin/AndroidManifest.xml
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/ActionBarPullToRefresh$SetupWizard.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/ActionBarPullToRefresh.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/BuildConfig.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/DefaultHeaderTransformer$HideAnimationCallback.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/DefaultHeaderTransformer.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/EnvironmentDelegate.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/HeaderTransformer.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/InstanceCreationUtils.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/Options$Builder.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/Options.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/PullToRefreshAttacher$1.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/PullToRefreshAttacher$2.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/PullToRefreshAttacher$3.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/PullToRefreshAttacher.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/PullToRefreshLayout$LayoutParams.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/PullToRefreshLayout.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/listeners/
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/listeners/HeaderViewListener.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/listeners/OnRefreshListener.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/sdk/
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/sdk/Compat.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/sdk/CompatBase.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/sdk/CompatV11.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/sdk/CompatV16.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/viewdelegates/
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/viewdelegates/AbsListViewDelegate$Compat.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/viewdelegates/AbsListViewDelegate$CompatV11.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/viewdelegates/AbsListViewDelegate.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/viewdelegates/ScrollYDelegate.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/viewdelegates/ViewDelegate.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/classes/uk/co/senab/actionbarpulltorefresh/library/viewdelegates/WebViewDelegate.class
* libs_ext/ActionBar-PullToRefresh-master/library/bin/jarlist.cache
* libs_ext/ActionBar-PullToRefresh-master/library/build.gradle
* libs_ext/ActionBar-PullToRefresh-master/library/gen/
* libs_ext/ActionBar-PullToRefresh-master/library/gen/uk/
* libs_ext/ActionBar-PullToRefresh-master/library/gen/uk/co/
* libs_ext/ActionBar-PullToRefresh-master/library/gen/uk/co/senab/
* libs_ext/ActionBar-PullToRefresh-master/library/gen/uk/co/senab/actionbarpulltorefresh/
* libs_ext/ActionBar-PullToRefresh-master/library/gen/uk/co/senab/actionbarpulltorefresh/library/
* libs_ext/ActionBar-PullToRefresh-master/library/gen/uk/co/senab/actionbarpulltorefresh/library/BuildConfig.java
* libs_ext/ActionBar-PullToRefresh-master/library/gradle.properties
* libs_ext/ActionBar-PullToRefresh-master/library/project.properties
* libs_ext/ActionBar-PullToRefresh-master/library/res/
* libs_ext/ActionBar-PullToRefresh-master/library/res/layout/
* libs_ext/ActionBar-PullToRefresh-master/library/res/layout/default_header.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-ar/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-ar/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-cs/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-cs/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-de/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-de/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-es/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-es/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-fi/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-fi/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-fr/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-fr/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-he/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-he/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-it/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-it/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-iw/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-iw/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-ja/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-ja/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-ko/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-ko/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-lt/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-lt/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-nl/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-nl/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-pl/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-pl/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-pt-rBR/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-pt-rBR/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-pt/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-pt/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-ro/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-ro/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-ru/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-ru/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-sk/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-sk/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-sv/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-sv/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-zh/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values-zh/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values/
* libs_ext/ActionBar-PullToRefresh-master/library/res/values/attrs.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values/colors.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values/dimens.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values/ids.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values/pull_refresh_strings.xml
* libs_ext/ActionBar-PullToRefresh-master/library/res/values/styles.xml
* libs_ext/ActionBar-PullToRefresh-master/library/src/
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/ActionBarPullToRefresh.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/DefaultHeaderTransformer.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/EnvironmentDelegate.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/HeaderTransformer.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/InstanceCreationUtils.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/Options.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/PullToRefreshAttacher.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/PullToRefreshLayout.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/listeners/
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/listeners/HeaderViewListener.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/listeners/OnRefreshListener.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/sdk/
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/sdk/Compat.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/sdk/CompatBase.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/sdk/CompatV11.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/sdk/CompatV16.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/viewdelegates/
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/viewdelegates/AbsListViewDelegate.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/viewdelegates/ScrollYDelegate.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/viewdelegates/ViewDelegate.java
* libs_ext/ActionBar-PullToRefresh-master/library/src/uk/co/senab/actionbarpulltorefresh/library/viewdelegates/WebViewDelegate.java
* libs_ext/ActionBar-PullToRefresh-master/settings.gradle
* libs_ext/HorizontalVariableListView-master/
* libs_ext/HorizontalVariableListView-master/.gitignore
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/.DS_Store
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/.classpath
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/.project
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/.settings/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/.settings/org.eclipse.jdt.core.prefs
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/AndroidManifest.xml
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/AndroidManifest.xml
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/.DS_Store
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/.DS_Store
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/BuildConfig.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/util/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/util/MathUtils.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/util/ViewHelperFactory$ViewHelper.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/util/ViewHelperFactory$ViewHelperDefault.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/util/ViewHelperFactory.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/util/v11/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/util/v11/MultiChoiceModeListener.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/util/v11/MultiChoiceModeWrapper.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/util/v14/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/util/v14/ViewHelper14.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/util/v16/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/util/v16/ViewHelper16.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/.DS_Store
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$AdapterDataSetObserver.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$CheckForKeyLongPress.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$CheckForLongPress.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$CheckForTap.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$FlingRunnable.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$LayoutParams.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$ListItemAccessibilityDelegate.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$OnScrollListener.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$PerformClick.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$PositionScroller.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$RecycleBin.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$RecyclerListener.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$SavedState.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$SelectionBoundsAdjuster.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView$WindowRunnnable.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AbsHListView.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AdapterView$AdapterContextMenuInfo.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AdapterView$AdapterDataSetObserver.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AdapterView$OnItemClickListener.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AdapterView$OnItemLongClickListener.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AdapterView$OnItemSelectedListener.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AdapterView$SelectionNotifier.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/AdapterView.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/EdgeEffect.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/HListView$ArrowScrollFocusResult.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/HListView$FixedViewInfo.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/HListView$FocusSelector.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/HListView.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/HeaderViewListAdapter.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/OverScroller$SplineOverScroller.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/classes/it/sephiroth/android/library/widget/OverScroller.class
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/bin/jarlist.cache
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/build.gradle
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/build.xml
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/gen/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/gen/it/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/gen/it/sephiroth/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/gen/it/sephiroth/android/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/gen/it/sephiroth/android/library/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/gen/it/sephiroth/android/library/BuildConfig.java
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/libs/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/libs/android-support-v4.jar
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/lint.xml
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/proguard-project.txt
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/project.properties
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/.DS_Store
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-hdpi/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-hdpi/.DS_Store
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-hdpi/hlv_overscroll_edge.png
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-hdpi/hlv_overscroll_glow.png
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-ldpi/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-ldpi/hlv_overscroll_edge.png
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-ldpi/hlv_overscroll_glow.png
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-mdpi/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-mdpi/.DS_Store
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-mdpi/hlv_overscroll_edge.png
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-mdpi/hlv_overscroll_glow.png
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-xhdpi/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-xhdpi/.DS_Store
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-xhdpi/hlv_overscroll_edge.png
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/drawable-xhdpi/hlv_overscroll_glow.png
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/values/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/values/.DS_Store
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/res/values/hlv_attrs.xml
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/.DS_Store
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/.DS_Store
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/util/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/util/MathUtils.java
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/util/ViewHelperFactory.java
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/util/v11/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/util/v11/MultiChoiceModeListener.java
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/util/v11/MultiChoiceModeWrapper.java
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/util/v14/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/util/v14/ViewHelper14.java
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/util/v16/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/util/v16/ViewHelper16.java
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/widget/
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/widget/.DS_Store
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/widget/AbsHListView.java
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/widget/AdapterView.java
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/widget/EdgeEffect.java
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/widget/HListView.java
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/widget/HeaderViewListAdapter.java
* libs_ext/HorizontalVariableListView-master/HorizontalVariableListView/src/it/sephiroth/android/library/widget/OverScroller.java
* libs_ext/HorizontalVariableListView-master/README.md
* libs_ext/ImageViewZoom-master/
* libs_ext/ImageViewZoom-master/.gitignore
* libs_ext/ImageViewZoom-master/ImageViewTouch/
* libs_ext/ImageViewZoom-master/ImageViewTouch/.classpath
* libs_ext/ImageViewZoom-master/ImageViewTouch/.project
* libs_ext/ImageViewZoom-master/ImageViewTouch/.settings/
* libs_ext/ImageViewZoom-master/ImageViewTouch/.settings/org.eclipse.jdt.core.prefs
* libs_ext/ImageViewZoom-master/ImageViewTouch/AndroidManifest.xml
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/AndroidManifest.xml
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/BuildConfig.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/ImageViewTouch$GestureListener.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/ImageViewTouch$OnImageViewTouchDoubleTapListener.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/ImageViewTouch$OnImageViewTouchSingleTapListener.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/ImageViewTouch$ScaleListener.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/ImageViewTouch.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/ImageViewTouchBase$1.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/ImageViewTouchBase$2.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/ImageViewTouchBase$3.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/ImageViewTouchBase$DisplayType.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/ImageViewTouchBase$OnDrawableChangeListener.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/ImageViewTouchBase$OnLayoutChangeListener.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/ImageViewTouchBase.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/easing/
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/easing/Back.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/easing/Bounce.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/easing/Circ.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/easing/Cubic.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/easing/Easing.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/easing/Elastic.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/easing/Expo.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/easing/Linear.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/easing/Quad.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/easing/Quart.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/easing/Quint.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/easing/Sine.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/graphics/
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/graphics/FastBitmapDrawable.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/graphics/IBitmapDrawable.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/utils/
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/classes/it/sephiroth/android/library/imagezoom/utils/IDisposable.class
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/imageviewtouch.jar
* libs_ext/ImageViewZoom-master/ImageViewTouch/bin/jarlist.cache
* libs_ext/ImageViewZoom-master/ImageViewTouch/build.xml
* libs_ext/ImageViewZoom-master/ImageViewTouch/gen/
* libs_ext/ImageViewZoom-master/ImageViewTouch/gen/it/
* libs_ext/ImageViewZoom-master/ImageViewTouch/gen/it/sephiroth/
* libs_ext/ImageViewZoom-master/ImageViewTouch/gen/it/sephiroth/android/
* libs_ext/ImageViewZoom-master/ImageViewTouch/gen/it/sephiroth/android/library/
* libs_ext/ImageViewZoom-master/ImageViewTouch/gen/it/sephiroth/android/library/imagezoom/
* libs_ext/ImageViewZoom-master/ImageViewTouch/gen/it/sephiroth/android/library/imagezoom/BuildConfig.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/pom.xml
* libs_ext/ImageViewZoom-master/ImageViewTouch/proguard-project.txt
* libs_ext/ImageViewZoom-master/ImageViewTouch/project.properties
* libs_ext/ImageViewZoom-master/ImageViewTouch/res/
* libs_ext/ImageViewZoom-master/ImageViewTouch/res/.gitignore
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/ImageViewTouch.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/ImageViewTouchBase.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/easing/
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/easing/Back.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/easing/Bounce.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/easing/Circ.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/easing/Cubic.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/easing/Easing.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/easing/Elastic.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/easing/Expo.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/easing/Linear.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/easing/Quad.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/easing/Quart.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/easing/Quint.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/easing/Sine.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/graphics/
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/graphics/FastBitmapDrawable.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/graphics/IBitmapDrawable.java
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/utils/
* libs_ext/ImageViewZoom-master/ImageViewTouch/src/it/sephiroth/android/library/imagezoom/utils/IDisposable.java
* libs_ext/ImageViewZoom-master/LICENSE
* libs_ext/ImageViewZoom-master/README.md
* libs_ext/ImageViewZoom-master/pom.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/.gitignore
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/CHANGELOG.md
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/README.md
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/.classpath
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/.project
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/.settings/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/.settings/org.eclipse.jdt.core.prefs
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/AndroidManifest.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/AndroidManifest.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/BuildConfig.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/CirclePageIndicator$SavedState$1.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/CirclePageIndicator$SavedState.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/CirclePageIndicator.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/IconPageIndicator$1.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/IconPageIndicator.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/IconPagerAdapter.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/IcsLinearLayout.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/LinePageIndicator$SavedState$1.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/LinePageIndicator$SavedState.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/LinePageIndicator.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/PageIndicator.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/TabPageIndicator$2.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/TabPageIndicator$OnTabReselectedListener.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/TabPageIndicator$TabView.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/TabPageIndicator.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/TitlePageIndicator$IndicatorStyle.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/TitlePageIndicator$LinePosition.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/TitlePageIndicator$OnCenterItemClickListener.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/TitlePageIndicator$SavedState$1.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/TitlePageIndicator$SavedState.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/TitlePageIndicator.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/UnderlinePageIndicator$2.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/UnderlinePageIndicator$SavedState$1.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/UnderlinePageIndicator$SavedState.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/classes/com/viewpagerindicator/UnderlinePageIndicator.class
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/bin/jarlist.cache
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/build.gradle
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/gen/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/gen/com/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/gen/com/viewpagerindicator/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/gen/com/viewpagerindicator/BuildConfig.java
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/libs/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/libs/android-support-v13.jar
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/lint.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/pom.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/project.properties
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/color/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/color/vpi__dark_theme.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/color/vpi__light_theme.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-hdpi/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-hdpi/vpi__tab_selected_focused_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-hdpi/vpi__tab_selected_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-hdpi/vpi__tab_selected_pressed_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-hdpi/vpi__tab_unselected_focused_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-hdpi/vpi__tab_unselected_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-hdpi/vpi__tab_unselected_pressed_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-mdpi/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-mdpi/vpi__tab_selected_focused_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-mdpi/vpi__tab_selected_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-mdpi/vpi__tab_selected_pressed_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-mdpi/vpi__tab_unselected_focused_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-mdpi/vpi__tab_unselected_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-mdpi/vpi__tab_unselected_pressed_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-xhdpi/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-xhdpi/vpi__tab_selected_focused_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-xhdpi/vpi__tab_selected_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-xhdpi/vpi__tab_selected_pressed_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-xhdpi/vpi__tab_unselected_focused_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-xhdpi/vpi__tab_unselected_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable-xhdpi/vpi__tab_unselected_pressed_holo.9.png
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/drawable/vpi__tab_indicator.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/values/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/values/com_crashlytics_export_strings.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/values/vpi__attrs.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/values/vpi__colors.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/values/vpi__defaults.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/res/values/vpi__styles.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/src/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/src/com/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/src/com/viewpagerindicator/
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/src/com/viewpagerindicator/CirclePageIndicator.java
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/src/com/viewpagerindicator/IconPageIndicator.java
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/src/com/viewpagerindicator/IconPagerAdapter.java
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/src/com/viewpagerindicator/IcsLinearLayout.java
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/src/com/viewpagerindicator/LinePageIndicator.java
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/src/com/viewpagerindicator/PageIndicator.java
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/src/com/viewpagerindicator/TabPageIndicator.java
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/src/com/viewpagerindicator/TitlePageIndicator.java
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/ViewPagerIndicator/src/com/viewpagerindicator/UnderlinePageIndicator.java
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/checkstyle.xml
* libs_ext/JakeWharton-Android-ViewPagerIndicator-4.2/pom.xml
* libs_ext/SmoothProgressBar-master/
* libs_ext/SmoothProgressBar-master/.gitignore
* libs_ext/SmoothProgressBar-master/.travis.yml
* libs_ext/SmoothProgressBar-master/README.md
* libs_ext/SmoothProgressBar-master/build.gradle
* libs_ext/SmoothProgressBar-master/gradle.properties
* libs_ext/SmoothProgressBar-master/gradle/
* libs_ext/SmoothProgressBar-master/gradle/wrapper/
* libs_ext/SmoothProgressBar-master/gradle/wrapper/gradle-wrapper.jar
* libs_ext/SmoothProgressBar-master/gradle/wrapper/gradle-wrapper.properties
* libs_ext/SmoothProgressBar-master/gradlew
* libs_ext/SmoothProgressBar-master/gradlew.bat
* libs_ext/SmoothProgressBar-master/library/
* libs_ext/SmoothProgressBar-master/library/build.gradle
* libs_ext/SmoothProgressBar-master/library/gradle.properties
* libs_ext/SmoothProgressBar-master/library/src/
* libs_ext/SmoothProgressBar-master/library/src/main/
* libs_ext/SmoothProgressBar-master/library/src/main/AndroidManifest.xml
* libs_ext/SmoothProgressBar-master/library/src/main/project.properties
* libs_ext/SmoothProgressBar-master/library/src/main/res/
* libs_ext/SmoothProgressBar-master/library/src/main/res/values-v14/
* libs_ext/SmoothProgressBar-master/library/src/main/res/values-v14/styles.xml
* libs_ext/SmoothProgressBar-master/library/src/main/res/values/
* libs_ext/SmoothProgressBar-master/library/src/main/res/values/attrs.xml
* libs_ext/SmoothProgressBar-master/library/src/main/res/values/defaults.xml
* libs_ext/SmoothProgressBar-master/library/src/main/res/values/styles.xml
* libs_ext/SmoothProgressBar-master/library/src/main/src/
* libs_ext/SmoothProgressBar-master/library/src/main/src/fr/
* libs_ext/SmoothProgressBar-master/library/src/main/src/fr/castorflex/
* libs_ext/SmoothProgressBar-master/library/src/main/src/fr/castorflex/android/
* libs_ext/SmoothProgressBar-master/library/src/main/src/fr/castorflex/android/smoothprogressbar/
* libs_ext/SmoothProgressBar-master/library/src/main/src/fr/castorflex/android/smoothprogressbar/SmoothProgressBar.java
* libs_ext/SmoothProgressBar-master/library/src/main/src/fr/castorflex/android/smoothprogressbar/SmoothProgressDrawable.java
* libs_ext/SmoothProgressBar-master/maven_push.gradle
* libs_ext/SmoothProgressBar-master/settings.gradle
* libs_ext/android-donations-lib-master/
* libs_ext/android-donations-lib-master/.gitignore
* libs_ext/android-donations-lib-master/COPYING
* libs_ext/android-donations-lib-master/README.md
* libs_ext/android-donations-lib-master/build.gradle
* libs_ext/android-donations-lib-master/libraries/
* libs_ext/android-donations-lib-master/libraries/Donations/
* libs_ext/android-donations-lib-master/libraries/Donations/.gitignore
* libs_ext/android-donations-lib-master/libraries/Donations/build.gradle
* libs_ext/android-donations-lib-master/libraries/Donations/libs/
* libs_ext/android-donations-lib-master/libraries/Donations/libs/android-support-v4.jar
* libs_ext/android-donations-lib-master/libraries/Donations/src/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/.classpath
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/.project
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/.settings/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/.settings/org.eclipse.jdt.core.prefs
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/AndroidManifest.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/AndroidManifest.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/aidl/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/aidl/com/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/aidl/com/android/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/aidl/com/android/vending/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/aidl/com/android/vending/billing/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/aidl/com/android/vending/billing/IInAppBillingService.aidl
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/com/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/com/android/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/com/android/vending/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/com/android/vending/billing/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/com/android/vending/billing/IInAppBillingService$Stub$Proxy.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/com/android/vending/billing/IInAppBillingService$Stub.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/com/android/vending/billing/IInAppBillingService.aidl
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/com/android/vending/billing/IInAppBillingService.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/BuildConfig.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/DonationsFragment$1.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/DonationsFragment$2.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/DonationsFragment.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/Base64.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/Base64DecoderException.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabException.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabHelper$1.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabHelper$2$1.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabHelper$2.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabHelper$3$1.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabHelper$3$2.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabHelper$3.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabHelper$OnConsumeFinishedListener.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabHelper$OnConsumeMultiFinishedListener.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabHelper$OnIabPurchaseFinishedListener.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabHelper$OnIabSetupFinishedListener.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabHelper$QueryInventoryFinishedListener.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabHelper.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/IabResult.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/Inventory.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/Purchase.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/Security.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/classes/org/sufficientlysecure/donations/google/util/SkuDetails.class
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/bin/jarlist.cache
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/gen/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/gen/com/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/gen/com/android/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/gen/com/android/vending/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/gen/com/android/vending/billing/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/gen/com/android/vending/billing/IInAppBillingService.java
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/gen/org/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/gen/org/sufficientlysecure/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/gen/org/sufficientlysecure/donations/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/gen/org/sufficientlysecure/donations/BuildConfig.java
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/libs/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/libs/android-support-v4.jar
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/project.properties
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/layout/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/layout/donations__fragment.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/layout/donations__fragment_flattr.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/layout/donations__fragment_google.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/layout/donations__fragment_paypal.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-bg/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-bg/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-ca/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-ca/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-cs/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-cs/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-da-rDK/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-da-rDK/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-de-rDE/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-de-rDE/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-el/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-el/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-es-rES/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-es-rES/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-es-rMX/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-es-rMX/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-et-rEE/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-et-rEE/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-fi/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-fi/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-fr/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-fr/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-he/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-he/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-hr/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-hr/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-hu/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-hu/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-it/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-it/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-ja/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-ja/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-ko/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-ko/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-nl/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-nl/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-no-rNO/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-no-rNO/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-pl/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-pl/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-pt-rBR/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-pt-rBR/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-ro-rRO/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-ro-rRO/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-ru/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-ru/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-sl-rSI/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-sl-rSI/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-sv/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-sv/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-tr/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-tr/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-uk/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-uk/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-vi-rVN/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-vi-rVN/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-zh-rCN/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-zh-rCN/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-zh-rHK/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-zh-rHK/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-zh-rTW/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values-zh-rTW/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values/com_crashlytics_export_strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/res/values/donations__strings.xml
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/com/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/com/android/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/com/android/vending/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/com/android/vending/billing/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/com/android/vending/billing/IInAppBillingService.aidl
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/donations/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/donations/DonationsFragment.java
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/donations/google/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/donations/google/util/
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/donations/google/util/Base64.java
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/donations/google/util/Base64DecoderException.java
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/donations/google/util/IabException.java
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/donations/google/util/IabHelper.java
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/donations/google/util/IabResult.java
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/donations/google/util/Inventory.java
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/donations/google/util/Purchase.java
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/donations/google/util/Security.java
* libs_ext/android-donations-lib-master/libraries/Donations/src/main/src/org/sufficientlysecure/donations/google/util/SkuDetails.java
* libs_ext/android-donations-lib-master/screenshot.png
* libs_ext/android-donations-lib-master/settings.gradle
* libs_ext/facebook-android-sdk-3.6.0/
* libs_ext/facebook-android-sdk-3.6.0/CONTRIBUTING.mdown
* libs_ext/facebook-android-sdk-3.6.0/LICENSE.txt
* libs_ext/facebook-android-sdk-3.6.0/NOTICE.txt
* libs_ext/facebook-android-sdk-3.6.0/README.mdown
* proguard-project.txt
From Klyph Core:
* libs_ext/
* libs_ext/facebook-android-sdk-3.6.0/
* libs_ext/facebook-android-sdk-3.6.0/CONTRIBUTING.mdown
* libs_ext/facebook-android-sdk-3.6.0/LICENSE.txt
* libs_ext/facebook-android-sdk-3.6.0/NOTICE.txt
* libs_ext/facebook-android-sdk-3.6.0/README.mdown
* libs_ext/facebook-android-sdk-3.6.0/build.gradle
* libs_ext/facebook-android-sdk-3.6.0/facebook/
* libs_ext/facebook-android-sdk-3.6.0/facebook/.classpath
* libs_ext/facebook-android-sdk-3.6.0/facebook/.project
* libs_ext/facebook-android-sdk-3.6.0/facebook/.settings/
* libs_ext/facebook-android-sdk-3.6.0/facebook/.settings/org.eclipse.jdt.core.prefs
* libs_ext/facebook-android-sdk-3.6.0/facebook/AndroidManifest.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/build.gradle
* libs_ext/facebook-android-sdk-3.6.0/facebook/build.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/libs/
* libs_ext/facebook-android-sdk-3.6.0/facebook/libs/android-support-v13.jar
* libs_ext/facebook-android-sdk-3.6.0/facebook/project.properties
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-hdpi/
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-hdpi/com_facebook_button_blue_focused.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-hdpi/com_facebook_button_blue_normal.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-hdpi/com_facebook_button_blue_pressed.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-hdpi/com_facebook_button_grey_focused.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-hdpi/com_facebook_button_grey_normal.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-hdpi/com_facebook_button_grey_pressed.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-hdpi/com_facebook_close.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-hdpi/com_facebook_inverse_icon.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-hdpi/com_facebook_logo.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-hdpi/com_facebook_picker_magnifier.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-ldpi/
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-ldpi/com_facebook_close.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-mdpi/
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-mdpi/com_facebook_button_blue_focused.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-mdpi/com_facebook_button_blue_normal.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-mdpi/com_facebook_button_blue_pressed.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-mdpi/com_facebook_inverse_icon.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-mdpi/com_facebook_picker_magnifier.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-xhdpi/
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-xhdpi/com_facebook_button_blue_focused.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-xhdpi/com_facebook_button_blue_normal.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-xhdpi/com_facebook_button_blue_pressed.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-xhdpi/com_facebook_button_grey_focused.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-xhdpi/com_facebook_button_grey_normal.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-xhdpi/com_facebook_button_grey_pressed.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-xhdpi/com_facebook_close.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-xhdpi/com_facebook_inverse_icon.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-xhdpi/com_facebook_logo.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable-xhdpi/com_facebook_picker_magnifier.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_button_blue.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_button_blue_focused.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_button_blue_normal.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_button_blue_pressed.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_button_check.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_button_check_off.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_button_check_on.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_button_grey_focused.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_button_grey_normal.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_button_grey_pressed.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_close.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_inverse_icon.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_list_divider.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_list_section_header_background.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_loginbutton_silver.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_logo.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_picker_item_background.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_picker_list_focused.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_picker_list_longpressed.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_picker_list_pressed.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_picker_list_selector.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_picker_list_selector_background_transition.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_picker_list_selector_disabled.9.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_picker_top_button.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_place_default_icon.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_profile_default_icon.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_profile_picture_blank_portrait.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_profile_picture_blank_square.png
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_top_background.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_top_button.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/drawable/com_facebook_usersettingsfragment_background_gradient.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_friendpickerfragment.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_login_activity_layout.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_picker_activity_circle_row.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_picker_checkbox.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_picker_image.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_picker_list_row.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_picker_list_section_header.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_picker_search_box.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_picker_title_bar.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_picker_title_bar_stub.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_placepickerfragment.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_placepickerfragment_list_row.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_search_bar_layout.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/layout/com_facebook_usersettingsfragment.xml
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/values-es/
* libs_ext/facebook-android-sdk-3.6.0/facebook/res/values-es/strings.xml