This repository was archived by the owner on Apr 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathproject.pbxproj
2235 lines (2220 loc) · 169 KB
/
project.pbxproj
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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
2D6D00E81A16567D0042025E /* CloudDrive.png in Resources */ = {isa = PBXBuildFile; fileRef = 2D6D00E41A1655250042025E /* CloudDrive.png */; };
2D6D00E91A16567D0042025E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 2D6D00E51A1655250042025E /* [email protected] */; };
2D6D00EA1A1656B40042025E /* CloudDrive.png in Resources */ = {isa = PBXBuildFile; fileRef = 2D6D00E41A1655250042025E /* CloudDrive.png */; };
2D6D00EB1A1656B40042025E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 2D6D00E51A1655250042025E /* [email protected] */; };
32D0E377C09CE15B68BCBE91 /* libPods-FPPicker Functional Tests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4DB461E0210D9418309BA294 /* libPods-FPPicker Functional Tests.a */; };
4504082519F12B0400DB26AF /* FPTableCellView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4504082319F12B0400DB26AF /* FPTableCellView.h */; };
4504082619F12B0400DB26AF /* FPTableCellView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4504082419F12B0400DB26AF /* FPTableCellView.m */; };
4504082919F1326700DB26AF /* FPRepresentedSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 4504082719F1326700DB26AF /* FPRepresentedSource.h */; };
4504082A19F1326700DB26AF /* FPRepresentedSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 4504082819F1326700DB26AF /* FPRepresentedSource.m */; };
4504082D19F1702F00DB26AF /* FPDialogController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4504082B19F1702F00DB26AF /* FPDialogController.h */; };
4504082E19F1702F00DB26AF /* FPDialogController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4504082C19F1702F00DB26AF /* FPDialogController.m */; };
45066A9E19A1F6D10069B062 /* xui-2.3.2.min.js in Resources */ = {isa = PBXBuildFile; fileRef = 45066A9A19A1F5920069B062 /* xui-2.3.2.min.js */; };
45066AA219A1F9B20069B062 /* FPUtils+ResourceHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 45066A9F19A1F9B20069B062 /* FPUtils+ResourceHelpers.h */; };
45066AA419A1F9B20069B062 /* FPUtils+ResourceHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 45066AA019A1F9B20069B062 /* FPUtils+ResourceHelpers.m */; };
45066AA619A203190069B062 /* FPPickerController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 45066AA519A203190069B062 /* FPPickerController.xib */; };
45066AAB19A204040069B062 /* FPAuthController.h in Headers */ = {isa = PBXBuildFile; fileRef = 45066AA719A204040069B062 /* FPAuthController.h */; settings = {ATTRIBUTES = (Public, ); }; };
45066AAC19A204040069B062 /* FPAuthController.m in Sources */ = {isa = PBXBuildFile; fileRef = 45066AA819A204040069B062 /* FPAuthController.m */; };
45066AAD19A204040069B062 /* FPRemoteSourceController.h in Headers */ = {isa = PBXBuildFile; fileRef = 45066AA919A204040069B062 /* FPRemoteSourceController.h */; };
45066AAE19A204040069B062 /* FPRemoteSourceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 45066AAA19A204040069B062 /* FPRemoteSourceController.m */; };
4508FCBC19A74D150009CDF0 /* FPNavigationController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4508FCBA19A74D150009CDF0 /* FPNavigationController.h */; };
4508FCBD19A74D150009CDF0 /* FPNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4508FCBB19A74D150009CDF0 /* FPNavigationController.m */; };
4531449319EC3ED0003230F5 /* FPPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A0314C15A89E040085E186 /* FPPicker.h */; settings = {ATTRIBUTES = (Public, ); }; };
4531449419EC3F02003230F5 /* FPMediaInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 45CD26D6199CB64C0048B483 /* FPMediaInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
4531449519EC3F02003230F5 /* FPConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 45920DDE194A0D8A007003C1 /* FPConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
4531449619EC3F02003230F5 /* FPConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A0314615A89E040085E186 /* FPConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
4531449719EC3F02003230F5 /* FPExternalHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 453B7A3E19DEA59F000D2841 /* FPExternalHeaders.h */; settings = {ATTRIBUTES = (Public, ); }; };
4531449819EC3F25003230F5 /* FPPickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A0314D15A89E040085E186 /* FPPickerController.h */; settings = {ATTRIBUTES = (Public, ); }; };
4531449919EC3F25003230F5 /* FPSaveController.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A031B915A8F2570085E186 /* FPSaveController.h */; settings = {ATTRIBUTES = (Public, ); }; };
4531449A19EC3F3E003230F5 /* FPSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A031A515A8A4AC0085E186 /* FPSource.m */; };
4531449B19EC3F3E003230F5 /* FPSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 455E5C991973CD3500CED98E /* FPSession.m */; };
4531449C19EC3F3E003230F5 /* FPMediaInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 45CD26D7199CB64C0048B483 /* FPMediaInfo.m */; };
4531449D19EC3F46003230F5 /* NSData+FPHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 45A2C34A197438B4009D436D /* NSData+FPHexString.h */; };
4531449E19EC3F46003230F5 /* FPSession+ConvenienceMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 45B7606C19758251007C9284 /* FPSession+ConvenienceMethods.h */; };
4531449F19EC3F46003230F5 /* FPSource+SupportedSources.h in Headers */ = {isa = PBXBuildFile; fileRef = 4587CB2419A4B31C00667D29 /* FPSource+SupportedSources.h */; settings = {ATTRIBUTES = (Public, ); }; };
453144A019EC3F46003230F5 /* FPUtils+ResourceHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 45066A9F19A1F9B20069B062 /* FPUtils+ResourceHelpers.h */; };
453144A219EC3F4E003230F5 /* NSData+FPHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 45A2C34B197438B4009D436D /* NSData+FPHexString.m */; };
453144A319EC3F4E003230F5 /* FPSession+ConvenienceMethods.m in Sources */ = {isa = PBXBuildFile; fileRef = 45B7606D19758251007C9284 /* FPSession+ConvenienceMethods.m */; };
453144A419EC3F4E003230F5 /* FPSource+SupportedSources.m in Sources */ = {isa = PBXBuildFile; fileRef = 4587CB2519A4B31C00667D29 /* FPSource+SupportedSources.m */; };
453144A519EC3F4E003230F5 /* FPUtils+ResourceHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 45066AA019A1F9B20069B062 /* FPUtils+ResourceHelpers.m */; };
453144A719EC3F59003230F5 /* FPProgressTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C136A81856794000D6940E /* FPProgressTracker.h */; };
453144A819EC3F5C003230F5 /* FPProgressTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 02C136A91856794000D6940E /* FPProgressTracker.m */; };
453144A919EC3F66003230F5 /* FPAPIClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 45ADBF6E1951A44000EB2215 /* FPAPIClient.h */; };
453144AA19EC3F69003230F5 /* FPAPIClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 45ADBF6F1951A44000EB2215 /* FPAPIClient.m */; };
453144AB19EC3F6F003230F5 /* FPConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 45920DDF194A0D8A007003C1 /* FPConfig.m */; };
453144AC19EC3F83003230F5 /* FPConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A0314715A89E040085E186 /* FPConstants.m */; };
453144AD19EC3F89003230F5 /* FPMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 45920DDD194A0D2E007003C1 /* FPMacros.h */; };
453144AE19EC3F8C003230F5 /* FPMultipartUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 451051DF195B300E00F877B3 /* FPMultipartUploader.h */; };
453144AF19EC3F90003230F5 /* FPMultipartUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 451051E0195B300E00F877B3 /* FPMultipartUploader.m */; };
453144B019EC3F92003230F5 /* FPPrivateConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 4546386F19825A0500102885 /* FPPrivateConfig.h */; };
453144B119EC3F95003230F5 /* FPSharedInternalHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 45718C0C199D14AA00C27324 /* FPSharedInternalHeaders.h */; };
453144B219EC3F99003230F5 /* FPSinglepartUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 45B71DDB19768B33006B5DAF /* FPSinglepartUploader.h */; };
453144B319EC3F99003230F5 /* FPSinglepartUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 45B71DDC19768B33006B5DAF /* FPSinglepartUploader.m */; };
453144B419EC3F99003230F5 /* FPUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 45B71DDF19768B68006B5DAF /* FPUploader.h */; };
453144B519EC3F99003230F5 /* FPUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 45B71DE019768B68006B5DAF /* FPUploader.m */; };
453144B619EC3F99003230F5 /* FPUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 453096E4194738A6001D970C /* FPUtils.h */; };
453144B719EC3F99003230F5 /* FPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 453096E5194738A6001D970C /* FPUtils.m */; };
453144B819EC3F99003230F5 /* FPTypedefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 45CD2718199CCB9A0048B483 /* FPTypedefs.h */; };
453144B919EC3FA4003230F5 /* FPUtils+iOS.h in Headers */ = {isa = PBXBuildFile; fileRef = 45FCE703199B665800D86B40 /* FPUtils+iOS.h */; };
453144BA19EC3FA4003230F5 /* FPUtils+iOS.m in Sources */ = {isa = PBXBuildFile; fileRef = 45FCE704199B665800D86B40 /* FPUtils+iOS.m */; };
453144BD19EC3FA8003230F5 /* FPThumbCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 831E0B4515AAC3F30081004F /* FPThumbCell.h */; };
453144BE19EC3FA8003230F5 /* FPThumbCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 831E0B4615AAC3F30081004F /* FPThumbCell.m */; };
453144BF19EC3FAF003230F5 /* FPSaveController.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A031BA15A8F2570085E186 /* FPSaveController.m */; };
453144C019EC3FB2003230F5 /* FPPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A0314E15A89E040085E186 /* FPPickerController.m */; };
453144C119EC3FB5003230F5 /* FPImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4572913619CAE6D900447FAB /* FPImagePickerController.m */; };
453144C219EC3FB8003230F5 /* FPImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4572913519CAE6D900447FAB /* FPImagePickerController.h */; };
453144C319EC3FC4003230F5 /* FPLocalController.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A0314A15A89E040085E186 /* FPLocalController.h */; };
453144C419EC3FC4003230F5 /* FPLocalController.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A0314B15A89E040085E186 /* FPLocalController.m */; };
453144C519EC3FC4003230F5 /* FPLocalAlbumController.h in Headers */ = {isa = PBXBuildFile; fileRef = 832739F1171F384E000A4A23 /* FPLocalAlbumController.h */; };
453144C619EC3FC4003230F5 /* FPLocalAlbumController.m in Sources */ = {isa = PBXBuildFile; fileRef = 832739F2171F384F000A4A23 /* FPLocalAlbumController.m */; };
453144C719EC3FC4003230F5 /* FPSourceController.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A0315115A89E040085E186 /* FPSourceController.h */; };
453144C819EC3FC4003230F5 /* FPSourceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A0315215A89E040085E186 /* FPSourceController.m */; };
453144C919EC3FC4003230F5 /* FPSaveSourceController.h in Headers */ = {isa = PBXBuildFile; fileRef = 831E0ABC15AA6E460081004F /* FPSaveSourceController.h */; };
453144CA19EC3FC4003230F5 /* FPSaveSourceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 831E0ABD15AA6E460081004F /* FPSaveSourceController.m */; };
453144CB19EC3FC4003230F5 /* FPSearchController.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A0314F15A89E040085E186 /* FPSearchController.h */; };
453144CC19EC3FC4003230F5 /* FPSearchController.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A0315015A89E040085E186 /* FPSearchController.m */; };
453144CD19EC3FC4003230F5 /* FPAuthController.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A0314315A89E040085E186 /* FPAuthController.h */; settings = {ATTRIBUTES = (Public, ); }; };
453144CE19EC3FC4003230F5 /* FPAuthController.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A0314415A89E040085E186 /* FPAuthController.m */; };
453144CF19EC3FC4003230F5 /* FPInfoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 836A9D38169B5CF0006AC920 /* FPInfoViewController.h */; };
453144D019EC3FC4003230F5 /* FPInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 836A9D39169B5CF0006AC920 /* FPInfoViewController.m */; };
453144D119EC3FC4003230F5 /* FPTableWithUploadButtonViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0266B3A1184EB1A800A91862 /* FPTableWithUploadButtonViewController.h */; };
453144D219EC3FC4003230F5 /* FPTableWithUploadButtonViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0266B3A2184EB1A800A91862 /* FPTableWithUploadButtonViewController.m */; };
453144D319EC3FC9003230F5 /* FPSourceListController.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A0315315A89E050085E186 /* FPSourceListController.h */; };
453144D419EC3FC9003230F5 /* FPSourceListController.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A0315415A89E050085E186 /* FPSourceListController.m */; };
453144D519EC3FCF003230F5 /* FPInternalHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A031DD15AA14820085E186 /* FPInternalHeaders.h */; };
453144D619EC3FD2003230F5 /* FPiOSMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 45FCE70C199B74B600D86B40 /* FPiOSMacros.h */; };
4533A3F419F6661400FE9738 /* FPTableView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4533A3F219F6661400FE9738 /* FPTableView.h */; };
4533A3F519F6661400FE9738 /* FPTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4533A3F319F6661400FE9738 /* FPTableView.m */; };
453B7A4019DEA59F000D2841 /* FPExternalHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 453B7A3E19DEA59F000D2841 /* FPExternalHeaders.h */; settings = {ATTRIBUTES = (Public, ); }; };
4546C12819EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD5199CDF74002DE7D3 /* [email protected] */; };
4546C12919EC4BCC00477C9B /* glyphicons_366_picasa.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC8199CDF74002DE7D3 /* glyphicons_366_picasa.png */; };
4546C12A19EC4BCC00477C9B /* FilepickerSettings.plist in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB5199CDF74002DE7D3 /* FilepickerSettings.plist */; };
4546C12B19EC4BCC00477C9B /* glyphicons_390_facebook.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ACE199CDF74002DE7D3 /* glyphicons_390_facebook.png */; };
4546C12C19EC4BCC00477C9B /* glyphicons_361_dropbox.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC6199CDF74002DE7D3 /* glyphicons_361_dropbox.png */; };
4546C12D19EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD1199CDF74002DE7D3 /* [email protected] */; };
4546C12E19EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ACF199CDF74002DE7D3 /* [email protected] */; };
4546C12F19EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ABB199CDF74002DE7D3 /* [email protected] */; };
4546C13019EC4BCC00477C9B /* glyphicons_008_film.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB6199CDF74002DE7D3 /* glyphicons_008_film.png */; };
4546C13119EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AE2199CDF74002DE7D3 /* [email protected] */; };
4546C13219EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AE6199CDF74002DE7D3 /* [email protected] */; };
4546C13319EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ABD199CDF74002DE7D3 /* [email protected] */; };
4546C13419EC4BCC00477C9B /* glyphicons_sb3_skydrive.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD8199CDF74002DE7D3 /* glyphicons_sb3_skydrive.png */; };
4546C13519EC4BCC00477C9B /* GoogleDrive.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ADA199CDF74002DE7D3 /* GoogleDrive.png */; };
4546C13619EC4BCC00477C9B /* glyphicons_180_facetime_video.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC2199CDF74002DE7D3 /* glyphicons_180_facetime_video.png */; };
4546C13819EC4BCC00477C9B /* glyphicons_sb2_box.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD6199CDF74002DE7D3 /* glyphicons_sb2_box.png */; };
4546C13919EC4BCC00477C9B /* glyphicons_381_github.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ACC199CDF74002DE7D3 /* glyphicons_381_github.png */; };
4546C13A19EC4BCC00477C9B /* logo_small.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ADE199CDF74002DE7D3 /* logo_small.png */; };
4546C13B19EC4BCC00477C9B /* placeholder.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AE0199CDF74002DE7D3 /* placeholder.png */; };
4546C13C19EC4BCC00477C9B /* glyphicons_011_camera.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB8199CDF74002DE7D3 /* glyphicons_011_camera.png */; };
4546C13D19EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC9199CDF74002DE7D3 /* [email protected] */; };
4546C13E19EC4BCC00477C9B /* glyphicons_399_e-mail.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD2199CDF74002DE7D3 /* glyphicons_399_e-mail.png */; };
4546C13F19EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD7199CDF74002DE7D3 /* [email protected] */; };
4546C14019EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC1199CDF74002DE7D3 /* [email protected] */; };
4546C14119EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ADD199CDF74002DE7D3 /* [email protected] */; };
4546C14219EC4BCC00477C9B /* glyphicons_395_flickr.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD0199CDF74002DE7D3 /* glyphicons_395_flickr.png */; };
4546C14319EC4BCC00477C9B /* glyphicons_300_microphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC4199CDF74002DE7D3 /* glyphicons_300_microphone.png */; };
4546C14419EC4BCC00477C9B /* glyphicons_144_folder_open.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ABE199CDF74002DE7D3 /* glyphicons_144_folder_open.png */; };
4546C14519EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC5199CDF74002DE7D3 /* [email protected] */; };
4546C14619EC4BCC00477C9B /* glyphicons_027_search.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ABA199CDF74002DE7D3 /* glyphicons_027_search.png */; };
4546C14719EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB7199CDF74002DE7D3 /* [email protected] */; };
4546C14819EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD3199CDF74002DE7D3 /* [email protected] */; };
4546C14919EC4BCC00477C9B /* glyphicons_036_file.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ABC199CDF74002DE7D3 /* glyphicons_036_file.png */; };
4546C14A19EC4BCC00477C9B /* glyphicons_154_show_big_thumbnails.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC0199CDF74002DE7D3 /* glyphicons_154_show_big_thumbnails.png */; };
4546C14B19EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC3199CDF74002DE7D3 /* [email protected] */; };
4546C14C19EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ADB199CDF74002DE7D3 /* [email protected] */; };
4546C14D19EC4BCC00477C9B /* SelectOverlayiOS7.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AE5199CDF74002DE7D3 /* SelectOverlayiOS7.png */; };
4546C14E19EC4BCC00477C9B /* select.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AE1199CDF74002DE7D3 /* select.png */; };
4546C14F19EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ADF199CDF74002DE7D3 /* [email protected] */; };
4546C15019EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC7199CDF74002DE7D3 /* [email protected] */; };
4546C15119EC4BCC00477C9B /* allowedUrlPrefix.plist in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB2199CDF74002DE7D3 /* allowedUrlPrefix.plist */; };
4546C15219EC4BCC00477C9B /* Instagram.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ADC199CDF74002DE7D3 /* Instagram.png */; };
4546C15319EC4BCC00477C9B /* glyphicons_sb1_gmail.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD4199CDF74002DE7D3 /* glyphicons_sb1_gmail.png */; };
4546C15419EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD9199CDF74002DE7D3 /* [email protected] */; };
4546C15519EC4BCC00477C9B /* glyphicons_371_evernote.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ACA199CDF74002DE7D3 /* glyphicons_371_evernote.png */; };
4546C15619EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ACD199CDF74002DE7D3 /* [email protected] */; };
4546C15719EC4BCC00477C9B /* disallowedUrlPrefix.plist in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB4199CDF74002DE7D3 /* disallowedUrlPrefix.plist */; };
4546C15819EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB9199CDF74002DE7D3 /* [email protected] */; };
4546C15919EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ACB199CDF74002DE7D3 /* [email protected] */; };
4546C15A19EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ABF199CDF74002DE7D3 /* [email protected] */; };
4546C15B19EC4BCC00477C9B /* glyphicons_020_home.png in Resources */ = {isa = PBXBuildFile; fileRef = 4587CB2A19A4CB2900667D29 /* glyphicons_020_home.png */; };
4546C15C19EC4BCC00477C9B /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 4587CB2B19A4CB2900667D29 /* [email protected] */; };
4546C15D19EC4BCC00477C9B /* xui-2.3.2.min.js in Resources */ = {isa = PBXBuildFile; fileRef = 45066A9A19A1F5920069B062 /* xui-2.3.2.min.js */; };
4546C16519EC4C3C00477C9B /* FPPicker.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 4546C16119EC4BCC00477C9B /* FPPicker.bundle */; };
454D3A9219F80DF2009C53FE /* FPNavigationHistory.h in Headers */ = {isa = PBXBuildFile; fileRef = 454D3A9019F80DF2009C53FE /* FPNavigationHistory.h */; };
454D3A9319F80DF2009C53FE /* FPNavigationHistory.m in Sources */ = {isa = PBXBuildFile; fileRef = 454D3A9119F80DF2009C53FE /* FPNavigationHistory.m */; };
455192581B5D122800DCC05A /* FPSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A031A415A8A4AC0085E186 /* FPSource.h */; settings = {ATTRIBUTES = (Public, ); }; };
455E5C9D1973DB8400CED98E /* FPSessionTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 455E5C9C1973DB8400CED98E /* FPSessionTests.m */; };
456263D519EFE72700A34C29 /* FPFileDownloadController.h in Headers */ = {isa = PBXBuildFile; fileRef = 456263D319EFE72700A34C29 /* FPFileDownloadController.h */; };
456263D619EFE72700A34C29 /* FPFileDownloadController.m in Sources */ = {isa = PBXBuildFile; fileRef = 456263D419EFE72700A34C29 /* FPFileDownloadController.m */; };
456263D919EFEFBE00A34C29 /* FPFileUploadController.h in Headers */ = {isa = PBXBuildFile; fileRef = 456263D719EFEFBE00A34C29 /* FPFileUploadController.h */; };
456263DA19EFEFBE00A34C29 /* FPFileUploadController.m in Sources */ = {isa = PBXBuildFile; fileRef = 456263D819EFEFBE00A34C29 /* FPFileUploadController.m */; };
456263DD19EFF6F700A34C29 /* FPLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 456263DB19EFF6F700A34C29 /* FPLibrary.h */; };
456263DE19EFF6F700A34C29 /* FPLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 456263DB19EFF6F700A34C29 /* FPLibrary.h */; };
456263DF19EFF6F700A34C29 /* FPLibrary.m in Sources */ = {isa = PBXBuildFile; fileRef = 456263DC19EFF6F700A34C29 /* FPLibrary.m */; };
456263E019EFF6F700A34C29 /* FPLibrary.m in Sources */ = {isa = PBXBuildFile; fileRef = 456263DC19EFF6F700A34C29 /* FPLibrary.m */; };
456263E719EFFC5200A34C29 /* FPLibrary+iOS.h in Headers */ = {isa = PBXBuildFile; fileRef = 456263E519EFFC5200A34C29 /* FPLibrary+iOS.h */; };
456263E819EFFC5200A34C29 /* FPLibrary+iOS.m in Sources */ = {isa = PBXBuildFile; fileRef = 456263E619EFFC5200A34C29 /* FPLibrary+iOS.m */; };
456263EC19F0234800A34C29 /* FPUtils+Mac.h in Headers */ = {isa = PBXBuildFile; fileRef = 456263EA19F0234800A34C29 /* FPUtils+Mac.h */; };
456263ED19F0234800A34C29 /* FPUtils+Mac.m in Sources */ = {isa = PBXBuildFile; fileRef = 456263EB19F0234800A34C29 /* FPUtils+Mac.m */; };
456498A219EC46ED009B69A1 /* FPPicker.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 83A0317415A8A2A40085E186 /* FPPicker.bundle */; };
456D94E9194F0B3F00D0A34E /* FPConfigTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 456D94E8194F0B3F00D0A34E /* FPConfigTests.m */; };
456D94EB194F0BD500D0A34E /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 456D9478194F010400D0A34E /* AssetsLibrary.framework */; };
456D94EC194F0C0000D0A34E /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83A031B615A8EEC40085E186 /* MobileCoreServices.framework */; };
456FCB521B5E786500A43A82 /* FPSimpleAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 456FCB501B5E786500A43A82 /* FPSimpleAPI.h */; settings = {ATTRIBUTES = (Public, ); }; };
456FCB531B5E786500A43A82 /* FPSimpleAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 456FCB501B5E786500A43A82 /* FPSimpleAPI.h */; settings = {ATTRIBUTES = (Public, ); }; };
456FCB541B5E786500A43A82 /* FPSimpleAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 456FCB511B5E786500A43A82 /* FPSimpleAPI.m */; };
456FCB551B5E786500A43A82 /* FPSimpleAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 456FCB511B5E786500A43A82 /* FPSimpleAPI.m */; };
456FCB571B5E79FD00A43A82 /* FPRepresentedSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 4504082819F1326700DB26AF /* FPRepresentedSource.m */; };
456FCB581B5E7A0A00A43A82 /* FPSourcePath.h in Headers */ = {isa = PBXBuildFile; fileRef = 45936F9619F4729400ACEE97 /* FPSourcePath.h */; };
456FCB591B5E7A0D00A43A82 /* FPSourcePath.m in Sources */ = {isa = PBXBuildFile; fileRef = 45936F9719F4729400ACEE97 /* FPSourcePath.m */; };
45718C0E199D14AA00C27324 /* FPSharedInternalHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 45718C0C199D14AA00C27324 /* FPSharedInternalHeaders.h */; };
4571E1F7199CF1030093E841 /* FPConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 45920DDE194A0D8A007003C1 /* FPConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
4572914819CAFE2900447FAB /* FPImageBrowserView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4572914619CAFE2900447FAB /* FPImageBrowserView.h */; };
4572914919CAFE2900447FAB /* FPImageBrowserView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4572914719CAFE2900447FAB /* FPImageBrowserView.m */; };
45765FD019A4A0C50018E2EC /* FPSourceListController.h in Headers */ = {isa = PBXBuildFile; fileRef = 45765FCE19A4A0C50018E2EC /* FPSourceListController.h */; };
45765FD119A4A0C50018E2EC /* FPSourceListController.m in Sources */ = {isa = PBXBuildFile; fileRef = 45765FCF19A4A0C50018E2EC /* FPSourceListController.m */; };
4578B08519E824BD00B188F3 /* FPFileTransferController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4578B08219E824BD00B188F3 /* FPFileTransferController.h */; };
4578B08619E824BD00B188F3 /* FPFileTransferController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4578B08319E824BD00B188F3 /* FPFileTransferController.m */; };
4578B08719E824BD00B188F3 /* FPFileTransferController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4578B08419E824BD00B188F3 /* FPFileTransferController.xib */; };
4579CF54199CEAF200E0BCB4 /* FPSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A031A415A8A4AC0085E186 /* FPSource.h */; settings = {ATTRIBUTES = (Public, ); }; };
4579CF55199CEAF200E0BCB4 /* FPSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A031A515A8A4AC0085E186 /* FPSource.m */; };
4579CF56199CEAF200E0BCB4 /* FPSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 455E5C981973CD3500CED98E /* FPSession.h */; };
4579CF57199CEAF200E0BCB4 /* FPSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 455E5C991973CD3500CED98E /* FPSession.m */; };
4579CF58199CEAF200E0BCB4 /* FPMediaInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 45CD26D6199CB64C0048B483 /* FPMediaInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
4579CF59199CEAF200E0BCB4 /* FPMediaInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 45CD26D7199CB64C0048B483 /* FPMediaInfo.m */; };
4579CF5A199CEAFC00E0BCB4 /* NSData+FPHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 45A2C34A197438B4009D436D /* NSData+FPHexString.h */; };
4579CF5B199CEAFC00E0BCB4 /* NSData+FPHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 45A2C34B197438B4009D436D /* NSData+FPHexString.m */; };
4579CF5C199CEAFC00E0BCB4 /* FPSession+ConvenienceMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = 45B7606C19758251007C9284 /* FPSession+ConvenienceMethods.h */; };
4579CF5D199CEAFC00E0BCB4 /* FPSession+ConvenienceMethods.m in Sources */ = {isa = PBXBuildFile; fileRef = 45B7606D19758251007C9284 /* FPSession+ConvenienceMethods.m */; };
4579CF5F199CEB0100E0BCB4 /* FPAPIClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 45ADBF6E1951A44000EB2215 /* FPAPIClient.h */; };
4579CF60199CEB0100E0BCB4 /* FPAPIClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 45ADBF6F1951A44000EB2215 /* FPAPIClient.m */; };
4579CF62199CEB0100E0BCB4 /* FPConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 45920DDF194A0D8A007003C1 /* FPConfig.m */; };
4579CF63199CEB0100E0BCB4 /* FPConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A0314615A89E040085E186 /* FPConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
4579CF64199CEB0100E0BCB4 /* FPConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A0314715A89E040085E186 /* FPConstants.m */; };
4579CF65199CEB0100E0BCB4 /* FPMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 45920DDD194A0D2E007003C1 /* FPMacros.h */; };
4579CF66199CEB0100E0BCB4 /* FPMultipartUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 451051DF195B300E00F877B3 /* FPMultipartUploader.h */; };
4579CF67199CEB0100E0BCB4 /* FPMultipartUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 451051E0195B300E00F877B3 /* FPMultipartUploader.m */; };
4579CF68199CEB0100E0BCB4 /* FPPrivateConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 4546386F19825A0500102885 /* FPPrivateConfig.h */; };
4579CF69199CEB0100E0BCB4 /* FPSinglepartUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 45B71DDB19768B33006B5DAF /* FPSinglepartUploader.h */; };
4579CF6A199CEB0100E0BCB4 /* FPSinglepartUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 45B71DDC19768B33006B5DAF /* FPSinglepartUploader.m */; };
4579CF6B199CEB0100E0BCB4 /* FPUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 45B71DDF19768B68006B5DAF /* FPUploader.h */; };
4579CF6C199CEB0100E0BCB4 /* FPUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 45B71DE019768B68006B5DAF /* FPUploader.m */; };
4579CF6D199CEB0100E0BCB4 /* FPUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 453096E4194738A6001D970C /* FPUtils.h */; };
4579CF6E199CEB0100E0BCB4 /* FPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 453096E5194738A6001D970C /* FPUtils.m */; };
4579CF6F199CEB0100E0BCB4 /* FPTypedefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 45CD2718199CCB9A0048B483 /* FPTypedefs.h */; };
4579CF70199CEB0600E0BCB4 /* FPProgressTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C136A81856794000D6940E /* FPProgressTracker.h */; };
4579CF71199CEB0600E0BCB4 /* FPProgressTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 02C136A91856794000D6940E /* FPProgressTracker.m */; };
45808B5519B46A7D00ECBDA1 /* FPThumbnail.h in Headers */ = {isa = PBXBuildFile; fileRef = 45808B5319B46A7D00ECBDA1 /* FPThumbnail.h */; };
45808B5619B46A7D00ECBDA1 /* FPThumbnail.m in Sources */ = {isa = PBXBuildFile; fileRef = 45808B5419B46A7D00ECBDA1 /* FPThumbnail.m */; };
45808B5919B4726D00ECBDA1 /* FPSourceResultsController.h in Headers */ = {isa = PBXBuildFile; fileRef = 45808B5719B4726D00ECBDA1 /* FPSourceResultsController.h */; };
45808B5A19B4726D00ECBDA1 /* FPSourceResultsController.m in Sources */ = {isa = PBXBuildFile; fileRef = 45808B5819B4726D00ECBDA1 /* FPSourceResultsController.m */; };
4587CB2719A4B31C00667D29 /* FPSource+SupportedSources.h in Headers */ = {isa = PBXBuildFile; fileRef = 4587CB2419A4B31C00667D29 /* FPSource+SupportedSources.h */; settings = {ATTRIBUTES = (Public, ); }; };
4587CB2919A4B31C00667D29 /* FPSource+SupportedSources.m in Sources */ = {isa = PBXBuildFile; fileRef = 4587CB2519A4B31C00667D29 /* FPSource+SupportedSources.m */; };
4587CB2C19A4CB2900667D29 /* glyphicons_020_home.png in Resources */ = {isa = PBXBuildFile; fileRef = 4587CB2A19A4CB2900667D29 /* glyphicons_020_home.png */; };
4587CB2E19A4CB2900667D29 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 4587CB2B19A4CB2900667D29 /* [email protected] */; };
458B1FEC1949D726008360E9 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 458B1FEB1949D726008360E9 /* XCTest.framework */; };
458B1FED1949D726008360E9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83A030E515A89C9D0085E186 /* Foundation.framework */; };
458B200D1949D7C1008360E9 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 458B20021949D7C1008360E9 /* InfoPlist.strings */; };
458B20101949D7C1008360E9 /* OHHTTPStubs+ConveniencyMethods.m in Sources */ = {isa = PBXBuildFile; fileRef = 458B200A1949D7C1008360E9 /* OHHTTPStubs+ConveniencyMethods.m */; };
458D91F41B679AE6004C5B85 /* FPWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 458D91F21B679AE6004C5B85 /* FPWindow.h */; };
458D91F51B679AE6004C5B85 /* FPWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 458D91F31B679AE6004C5B85 /* FPWindow.m */; };
45936F9819F4729400ACEE97 /* FPSourcePath.h in Headers */ = {isa = PBXBuildFile; fileRef = 45936F9619F4729400ACEE97 /* FPSourcePath.h */; };
45936F9919F4729400ACEE97 /* FPSourcePath.m in Sources */ = {isa = PBXBuildFile; fileRef = 45936F9719F4729400ACEE97 /* FPSourcePath.m */; };
45AB16D219EC404A00BF97E0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83A030E515A89C9D0085E186 /* Foundation.framework */; };
45AB16D519EC406300BF97E0 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83A031B615A8EEC40085E186 /* MobileCoreServices.framework */; };
45ADBF7D1951BBA100EB2215 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 45ADBF7C1951BBA100EB2215 /* SystemConfiguration.framework */; };
45B7D0A7194F4C1A009C4AB6 /* FPSourceTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 45B7D0A6194F4C1A009C4AB6 /* FPSourceTests.m */; };
45B9888819A4F12300CE7DFC /* FPBorderView.h in Headers */ = {isa = PBXBuildFile; fileRef = 45B9888619A4F12300CE7DFC /* FPBorderView.h */; };
45B9888919A4F12300CE7DFC /* FPBorderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 45B9888719A4F12300CE7DFC /* FPBorderView.m */; };
45C13AE7199CDF74002DE7D3 /* allowedUrlPrefix.plist in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB2199CDF74002DE7D3 /* allowedUrlPrefix.plist */; };
45C13AE9199CDF74002DE7D3 /* disallowedUrlPrefix.plist in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB4199CDF74002DE7D3 /* disallowedUrlPrefix.plist */; };
45C13AEA199CDF74002DE7D3 /* FilepickerSettings.plist in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB5199CDF74002DE7D3 /* FilepickerSettings.plist */; };
45C13AEB199CDF74002DE7D3 /* glyphicons_008_film.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB6199CDF74002DE7D3 /* glyphicons_008_film.png */; };
45C13AEC199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB7199CDF74002DE7D3 /* [email protected] */; };
45C13AED199CDF74002DE7D3 /* glyphicons_011_camera.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB8199CDF74002DE7D3 /* glyphicons_011_camera.png */; };
45C13AEE199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AB9199CDF74002DE7D3 /* [email protected] */; };
45C13AEF199CDF74002DE7D3 /* glyphicons_027_search.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ABA199CDF74002DE7D3 /* glyphicons_027_search.png */; };
45C13AF0199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ABB199CDF74002DE7D3 /* [email protected] */; };
45C13AF1199CDF74002DE7D3 /* glyphicons_036_file.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ABC199CDF74002DE7D3 /* glyphicons_036_file.png */; };
45C13AF2199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ABD199CDF74002DE7D3 /* [email protected] */; };
45C13AF3199CDF74002DE7D3 /* glyphicons_144_folder_open.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ABE199CDF74002DE7D3 /* glyphicons_144_folder_open.png */; };
45C13AF4199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ABF199CDF74002DE7D3 /* [email protected] */; };
45C13AF5199CDF74002DE7D3 /* glyphicons_154_show_big_thumbnails.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC0199CDF74002DE7D3 /* glyphicons_154_show_big_thumbnails.png */; };
45C13AF6199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC1199CDF74002DE7D3 /* [email protected] */; };
45C13AF7199CDF74002DE7D3 /* glyphicons_180_facetime_video.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC2199CDF74002DE7D3 /* glyphicons_180_facetime_video.png */; };
45C13AF8199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC3199CDF74002DE7D3 /* [email protected] */; };
45C13AF9199CDF74002DE7D3 /* glyphicons_300_microphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC4199CDF74002DE7D3 /* glyphicons_300_microphone.png */; };
45C13AFA199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC5199CDF74002DE7D3 /* [email protected] */; };
45C13AFB199CDF74002DE7D3 /* glyphicons_361_dropbox.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC6199CDF74002DE7D3 /* glyphicons_361_dropbox.png */; };
45C13AFC199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC7199CDF74002DE7D3 /* [email protected] */; };
45C13AFD199CDF74002DE7D3 /* glyphicons_366_picasa.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC8199CDF74002DE7D3 /* glyphicons_366_picasa.png */; };
45C13AFE199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AC9199CDF74002DE7D3 /* [email protected] */; };
45C13AFF199CDF74002DE7D3 /* glyphicons_371_evernote.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ACA199CDF74002DE7D3 /* glyphicons_371_evernote.png */; };
45C13B00199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ACB199CDF74002DE7D3 /* [email protected] */; };
45C13B01199CDF74002DE7D3 /* glyphicons_381_github.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ACC199CDF74002DE7D3 /* glyphicons_381_github.png */; };
45C13B02199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ACD199CDF74002DE7D3 /* [email protected] */; };
45C13B03199CDF74002DE7D3 /* glyphicons_390_facebook.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ACE199CDF74002DE7D3 /* glyphicons_390_facebook.png */; };
45C13B04199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ACF199CDF74002DE7D3 /* [email protected] */; };
45C13B05199CDF74002DE7D3 /* glyphicons_395_flickr.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD0199CDF74002DE7D3 /* glyphicons_395_flickr.png */; };
45C13B06199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD1199CDF74002DE7D3 /* [email protected] */; };
45C13B07199CDF74002DE7D3 /* glyphicons_399_e-mail.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD2199CDF74002DE7D3 /* glyphicons_399_e-mail.png */; };
45C13B08199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD3199CDF74002DE7D3 /* [email protected] */; };
45C13B09199CDF74002DE7D3 /* glyphicons_sb1_gmail.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD4199CDF74002DE7D3 /* glyphicons_sb1_gmail.png */; };
45C13B0A199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD5199CDF74002DE7D3 /* [email protected] */; };
45C13B0B199CDF74002DE7D3 /* glyphicons_sb2_box.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD6199CDF74002DE7D3 /* glyphicons_sb2_box.png */; };
45C13B0C199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD7199CDF74002DE7D3 /* [email protected] */; };
45C13B0D199CDF74002DE7D3 /* glyphicons_sb3_skydrive.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD8199CDF74002DE7D3 /* glyphicons_sb3_skydrive.png */; };
45C13B0E199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AD9199CDF74002DE7D3 /* [email protected] */; };
45C13B0F199CDF74002DE7D3 /* GoogleDrive.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ADA199CDF74002DE7D3 /* GoogleDrive.png */; };
45C13B10199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ADB199CDF74002DE7D3 /* [email protected] */; };
45C13B11199CDF74002DE7D3 /* Instagram.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ADC199CDF74002DE7D3 /* Instagram.png */; };
45C13B12199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ADD199CDF74002DE7D3 /* [email protected] */; };
45C13B13199CDF74002DE7D3 /* logo_small.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ADE199CDF74002DE7D3 /* logo_small.png */; };
45C13B14199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13ADF199CDF74002DE7D3 /* [email protected] */; };
45C13B15199CDF74002DE7D3 /* placeholder.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AE0199CDF74002DE7D3 /* placeholder.png */; };
45C13B16199CDF74002DE7D3 /* select.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AE1199CDF74002DE7D3 /* select.png */; };
45C13B17199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AE2199CDF74002DE7D3 /* [email protected] */; };
45C13B1A199CDF74002DE7D3 /* SelectOverlayiOS7.png in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AE5199CDF74002DE7D3 /* SelectOverlayiOS7.png */; };
45C13B1B199CDF74002DE7D3 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 45C13AE6199CDF74002DE7D3 /* [email protected] */; };
45C13B94199CEA93002DE7D3 /* FPPickerMac.h in Headers */ = {isa = PBXBuildFile; fileRef = 45C13B6E199CEA93002DE7D3 /* FPPickerMac.h */; settings = {ATTRIBUTES = (Public, ); }; };
45C13B96199CEA93002DE7D3 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 45C13B71199CEA93002DE7D3 /* InfoPlist.strings */; };
45C13B97199CEA93002DE7D3 /* FPPicker-Mac-Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 45C13B72199CEA93002DE7D3 /* FPPicker-Mac-Prefix.pch */; };
45C13B98199CEA93002DE7D3 /* FPInternalHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 45C13B74199CEA93002DE7D3 /* FPInternalHeaders.h */; };
45C14A06194F19AE008C633A /* NSDictionary+FPMerge.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C14A05194F19AE008C633A /* NSDictionary+FPMerge.m */; };
45C14A08194F3388008C633A /* FPUtilsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C14A07194F3388008C633A /* FPUtilsTests.m */; };
45C14A0C194F35DC008C633A /* FPPicker.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 83A0317415A8A2A40085E186 /* FPPicker.bundle */; };
45C7179619D4182400727129 /* FPBaseSourceController.h in Headers */ = {isa = PBXBuildFile; fileRef = 45C7179419D4182400727129 /* FPBaseSourceController.h */; };
45C7179719D4182400727129 /* FPBaseSourceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C7179519D4182400727129 /* FPBaseSourceController.m */; };
45C7179A19D418C500727129 /* FPSourceViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 45C7179819D418C500727129 /* FPSourceViewController.h */; };
45C7179B19D418C500727129 /* FPSourceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C7179919D418C500727129 /* FPSourceViewController.m */; };
45C7179E19D44AF400727129 /* FPImageSearchSourceController.h in Headers */ = {isa = PBXBuildFile; fileRef = 45C7179C19D44AF400727129 /* FPImageSearchSourceController.h */; };
45C7179F19D44AF400727129 /* FPImageSearchSourceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C7179D19D44AF400727129 /* FPImageSearchSourceController.m */; };
45D0396919A20A7700983134 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 45D0396819A20A7700983134 /* WebKit.framework */; };
45D0396C19A20CC300983134 /* FPPickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 45D0396A19A20CC300983134 /* FPPickerController.h */; settings = {ATTRIBUTES = (Public, ); }; };
45D0396D19A20CC300983134 /* FPPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 45D0396B19A20CC300983134 /* FPPickerController.m */; };
45DB53DA19503E0B0062061F /* FPLibraryTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 45DB53D919503E0B0062061F /* FPLibraryTests.m */; };
45DB53DC195047580062061F /* outline.png in Resources */ = {isa = PBXBuildFile; fileRef = 45DB53DB195047580062061F /* outline.png */; };
45DB53DE195050EE0062061F /* successfulResponse.json in Resources */ = {isa = PBXBuildFile; fileRef = 45DB53DD195050EE0062061F /* successfulResponse.json */; };
45DB53E0195058E90062061F /* failureResponse.json in Resources */ = {isa = PBXBuildFile; fileRef = 45DB53DF195058E90062061F /* failureResponse.json */; };
45DB53E3195064AA0062061F /* FPProgressTrackerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 45DB53E2195064AA0062061F /* FPProgressTrackerTests.m */; };
45DF54A01958306500B694CD /* successfulMultipartStartResponse.json in Resources */ = {isa = PBXBuildFile; fileRef = 45DF549F1958306500B694CD /* successfulMultipartStartResponse.json */; };
45DF54A21958342F00B694CD /* successfulMultipartUploadResponse.json in Resources */ = {isa = PBXBuildFile; fileRef = 45DF54A11958342F00B694CD /* successfulMultipartUploadResponse.json */; };
45DF54A41958354200B694CD /* successfulMultipartEndResponse.json in Resources */ = {isa = PBXBuildFile; fileRef = 45DF54A31958354200B694CD /* successfulMultipartEndResponse.json */; };
45E10AEC19EE734200D34BC0 /* FPSaveController.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E10AEA19EE734200D34BC0 /* FPSaveController.h */; settings = {ATTRIBUTES = (Public, ); }; };
45E10AED19EE734200D34BC0 /* FPSaveController.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E10AEB19EE734200D34BC0 /* FPSaveController.m */; };
45E10AEF19EE754D00D34BC0 /* FPSaveController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 45E10AEE19EE754D00D34BC0 /* FPSaveController.xib */; };
45E10AF219EE9E9400D34BC0 /* FPImageBrowserCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E10AF019EE9E9400D34BC0 /* FPImageBrowserCell.h */; };
45E10AF319EE9E9400D34BC0 /* FPImageBrowserCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E10AF119EE9E9400D34BC0 /* FPImageBrowserCell.m */; };
45E1A41619A5FC8000287419 /* FPView.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E1A41419A5FC8000287419 /* FPView.h */; };
45E1A41719A5FC8000287419 /* FPView.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E1A41519A5FC8000287419 /* FPView.m */; };
45E7B5AE1B78915F00D63EE0 /* FPTheme.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E7B5AC1B78915F00D63EE0 /* FPTheme.h */; settings = {ATTRIBUTES = (Public, ); }; };
45E7B5AF1B78915F00D63EE0 /* FPTheme.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E7B5AD1B78915F00D63EE0 /* FPTheme.m */; };
45E7B5B21B789B8700D63EE0 /* FPThemeApplier.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E7B5B01B789B8700D63EE0 /* FPThemeApplier.h */; };
45E7B5B31B789B8700D63EE0 /* FPThemeApplier.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E7B5B11B789B8700D63EE0 /* FPThemeApplier.m */; };
45E7B5B61B78A4BC00D63EE0 /* UILabel+Appearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E7B5B41B78A4BC00D63EE0 /* UILabel+Appearance.h */; };
45E7B5B71B78A4BC00D63EE0 /* UILabel+Appearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E7B5B51B78A4BC00D63EE0 /* UILabel+Appearance.m */; };
45E7B5BA1B78A8EB00D63EE0 /* FPTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E7B5B81B78A8EB00D63EE0 /* FPTableViewCell.h */; };
45E7B5BB1B78A8EB00D63EE0 /* FPTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E7B5B91B78A8EB00D63EE0 /* FPTableViewCell.m */; };
45E7B5C61B78E1AE00D63EE0 /* FPBarButtonItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E7B5C41B78E1AE00D63EE0 /* FPBarButtonItem.h */; };
45E7B5C71B78E1AE00D63EE0 /* FPBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E7B5C51B78E1AE00D63EE0 /* FPBarButtonItem.m */; };
45FB62A9199CECE600D0535A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 45FB62A8199CECE600D0535A /* Cocoa.framework */; };
82C51CD157BA18D3A2B6C9A0 /* libPods-FPPicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D3C31C8BCF1DAFE23931E4E9 /* libPods-FPPicker.a */; };
AAEABCDB245DACF28D842D8A /* libPods-FPPickerMac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 51F430AC74D07E1614F5A7F3 /* libPods-FPPickerMac.a */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
4546C16319EC4C2C00477C9B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 83A030D915A89C9D0085E186 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 4546C12419EC4BCC00477C9B;
remoteInfo = "FPPicker Resources Mac";
};
4564989B19EC4506009B69A1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 83A030D915A89C9D0085E186 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 83A0317315A8A2A40085E186;
remoteInfo = "FPPicker Resources";
};
45C14A0A194F35C5008C633A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 83A030D915A89C9D0085E186 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 83A0317315A8A2A40085E186;
remoteInfo = "FPPicker Resources";
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0266B3A1184EB1A800A91862 /* FPTableWithUploadButtonViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPTableWithUploadButtonViewController.h; sourceTree = "<group>"; };
0266B3A2184EB1A800A91862 /* FPTableWithUploadButtonViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPTableWithUploadButtonViewController.m; sourceTree = "<group>"; };
02C136A81856794000D6940E /* FPProgressTracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = FPProgressTracker.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
02C136A91856794000D6940E /* FPProgressTracker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPProgressTracker.m; sourceTree = "<group>"; };
1C52EAE1ADDE4DC994F5D596 /* libPods-FPPicker Integration Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FPPicker Integration Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
1DD629DAC49B68C7A544DC77 /* Pods-FPPicker.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FPPicker.release.xcconfig"; path = "Pods/Target Support Files/Pods-FPPicker/Pods-FPPicker.release.xcconfig"; sourceTree = "<group>"; };
2D6D00E41A1655250042025E /* CloudDrive.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CloudDrive.png; sourceTree = "<group>"; };
2D6D00E51A1655250042025E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
4504082319F12B0400DB26AF /* FPTableCellView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPTableCellView.h; sourceTree = "<group>"; };
4504082419F12B0400DB26AF /* FPTableCellView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPTableCellView.m; sourceTree = "<group>"; };
4504082719F1326700DB26AF /* FPRepresentedSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPRepresentedSource.h; sourceTree = "<group>"; };
4504082819F1326700DB26AF /* FPRepresentedSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPRepresentedSource.m; sourceTree = "<group>"; };
4504082B19F1702F00DB26AF /* FPDialogController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPDialogController.h; sourceTree = "<group>"; };
4504082C19F1702F00DB26AF /* FPDialogController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPDialogController.m; sourceTree = "<group>"; };
45066A9A19A1F5920069B062 /* xui-2.3.2.min.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "xui-2.3.2.min.js"; sourceTree = "<group>"; };
45066A9F19A1F9B20069B062 /* FPUtils+ResourceHelpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FPUtils+ResourceHelpers.h"; sourceTree = "<group>"; };
45066AA019A1F9B20069B062 /* FPUtils+ResourceHelpers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "FPUtils+ResourceHelpers.m"; sourceTree = "<group>"; };
45066AA519A203190069B062 /* FPPickerController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FPPickerController.xib; sourceTree = "<group>"; };
45066AA719A204040069B062 /* FPAuthController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPAuthController.h; sourceTree = "<group>"; };
45066AA819A204040069B062 /* FPAuthController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPAuthController.m; sourceTree = "<group>"; };
45066AA919A204040069B062 /* FPRemoteSourceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPRemoteSourceController.h; sourceTree = "<group>"; };
45066AAA19A204040069B062 /* FPRemoteSourceController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPRemoteSourceController.m; sourceTree = "<group>"; };
4508FCBA19A74D150009CDF0 /* FPNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPNavigationController.h; sourceTree = "<group>"; };
4508FCBB19A74D150009CDF0 /* FPNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPNavigationController.m; sourceTree = "<group>"; };
450B5A4D1949EFC0007AF44A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
451051DF195B300E00F877B3 /* FPMultipartUploader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = FPMultipartUploader.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
451051E0195B300E00F877B3 /* FPMultipartUploader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = FPMultipartUploader.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
4524CEFB1BBAA66800F1DEF9 /* FPPicker-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "FPPicker-Info.plist"; path = "Resources-iOS/FPPicker-Info.plist"; sourceTree = SOURCE_ROOT; };
453096E4194738A6001D970C /* FPUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPUtils.h; sourceTree = "<group>"; };
453096E5194738A6001D970C /* FPUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPUtils.m; sourceTree = "<group>"; };
4531447D19EC3DB5003230F5 /* FPPicker.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FPPicker.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4533A3F219F6661400FE9738 /* FPTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPTableView.h; sourceTree = "<group>"; };
4533A3F319F6661400FE9738 /* FPTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPTableView.m; sourceTree = "<group>"; };
453B7A3E19DEA59F000D2841 /* FPExternalHeaders.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPExternalHeaders.h; sourceTree = "<group>"; };
4546386F19825A0500102885 /* FPPrivateConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = FPPrivateConfig.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
4546C16119EC4BCC00477C9B /* FPPicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FPPicker.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
454D3A9019F80DF2009C53FE /* FPNavigationHistory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPNavigationHistory.h; sourceTree = "<group>"; };
454D3A9119F80DF2009C53FE /* FPNavigationHistory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPNavigationHistory.m; sourceTree = "<group>"; };
455C6645194B82DE005711DE /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
455E5C981973CD3500CED98E /* FPSession.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSession.h; sourceTree = "<group>"; };
455E5C991973CD3500CED98E /* FPSession.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSession.m; sourceTree = "<group>"; };
455E5C9C1973DB8400CED98E /* FPSessionTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSessionTests.m; sourceTree = "<group>"; };
456263D319EFE72700A34C29 /* FPFileDownloadController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPFileDownloadController.h; sourceTree = "<group>"; };
456263D419EFE72700A34C29 /* FPFileDownloadController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPFileDownloadController.m; sourceTree = "<group>"; };
456263D719EFEFBE00A34C29 /* FPFileUploadController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPFileUploadController.h; sourceTree = "<group>"; };
456263D819EFEFBE00A34C29 /* FPFileUploadController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPFileUploadController.m; sourceTree = "<group>"; };
456263DB19EFF6F700A34C29 /* FPLibrary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPLibrary.h; sourceTree = "<group>"; };
456263DC19EFF6F700A34C29 /* FPLibrary.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPLibrary.m; sourceTree = "<group>"; };
456263E519EFFC5200A34C29 /* FPLibrary+iOS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FPLibrary+iOS.h"; sourceTree = "<group>"; };
456263E619EFFC5200A34C29 /* FPLibrary+iOS.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "FPLibrary+iOS.m"; sourceTree = "<group>"; };
456263EA19F0234800A34C29 /* FPUtils+Mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FPUtils+Mac.h"; sourceTree = "<group>"; };
456263EB19F0234800A34C29 /* FPUtils+Mac.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "FPUtils+Mac.m"; sourceTree = "<group>"; };
456D9478194F010400D0A34E /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = System/Library/Frameworks/AssetsLibrary.framework; sourceTree = SDKROOT; };
456D94E8194F0B3F00D0A34E /* FPConfigTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPConfigTests.m; sourceTree = "<group>"; };
456FCB501B5E786500A43A82 /* FPSimpleAPI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSimpleAPI.h; sourceTree = "<group>"; };
456FCB511B5E786500A43A82 /* FPSimpleAPI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSimpleAPI.m; sourceTree = "<group>"; };
45718C0C199D14AA00C27324 /* FPSharedInternalHeaders.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSharedInternalHeaders.h; sourceTree = "<group>"; };
4572913519CAE6D900447FAB /* FPImagePickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPImagePickerController.h; sourceTree = "<group>"; };
4572913619CAE6D900447FAB /* FPImagePickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPImagePickerController.m; sourceTree = "<group>"; };
4572914619CAFE2900447FAB /* FPImageBrowserView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPImageBrowserView.h; sourceTree = "<group>"; };
4572914719CAFE2900447FAB /* FPImageBrowserView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPImageBrowserView.m; sourceTree = "<group>"; };
45765FCE19A4A0C50018E2EC /* FPSourceListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSourceListController.h; sourceTree = "<group>"; };
45765FCF19A4A0C50018E2EC /* FPSourceListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSourceListController.m; sourceTree = "<group>"; };
4578B08219E824BD00B188F3 /* FPFileTransferController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPFileTransferController.h; sourceTree = "<group>"; };
4578B08319E824BD00B188F3 /* FPFileTransferController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPFileTransferController.m; sourceTree = "<group>"; };
4578B08419E824BD00B188F3 /* FPFileTransferController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FPFileTransferController.xib; sourceTree = "<group>"; };
45808B5319B46A7D00ECBDA1 /* FPThumbnail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPThumbnail.h; sourceTree = "<group>"; };
45808B5419B46A7D00ECBDA1 /* FPThumbnail.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPThumbnail.m; sourceTree = "<group>"; };
45808B5719B4726D00ECBDA1 /* FPSourceResultsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSourceResultsController.h; sourceTree = "<group>"; };
45808B5819B4726D00ECBDA1 /* FPSourceResultsController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSourceResultsController.m; sourceTree = "<group>"; };
4587CB2419A4B31C00667D29 /* FPSource+SupportedSources.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FPSource+SupportedSources.h"; sourceTree = "<group>"; };
4587CB2519A4B31C00667D29 /* FPSource+SupportedSources.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "FPSource+SupportedSources.m"; sourceTree = "<group>"; };
4587CB2A19A4CB2900667D29 /* glyphicons_020_home.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_020_home.png; sourceTree = "<group>"; };
4587CB2B19A4CB2900667D29 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
458B1FEA1949D726008360E9 /* FPPicker Functional Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "FPPicker Functional Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
458B1FEB1949D726008360E9 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
458B20031949D7C1008360E9 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
458B20041949D7C1008360E9 /* FPPicker Functional Tests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "FPPicker Functional Tests-Info.plist"; sourceTree = "<group>"; };
458B20051949D7C1008360E9 /* FPPicker Functional Tests-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FPPicker Functional Tests-Prefix.pch"; sourceTree = "<group>"; };
458B20071949D7C1008360E9 /* TestHelpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestHelpers.h; sourceTree = "<group>"; };
458B20091949D7C1008360E9 /* OHHTTPStubs+ConveniencyMethods.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "OHHTTPStubs+ConveniencyMethods.h"; sourceTree = "<group>"; };
458B200A1949D7C1008360E9 /* OHHTTPStubs+ConveniencyMethods.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "OHHTTPStubs+ConveniencyMethods.m"; sourceTree = "<group>"; };
458D91F21B679AE6004C5B85 /* FPWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPWindow.h; sourceTree = "<group>"; };
458D91F31B679AE6004C5B85 /* FPWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPWindow.m; sourceTree = "<group>"; };
45920DDD194A0D2E007003C1 /* FPMacros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = FPMacros.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
45920DDE194A0D8A007003C1 /* FPConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = FPConfig.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
45920DDF194A0D8A007003C1 /* FPConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = FPConfig.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
45936F9619F4729400ACEE97 /* FPSourcePath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSourcePath.h; sourceTree = "<group>"; };
45936F9719F4729400ACEE97 /* FPSourcePath.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSourcePath.m; sourceTree = "<group>"; };
45A2C34A197438B4009D436D /* NSData+FPHexString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+FPHexString.h"; sourceTree = "<group>"; };
45A2C34B197438B4009D436D /* NSData+FPHexString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+FPHexString.m"; sourceTree = "<group>"; };
45ADBF6E1951A44000EB2215 /* FPAPIClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = FPAPIClient.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
45ADBF6F1951A44000EB2215 /* FPAPIClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = FPAPIClient.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
45ADBF7C1951BBA100EB2215 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
45B71DDB19768B33006B5DAF /* FPSinglepartUploader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSinglepartUploader.h; sourceTree = "<group>"; };
45B71DDC19768B33006B5DAF /* FPSinglepartUploader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSinglepartUploader.m; sourceTree = "<group>"; };
45B71DDF19768B68006B5DAF /* FPUploader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPUploader.h; sourceTree = "<group>"; };
45B71DE019768B68006B5DAF /* FPUploader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPUploader.m; sourceTree = "<group>"; };
45B7606C19758251007C9284 /* FPSession+ConvenienceMethods.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FPSession+ConvenienceMethods.h"; sourceTree = "<group>"; };
45B7606D19758251007C9284 /* FPSession+ConvenienceMethods.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "FPSession+ConvenienceMethods.m"; sourceTree = "<group>"; };
45B7D0A6194F4C1A009C4AB6 /* FPSourceTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSourceTests.m; sourceTree = "<group>"; };
45B9888619A4F12300CE7DFC /* FPBorderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPBorderView.h; sourceTree = "<group>"; };
45B9888719A4F12300CE7DFC /* FPBorderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPBorderView.m; sourceTree = "<group>"; };
45C13AB2199CDF74002DE7D3 /* allowedUrlPrefix.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = allowedUrlPrefix.plist; sourceTree = "<group>"; };
45C13AB4199CDF74002DE7D3 /* disallowedUrlPrefix.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = disallowedUrlPrefix.plist; sourceTree = "<group>"; };
45C13AB5199CDF74002DE7D3 /* FilepickerSettings.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = FilepickerSettings.plist; sourceTree = "<group>"; };
45C13AB6199CDF74002DE7D3 /* glyphicons_008_film.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_008_film.png; sourceTree = "<group>"; };
45C13AB7199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13AB8199CDF74002DE7D3 /* glyphicons_011_camera.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_011_camera.png; sourceTree = "<group>"; };
45C13AB9199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13ABA199CDF74002DE7D3 /* glyphicons_027_search.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_027_search.png; sourceTree = "<group>"; };
45C13ABB199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13ABC199CDF74002DE7D3 /* glyphicons_036_file.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_036_file.png; sourceTree = "<group>"; };
45C13ABD199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13ABE199CDF74002DE7D3 /* glyphicons_144_folder_open.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_144_folder_open.png; sourceTree = "<group>"; };
45C13ABF199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13AC0199CDF74002DE7D3 /* glyphicons_154_show_big_thumbnails.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_154_show_big_thumbnails.png; sourceTree = "<group>"; };
45C13AC1199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13AC2199CDF74002DE7D3 /* glyphicons_180_facetime_video.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_180_facetime_video.png; sourceTree = "<group>"; };
45C13AC3199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13AC4199CDF74002DE7D3 /* glyphicons_300_microphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_300_microphone.png; sourceTree = "<group>"; };
45C13AC5199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13AC6199CDF74002DE7D3 /* glyphicons_361_dropbox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_361_dropbox.png; sourceTree = "<group>"; };
45C13AC7199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13AC8199CDF74002DE7D3 /* glyphicons_366_picasa.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_366_picasa.png; sourceTree = "<group>"; };
45C13AC9199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13ACA199CDF74002DE7D3 /* glyphicons_371_evernote.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_371_evernote.png; sourceTree = "<group>"; };
45C13ACB199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13ACC199CDF74002DE7D3 /* glyphicons_381_github.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_381_github.png; sourceTree = "<group>"; };
45C13ACD199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13ACE199CDF74002DE7D3 /* glyphicons_390_facebook.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_390_facebook.png; sourceTree = "<group>"; };
45C13ACF199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13AD0199CDF74002DE7D3 /* glyphicons_395_flickr.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_395_flickr.png; sourceTree = "<group>"; };
45C13AD1199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13AD2199CDF74002DE7D3 /* glyphicons_399_e-mail.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "glyphicons_399_e-mail.png"; sourceTree = "<group>"; };
45C13AD3199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13AD4199CDF74002DE7D3 /* glyphicons_sb1_gmail.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_sb1_gmail.png; sourceTree = "<group>"; };
45C13AD5199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13AD6199CDF74002DE7D3 /* glyphicons_sb2_box.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_sb2_box.png; sourceTree = "<group>"; };
45C13AD7199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13AD8199CDF74002DE7D3 /* glyphicons_sb3_skydrive.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = glyphicons_sb3_skydrive.png; sourceTree = "<group>"; };
45C13AD9199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13ADA199CDF74002DE7D3 /* GoogleDrive.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GoogleDrive.png; sourceTree = "<group>"; };
45C13ADB199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13ADC199CDF74002DE7D3 /* Instagram.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Instagram.png; sourceTree = "<group>"; };
45C13ADD199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13ADE199CDF74002DE7D3 /* logo_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo_small.png; sourceTree = "<group>"; };
45C13ADF199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13AE0199CDF74002DE7D3 /* placeholder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = placeholder.png; sourceTree = "<group>"; };
45C13AE1199CDF74002DE7D3 /* select.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = select.png; sourceTree = "<group>"; };
45C13AE2199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13AE5199CDF74002DE7D3 /* SelectOverlayiOS7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SelectOverlayiOS7.png; sourceTree = "<group>"; };
45C13AE6199CDF74002DE7D3 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
45C13B23199CEA4A002DE7D3 /* FPPickerMac.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FPPickerMac.framework; sourceTree = BUILT_PRODUCTS_DIR; };
45C13B6E199CEA93002DE7D3 /* FPPickerMac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPPickerMac.h; sourceTree = "<group>"; };
45C13B6F199CEA93002DE7D3 /* FPPicker Mac-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "FPPicker Mac-Info.plist"; sourceTree = "<group>"; };
45C13B70199CEA93002DE7D3 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
45C13B72199CEA93002DE7D3 /* FPPicker-Mac-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FPPicker-Mac-Prefix.pch"; sourceTree = "<group>"; };
45C13B74199CEA93002DE7D3 /* FPInternalHeaders.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPInternalHeaders.h; sourceTree = "<group>"; };
45C14A04194F19AE008C633A /* NSDictionary+FPMerge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+FPMerge.h"; sourceTree = "<group>"; };
45C14A05194F19AE008C633A /* NSDictionary+FPMerge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+FPMerge.m"; sourceTree = "<group>"; };
45C14A07194F3388008C633A /* FPUtilsTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPUtilsTests.m; sourceTree = "<group>"; };
45C7179419D4182400727129 /* FPBaseSourceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPBaseSourceController.h; sourceTree = "<group>"; };
45C7179519D4182400727129 /* FPBaseSourceController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPBaseSourceController.m; sourceTree = "<group>"; };
45C7179819D418C500727129 /* FPSourceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSourceViewController.h; sourceTree = "<group>"; };
45C7179919D418C500727129 /* FPSourceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSourceViewController.m; sourceTree = "<group>"; };
45C7179C19D44AF400727129 /* FPImageSearchSourceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPImageSearchSourceController.h; sourceTree = "<group>"; };
45C7179D19D44AF400727129 /* FPImageSearchSourceController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPImageSearchSourceController.m; sourceTree = "<group>"; };
45CD26D6199CB64C0048B483 /* FPMediaInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = FPMediaInfo.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
45CD26D7199CB64C0048B483 /* FPMediaInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = FPMediaInfo.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
45CD2718199CCB9A0048B483 /* FPTypedefs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FPTypedefs.h; sourceTree = "<group>"; };
45D0396819A20A7700983134 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/System/Library/Frameworks/WebKit.framework; sourceTree = DEVELOPER_DIR; };
45D0396A19A20CC300983134 /* FPPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPPickerController.h; sourceTree = "<group>"; };
45D0396B19A20CC300983134 /* FPPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPPickerController.m; sourceTree = "<group>"; };
45DB53D919503E0B0062061F /* FPLibraryTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPLibraryTests.m; sourceTree = "<group>"; };
45DB53DB195047580062061F /* outline.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = outline.png; path = "FPPicker Tests/Functional Tests/Fixtures/outline.png"; sourceTree = SOURCE_ROOT; };
45DB53DD195050EE0062061F /* successfulResponse.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = successfulResponse.json; path = "FPPicker Tests/Functional Tests/Fixtures/successfulResponse.json"; sourceTree = SOURCE_ROOT; };
45DB53DF195058E90062061F /* failureResponse.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = failureResponse.json; path = "FPPicker Tests/Functional Tests/Fixtures/failureResponse.json"; sourceTree = SOURCE_ROOT; };
45DB53E119505ADA0062061F /* FPConfig+DestroyableSingleton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "FPConfig+DestroyableSingleton.h"; sourceTree = "<group>"; };
45DB53E2195064AA0062061F /* FPProgressTrackerTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPProgressTrackerTests.m; sourceTree = "<group>"; };
45DF549F1958306500B694CD /* successfulMultipartStartResponse.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = successfulMultipartStartResponse.json; path = "FPPicker Tests/Functional Tests/Fixtures/successfulMultipartStartResponse.json"; sourceTree = SOURCE_ROOT; };
45DF54A11958342F00B694CD /* successfulMultipartUploadResponse.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = successfulMultipartUploadResponse.json; path = "FPPicker Tests/Functional Tests/Fixtures/successfulMultipartUploadResponse.json"; sourceTree = SOURCE_ROOT; };
45DF54A31958354200B694CD /* successfulMultipartEndResponse.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = successfulMultipartEndResponse.json; path = "FPPicker Tests/Functional Tests/Fixtures/successfulMultipartEndResponse.json"; sourceTree = SOURCE_ROOT; };
45E10AEA19EE734200D34BC0 /* FPSaveController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSaveController.h; sourceTree = "<group>"; };
45E10AEB19EE734200D34BC0 /* FPSaveController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSaveController.m; sourceTree = "<group>"; };
45E10AEE19EE754D00D34BC0 /* FPSaveController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FPSaveController.xib; sourceTree = "<group>"; };
45E10AF019EE9E9400D34BC0 /* FPImageBrowserCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPImageBrowserCell.h; sourceTree = "<group>"; };
45E10AF119EE9E9400D34BC0 /* FPImageBrowserCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPImageBrowserCell.m; sourceTree = "<group>"; };
45E1A41419A5FC8000287419 /* FPView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPView.h; sourceTree = "<group>"; };
45E1A41519A5FC8000287419 /* FPView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPView.m; sourceTree = "<group>"; };
45E7B5AC1B78915F00D63EE0 /* FPTheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FPTheme.h; path = Platforms/iOS/FPTheme.h; sourceTree = "<group>"; };
45E7B5AD1B78915F00D63EE0 /* FPTheme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FPTheme.m; path = Platforms/iOS/FPTheme.m; sourceTree = "<group>"; };
45E7B5B01B789B8700D63EE0 /* FPThemeApplier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FPThemeApplier.h; path = Platforms/iOS/FPThemeApplier.h; sourceTree = "<group>"; };
45E7B5B11B789B8700D63EE0 /* FPThemeApplier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FPThemeApplier.m; path = Platforms/iOS/FPThemeApplier.m; sourceTree = "<group>"; };
45E7B5B41B78A4BC00D63EE0 /* UILabel+Appearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UILabel+Appearance.h"; path = "Platforms/iOS/UILabel+Appearance.h"; sourceTree = "<group>"; };
45E7B5B51B78A4BC00D63EE0 /* UILabel+Appearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UILabel+Appearance.m"; path = "Platforms/iOS/UILabel+Appearance.m"; sourceTree = "<group>"; };
45E7B5B81B78A8EB00D63EE0 /* FPTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPTableViewCell.h; sourceTree = "<group>"; };
45E7B5B91B78A8EB00D63EE0 /* FPTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPTableViewCell.m; sourceTree = "<group>"; };
45E7B5C41B78E1AE00D63EE0 /* FPBarButtonItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPBarButtonItem.h; sourceTree = "<group>"; };
45E7B5C51B78E1AE00D63EE0 /* FPBarButtonItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPBarButtonItem.m; sourceTree = "<group>"; };
45FB62A8199CECE600D0535A /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; };
45FCE703199B665800D86B40 /* FPUtils+iOS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "FPUtils+iOS.h"; sourceTree = "<group>"; };
45FCE704199B665800D86B40 /* FPUtils+iOS.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "FPUtils+iOS.m"; sourceTree = "<group>"; };
45FCE70C199B74B600D86B40 /* FPiOSMacros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = FPiOSMacros.h; path = Platforms/iOS/FPiOSMacros.h; sourceTree = "<group>"; };
4DB461E0210D9418309BA294 /* libPods-FPPicker Functional Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FPPicker Functional Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
50BD9839B3DA77AF10CC26FE /* Pods-FPPickerMac.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FPPickerMac.debug.xcconfig"; path = "Pods/Target Support Files/Pods-FPPickerMac/Pods-FPPickerMac.debug.xcconfig"; sourceTree = "<group>"; };
51F430AC74D07E1614F5A7F3 /* libPods-FPPickerMac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FPPickerMac.a"; sourceTree = BUILT_PRODUCTS_DIR; };
64F0509CE49FBD517AC39DDF /* Pods-FPPicker Functional Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FPPicker Functional Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-FPPicker Functional Tests/Pods-FPPicker Functional Tests.release.xcconfig"; sourceTree = "<group>"; };
7036C02936991CCF5BE86547 /* Pods-FPPicker Functional Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FPPicker Functional Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-FPPicker Functional Tests/Pods-FPPicker Functional Tests.debug.xcconfig"; sourceTree = "<group>"; };
831E0ABC15AA6E460081004F /* FPSaveSourceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSaveSourceController.h; sourceTree = "<group>"; };
831E0ABD15AA6E460081004F /* FPSaveSourceController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSaveSourceController.m; sourceTree = "<group>"; };
831E0B4515AAC3F30081004F /* FPThumbCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPThumbCell.h; sourceTree = "<group>"; };
831E0B4615AAC3F30081004F /* FPThumbCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPThumbCell.m; sourceTree = "<group>"; };
832739F1171F384E000A4A23 /* FPLocalAlbumController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPLocalAlbumController.h; sourceTree = "<group>"; };
832739F2171F384F000A4A23 /* FPLocalAlbumController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPLocalAlbumController.m; sourceTree = "<group>"; };
836A9D38169B5CF0006AC920 /* FPInfoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPInfoViewController.h; sourceTree = "<group>"; };
836A9D39169B5CF0006AC920 /* FPInfoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = FPInfoViewController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
83A030E515A89C9D0085E186 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
83A030E915A89C9D0085E186 /* FPPicker-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "FPPicker-Prefix.pch"; path = "../../../Resources-iOS/FPPicker-Prefix.pch"; sourceTree = "<group>"; };
83A0314315A89E040085E186 /* FPAuthController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPAuthController.h; sourceTree = "<group>"; };
83A0314415A89E040085E186 /* FPAuthController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = FPAuthController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
83A0314615A89E040085E186 /* FPConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPConstants.h; sourceTree = "<group>"; };
83A0314715A89E040085E186 /* FPConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPConstants.m; sourceTree = "<group>"; };
83A0314A15A89E040085E186 /* FPLocalController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPLocalController.h; sourceTree = "<group>"; };
83A0314B15A89E040085E186 /* FPLocalController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = FPLocalController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
83A0314C15A89E040085E186 /* FPPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FPPicker.h; path = Platforms/iOS/FPPicker.h; sourceTree = "<group>"; };
83A0314D15A89E040085E186 /* FPPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPPickerController.h; sourceTree = "<group>"; };
83A0314E15A89E040085E186 /* FPPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPPickerController.m; sourceTree = "<group>"; };
83A0314F15A89E040085E186 /* FPSearchController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSearchController.h; sourceTree = "<group>"; };
83A0315015A89E040085E186 /* FPSearchController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSearchController.m; sourceTree = "<group>"; };
83A0315115A89E040085E186 /* FPSourceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSourceController.h; sourceTree = "<group>"; };
83A0315215A89E040085E186 /* FPSourceController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = FPSourceController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
83A0315315A89E050085E186 /* FPSourceListController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSourceListController.h; sourceTree = "<group>"; };
83A0315415A89E050085E186 /* FPSourceListController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = FPSourceListController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
83A0317415A8A2A40085E186 /* FPPicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FPPicker.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
83A0317515A8A2A40085E186 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
83A031A415A8A4AC0085E186 /* FPSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSource.h; sourceTree = "<group>"; };
83A031A515A8A4AC0085E186 /* FPSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSource.m; sourceTree = "<group>"; };
83A031B615A8EEC40085E186 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
83A031B915A8F2570085E186 /* FPSaveController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FPSaveController.h; sourceTree = "<group>"; };
83A031BA15A8F2570085E186 /* FPSaveController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FPSaveController.m; sourceTree = "<group>"; };
83A031DD15AA14820085E186 /* FPInternalHeaders.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = FPInternalHeaders.h; path = Platforms/iOS/FPInternalHeaders.h; sourceTree = "<group>"; };
B6B800A24BF013FE2969B483 /* Pods-FPPicker.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FPPicker.debug.xcconfig"; path = "Pods/Target Support Files/Pods-FPPicker/Pods-FPPicker.debug.xcconfig"; sourceTree = "<group>"; };
B8CD9DB8C93F9F5A46E3C195 /* Pods-FPPickerMac.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FPPickerMac.release.xcconfig"; path = "Pods/Target Support Files/Pods-FPPickerMac/Pods-FPPickerMac.release.xcconfig"; sourceTree = "<group>"; };
C2CA9C4B6AFB438CAB5A06AF /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; };
D3C31C8BCF1DAFE23931E4E9 /* libPods-FPPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FPPicker.a"; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
4531447919EC3DB5003230F5 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
45AB16D519EC406300BF97E0 /* MobileCoreServices.framework in Frameworks */,
45AB16D219EC404A00BF97E0 /* Foundation.framework in Frameworks */,
82C51CD157BA18D3A2B6C9A0 /* libPods-FPPicker.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4546C12619EC4BCC00477C9B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
458B1FE71949D726008360E9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
45ADBF7D1951BBA100EB2215 /* SystemConfiguration.framework in Frameworks */,
456D94EC194F0C0000D0A34E /* MobileCoreServices.framework in Frameworks */,
456D94EB194F0BD500D0A34E /* AssetsLibrary.framework in Frameworks */,
458B1FEC1949D726008360E9 /* XCTest.framework in Frameworks */,
458B1FED1949D726008360E9 /* Foundation.framework in Frameworks */,
32D0E377C09CE15B68BCBE91 /* libPods-FPPicker Functional Tests.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
45C13B1F199CEA4A002DE7D3 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
45D0396919A20A7700983134 /* WebKit.framework in Frameworks */,
45FB62A9199CECE600D0535A /* Cocoa.framework in Frameworks */,
AAEABCDB245DACF28D842D8A /* libPods-FPPickerMac.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
83A0317115A8A2A40085E186 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
456263E919F0233800A34C29 /* Categories */ = {
isa = PBXGroup;
children = (
456263EA19F0234800A34C29 /* FPUtils+Mac.h */,
456263EB19F0234800A34C29 /* FPUtils+Mac.m */,
);
name = Categories;
sourceTree = "<group>";
};
45808B5219B46A5D00ECBDA1 /* Models */ = {
isa = PBXGroup;
children = (
454D3A9019F80DF2009C53FE /* FPNavigationHistory.h */,
454D3A9119F80DF2009C53FE /* FPNavigationHistory.m */,
4504082719F1326700DB26AF /* FPRepresentedSource.h */,
4504082819F1326700DB26AF /* FPRepresentedSource.m */,
45936F9619F4729400ACEE97 /* FPSourcePath.h */,
45936F9719F4729400ACEE97 /* FPSourcePath.m */,
45808B5319B46A7D00ECBDA1 /* FPThumbnail.h */,
45808B5419B46A7D00ECBDA1 /* FPThumbnail.m */,
);
name = Models;
sourceTree = "<group>";
};
458B1FE31949D624008360E9 /* Tests */ = {
isa = PBXGroup;
children = (
458B1FFE1949D7C1008360E9 /* Fixtures */,
458B20011949D7C1008360E9 /* Functional Tests */,
458B20081949D7C1008360E9 /* Shared */,
);
name = Tests;
sourceTree = "<group>";
};
458B1FFE1949D7C1008360E9 /* Fixtures */ = {
isa = PBXGroup;
children = (
45DB53DB195047580062061F /* outline.png */,
45DB53DD195050EE0062061F /* successfulResponse.json */,
45DB53DF195058E90062061F /* failureResponse.json */,
45DF549F1958306500B694CD /* successfulMultipartStartResponse.json */,
45DF54A11958342F00B694CD /* successfulMultipartUploadResponse.json */,
45DF54A31958354200B694CD /* successfulMultipartEndResponse.json */,
);
name = Fixtures;
path = "FPPicker Tests/Fixtures";
sourceTree = "<group>";
};
458B20011949D7C1008360E9 /* Functional Tests */ = {
isa = PBXGroup;
children = (
45C14A09194F343A008C633A /* Helpers */,
456D94E8194F0B3F00D0A34E /* FPConfigTests.m */,
45DB53E2195064AA0062061F /* FPProgressTrackerTests.m */,
45DB53D919503E0B0062061F /* FPLibraryTests.m */,
45B7D0A6194F4C1A009C4AB6 /* FPSourceTests.m */,
45C14A07194F3388008C633A /* FPUtilsTests.m */,
458B20111949D7D5008360E9 /* Supporting Files */,
455E5C9C1973DB8400CED98E /* FPSessionTests.m */,
);
name = "Functional Tests";
path = "FPPicker Tests/Functional Tests";
sourceTree = "<group>";
};
458B20081949D7C1008360E9 /* Shared */ = {
isa = PBXGroup;
children = (
458B20091949D7C1008360E9 /* OHHTTPStubs+ConveniencyMethods.h */,
458B200A1949D7C1008360E9 /* OHHTTPStubs+ConveniencyMethods.m */,
45C14A04194F19AE008C633A /* NSDictionary+FPMerge.h */,
45C14A05194F19AE008C633A /* NSDictionary+FPMerge.m */,
45DB53E119505ADA0062061F /* FPConfig+DestroyableSingleton.h */,
);
name = Shared;
path = "FPPicker Tests/Shared";
sourceTree = "<group>";
};
458B20111949D7D5008360E9 /* Supporting Files */ = {
isa = PBXGroup;
children = (
458B20021949D7C1008360E9 /* InfoPlist.strings */,
458B20041949D7C1008360E9 /* FPPicker Functional Tests-Info.plist */,
458B20051949D7C1008360E9 /* FPPicker Functional Tests-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
45A2C3491974389A009D436D /* Categories */ = {
isa = PBXGroup;
children = (
45B7606C19758251007C9284 /* FPSession+ConvenienceMethods.h */,
45B7606D19758251007C9284 /* FPSession+ConvenienceMethods.m */,
4587CB2419A4B31C00667D29 /* FPSource+SupportedSources.h */,
4587CB2519A4B31C00667D29 /* FPSource+SupportedSources.m */,
45066A9F19A1F9B20069B062 /* FPUtils+ResourceHelpers.h */,
45066AA019A1F9B20069B062 /* FPUtils+ResourceHelpers.m */,
45A2C34A197438B4009D436D /* NSData+FPHexString.h */,
45A2C34B197438B4009D436D /* NSData+FPHexString.m */,
);
name = Categories;
sourceTree = "<group>";
};
45B9888519A4F10D00CE7DFC /* Custom Controls */ = {
isa = PBXGroup;
children = (
45B9888619A4F12300CE7DFC /* FPBorderView.h */,
45B9888719A4F12300CE7DFC /* FPBorderView.m */,
45E10AF019EE9E9400D34BC0 /* FPImageBrowserCell.h */,
45E10AF119EE9E9400D34BC0 /* FPImageBrowserCell.m */,
4572914619CAFE2900447FAB /* FPImageBrowserView.h */,
4572914719CAFE2900447FAB /* FPImageBrowserView.m */,
4504082319F12B0400DB26AF /* FPTableCellView.h */,
4504082419F12B0400DB26AF /* FPTableCellView.m */,
4533A3F219F6661400FE9738 /* FPTableView.h */,
4533A3F319F6661400FE9738 /* FPTableView.m */,
45E1A41419A5FC8000287419 /* FPView.h */,
45E1A41519A5FC8000287419 /* FPView.m */,
);
name = "Custom Controls";
sourceTree = "<group>";
};
45C13AB1199CDF74002DE7D3 /* Resources Bundle */ = {
isa = PBXGroup;
children = (
2D6D00E41A1655250042025E /* CloudDrive.png */,
2D6D00E51A1655250042025E /* [email protected] */,
45C13AB2199CDF74002DE7D3 /* allowedUrlPrefix.plist */,
45C13AB4199CDF74002DE7D3 /* disallowedUrlPrefix.plist */,
45C13AB5199CDF74002DE7D3 /* FilepickerSettings.plist */,
45C13AB6199CDF74002DE7D3 /* glyphicons_008_film.png */,
45C13AB7199CDF74002DE7D3 /* [email protected] */,
45C13AB8199CDF74002DE7D3 /* glyphicons_011_camera.png */,
45C13AB9199CDF74002DE7D3 /* [email protected] */,
45C13ABA199CDF74002DE7D3 /* glyphicons_027_search.png */,
45C13ABB199CDF74002DE7D3 /* [email protected] */,
45C13ABC199CDF74002DE7D3 /* glyphicons_036_file.png */,
45C13ABD199CDF74002DE7D3 /* [email protected] */,
45C13ABE199CDF74002DE7D3 /* glyphicons_144_folder_open.png */,
45C13ABF199CDF74002DE7D3 /* [email protected] */,
45C13AC0199CDF74002DE7D3 /* glyphicons_154_show_big_thumbnails.png */,
45C13AC1199CDF74002DE7D3 /* [email protected] */,
45C13AC2199CDF74002DE7D3 /* glyphicons_180_facetime_video.png */,
45C13AC3199CDF74002DE7D3 /* [email protected] */,
4587CB2A19A4CB2900667D29 /* glyphicons_020_home.png */,
4587CB2B19A4CB2900667D29 /* [email protected] */,
45C13AC4199CDF74002DE7D3 /* glyphicons_300_microphone.png */,
45C13AC5199CDF74002DE7D3 /* [email protected] */,
45C13AC6199CDF74002DE7D3 /* glyphicons_361_dropbox.png */,
45C13AC7199CDF74002DE7D3 /* [email protected] */,
45C13AC8199CDF74002DE7D3 /* glyphicons_366_picasa.png */,
45C13AC9199CDF74002DE7D3 /* [email protected] */,
45C13ACA199CDF74002DE7D3 /* glyphicons_371_evernote.png */,
45C13ACB199CDF74002DE7D3 /* [email protected] */,
45C13ACC199CDF74002DE7D3 /* glyphicons_381_github.png */,
45C13ACD199CDF74002DE7D3 /* [email protected] */,
45C13ACE199CDF74002DE7D3 /* glyphicons_390_facebook.png */,
45C13ACF199CDF74002DE7D3 /* [email protected] */,
45C13AD0199CDF74002DE7D3 /* glyphicons_395_flickr.png */,
45C13AD1199CDF74002DE7D3 /* [email protected] */,
45C13AD2199CDF74002DE7D3 /* glyphicons_399_e-mail.png */,
45C13AD3199CDF74002DE7D3 /* [email protected] */,
45C13AD4199CDF74002DE7D3 /* glyphicons_sb1_gmail.png */,
45C13AD5199CDF74002DE7D3 /* [email protected] */,
45C13AD6199CDF74002DE7D3 /* glyphicons_sb2_box.png */,
45C13AD7199CDF74002DE7D3 /* [email protected] */,
45C13AD8199CDF74002DE7D3 /* glyphicons_sb3_skydrive.png */,
45C13AD9199CDF74002DE7D3 /* [email protected] */,
45C13ADA199CDF74002DE7D3 /* GoogleDrive.png */,
45C13ADB199CDF74002DE7D3 /* [email protected] */,
45C13ADC199CDF74002DE7D3 /* Instagram.png */,
45C13ADD199CDF74002DE7D3 /* [email protected] */,
45C13ADE199CDF74002DE7D3 /* logo_small.png */,
45C13ADF199CDF74002DE7D3 /* [email protected] */,
45C13AE0199CDF74002DE7D3 /* placeholder.png */,
45C13AE1199CDF74002DE7D3 /* select.png */,
45C13AE2199CDF74002DE7D3 /* [email protected] */,
45C13AE5199CDF74002DE7D3 /* SelectOverlayiOS7.png */,
45C13AE6199CDF74002DE7D3 /* [email protected] */,
45066A9A19A1F5920069B062 /* xui-2.3.2.min.js */,
);
name = "Resources Bundle";
path = "Resources-Shared";
sourceTree = SOURCE_ROOT;
};
45C13B73199CEA93002DE7D3 /* Supporting Files */ = {
isa = PBXGroup;
children = (
45C13B6F199CEA93002DE7D3 /* FPPicker Mac-Info.plist */,
45C13B71199CEA93002DE7D3 /* InfoPlist.strings */,
45C13B72199CEA93002DE7D3 /* FPPicker-Mac-Prefix.pch */,
45066AA519A203190069B062 /* FPPickerController.xib */,
45E10AEE19EE754D00D34BC0 /* FPSaveController.xib */,
4578B08419E824BD00B188F3 /* FPFileTransferController.xib */,
);
name = "Supporting Files";
path = "../../../Resources-Mac";
sourceTree = "<group>";
};
45C13B75199CEA93002DE7D3 /* Mac */ = {
isa = PBXGroup;
children = (
45066AA719A204040069B062 /* FPAuthController.h */,
45C7179419D4182400727129 /* FPBaseSourceController.h */,
4504082B19F1702F00DB26AF /* FPDialogController.h */,
456263D319EFE72700A34C29 /* FPFileDownloadController.h */,
4578B08219E824BD00B188F3 /* FPFileTransferController.h */,
456263D719EFEFBE00A34C29 /* FPFileUploadController.h */,
45C7179C19D44AF400727129 /* FPImageSearchSourceController.h */,
45C13B74199CEA93002DE7D3 /* FPInternalHeaders.h */,
4508FCBA19A74D150009CDF0 /* FPNavigationController.h */,
45D0396A19A20CC300983134 /* FPPickerController.h */,
45C13B6E199CEA93002DE7D3 /* FPPickerMac.h */,
45066AA919A204040069B062 /* FPRemoteSourceController.h */,
45E10AEA19EE734200D34BC0 /* FPSaveController.h */,
45765FCE19A4A0C50018E2EC /* FPSourceListController.h */,
45808B5719B4726D00ECBDA1 /* FPSourceResultsController.h */,
45C7179819D418C500727129 /* FPSourceViewController.h */,
45066AA819A204040069B062 /* FPAuthController.m */,
45C7179519D4182400727129 /* FPBaseSourceController.m */,
4504082C19F1702F00DB26AF /* FPDialogController.m */,
456263D419EFE72700A34C29 /* FPFileDownloadController.m */,
4578B08319E824BD00B188F3 /* FPFileTransferController.m */,
456263D819EFEFBE00A34C29 /* FPFileUploadController.m */,
45C7179D19D44AF400727129 /* FPImageSearchSourceController.m */,
4508FCBB19A74D150009CDF0 /* FPNavigationController.m */,
45D0396B19A20CC300983134 /* FPPickerController.m */,
45066AAA19A204040069B062 /* FPRemoteSourceController.m */,
45E10AEB19EE734200D34BC0 /* FPSaveController.m */,
45765FCF19A4A0C50018E2EC /* FPSourceListController.m */,
45808B5819B4726D00ECBDA1 /* FPSourceResultsController.m */,
45C7179919D418C500727129 /* FPSourceViewController.m */,
456263E919F0233800A34C29 /* Categories */,
45B9888519A4F10D00CE7DFC /* Custom Controls */,
45808B5219B46A5D00ECBDA1 /* Models */,
45C13B73199CEA93002DE7D3 /* Supporting Files */,
458D91F21B679AE6004C5B85 /* FPWindow.h */,
458D91F31B679AE6004C5B85 /* FPWindow.m */,
);
name = Mac;
path = FPPicker/Platforms/Mac;
sourceTree = "<group>";
};
45C14A09194F343A008C633A /* Helpers */ = {
isa = PBXGroup;
children = (
458B20071949D7C1008360E9 /* TestHelpers.h */,
);
name = Helpers;
sourceTree = "<group>";
};
45CD26D5199CB6330048B483 /* Models */ = {
isa = PBXGroup;
children = (
45CD26D6199CB64C0048B483 /* FPMediaInfo.h */,
45CD26D7199CB64C0048B483 /* FPMediaInfo.m */,
455E5C981973CD3500CED98E /* FPSession.h */,
455E5C991973CD3500CED98E /* FPSession.m */,
83A031A415A8A4AC0085E186 /* FPSource.h */,
83A031A515A8A4AC0085E186 /* FPSource.m */,
);
name = Models;
sourceTree = "<group>";
};
45D7356619476DA8001EF626 /* View Controllers */ = {
isa = PBXGroup;
children = (
83A0314A15A89E040085E186 /* FPLocalController.h */,
83A0314B15A89E040085E186 /* FPLocalController.m */,
832739F1171F384E000A4A23 /* FPLocalAlbumController.h */,
832739F2171F384F000A4A23 /* FPLocalAlbumController.m */,
83A0315115A89E040085E186 /* FPSourceController.h */,
83A0315215A89E040085E186 /* FPSourceController.m */,
831E0ABC15AA6E460081004F /* FPSaveSourceController.h */,
831E0ABD15AA6E460081004F /* FPSaveSourceController.m */,
83A0314F15A89E040085E186 /* FPSearchController.h */,
83A0315015A89E040085E186 /* FPSearchController.m */,
83A0314315A89E040085E186 /* FPAuthController.h */,
83A0314415A89E040085E186 /* FPAuthController.m */,
836A9D38169B5CF0006AC920 /* FPInfoViewController.h */,
836A9D39169B5CF0006AC920 /* FPInfoViewController.m */,
0266B3A1184EB1A800A91862 /* FPTableWithUploadButtonViewController.h */,
0266B3A2184EB1A800A91862 /* FPTableWithUploadButtonViewController.m */,
);
name = "View Controllers";
path = Platforms/iOS;
sourceTree = "<group>";
};
45D7356719476F08001EF626 /* Nav Controllers */ = {
isa = PBXGroup;
children = (
4572913519CAE6D900447FAB /* FPImagePickerController.h */,
4572913619CAE6D900447FAB /* FPImagePickerController.m */,
83A0314D15A89E040085E186 /* FPPickerController.h */,
83A0314E15A89E040085E186 /* FPPickerController.m */,
83A031B915A8F2570085E186 /* FPSaveController.h */,
83A031BA15A8F2570085E186 /* FPSaveController.m */,
);
name = "Nav Controllers";
path = Platforms/iOS;
sourceTree = "<group>";
};
45D7356819476F87001EF626 /* Table View Controllers */ = {
isa = PBXGroup;
children = (
83A0315315A89E050085E186 /* FPSourceListController.h */,
83A0315415A89E050085E186 /* FPSourceListController.m */,
);
name = "Table View Controllers";
path = Platforms/iOS;
sourceTree = "<group>";
};
45E7B5AB1B78913100D63EE0 /* Theming */ = {
isa = PBXGroup;
children = (
45E7B5AC1B78915F00D63EE0 /* FPTheme.h */,
45E7B5AD1B78915F00D63EE0 /* FPTheme.m */,
45E7B5B01B789B8700D63EE0 /* FPThemeApplier.h */,
45E7B5B11B789B8700D63EE0 /* FPThemeApplier.m */,
45E7B5B41B78A4BC00D63EE0 /* UILabel+Appearance.h */,
45E7B5B51B78A4BC00D63EE0 /* UILabel+Appearance.m */,
);
name = Theming;
sourceTree = "<group>";
};
45FCE709199B68C900D86B40 /* Shared */ = {
isa = PBXGroup;
children = (
45CD26D5199CB6330048B483 /* Models */,
45A2C3491974389A009D436D /* Categories */,
45FCE70A199B68D200D86B40 /* Misc Classes */,
45ADBF6E1951A44000EB2215 /* FPAPIClient.h */,
45ADBF6F1951A44000EB2215 /* FPAPIClient.m */,
45920DDE194A0D8A007003C1 /* FPConfig.h */,
45920DDF194A0D8A007003C1 /* FPConfig.m */,
83A0314615A89E040085E186 /* FPConstants.h */,
83A0314715A89E040085E186 /* FPConstants.m */,
453B7A3E19DEA59F000D2841 /* FPExternalHeaders.h */,
456263DB19EFF6F700A34C29 /* FPLibrary.h */,
456263DC19EFF6F700A34C29 /* FPLibrary.m */,
45920DDD194A0D2E007003C1 /* FPMacros.h */,
451051DF195B300E00F877B3 /* FPMultipartUploader.h */,
451051E0195B300E00F877B3 /* FPMultipartUploader.m */,
4546386F19825A0500102885 /* FPPrivateConfig.h */,