-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFieldType.cs
1244 lines (1107 loc) · 73.6 KB
/
FieldType.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TheAppsPajamas.Shared.Types
{
public class FieldType : Enumeration<FieldType, string>
{
#region Properties
public ProjectType ProjectType { get; }
public FieldHolderType FieldHolderType { get; }
public int Order { get; }
public bool IsForClient { get; }
public bool IsProdReady { get; }
public bool DefaultToDisabled { get; }
public FieldType InheritsFromDefault { get; }
public Dictionary<string, string> Metadata { get; }
#endregion
#region Fields
#region AppIconShared
public static readonly AppIconFieldType AppIconSharedMaster
= new AppIconFieldType.Shared("1", "Shared master app icon", 10, false, true, false, null, null, 1024);
#endregion
#region AppIconDroid
public static readonly AppIconFieldType AppIconDroidMaster
= new AppIconFieldType.Droid("100", "Droid master app icon", 10, false, true, false, AppIconSharedMaster, null, 1024);
public static readonly AppIconFieldType AppIconDroidPlaystore
= new AppIconFieldType.Droid("105", "Droid playstore app icon", 20, false, true, false, AppIconDroidMaster, null, 1024);
public static readonly AppIconFieldType AppIconDroidLdpi
= new AppIconFieldType.Droid("110", "Droid ldpi app icon", 30, true, true, false, AppIconDroidMaster
, new Dictionary<string, string> { { "folder", "mipmap-ldpi" } }, 36);
public static readonly AppIconFieldType AppIconDroidMdpi
= new AppIconFieldType.Droid("115", "Droid mdpi app icon", 40, true, true, false, AppIconDroidMaster
, new Dictionary<string, string> { { "folder", "mipmap-mdpi" } }, 48);
public static readonly AppIconFieldType AppIconDroidHdpi
= new AppIconFieldType.Droid("120", "Droid hdpi app icon", 50, true, true, false, AppIconDroidMaster
, new Dictionary<string, string> { { "folder", "mipmap-hdpi" } }, 72);
public static readonly AppIconFieldType AppIconDroidXhdpi
= new AppIconFieldType.Droid("125", "Droid xhdpi app icon", 60, true, true, false, AppIconDroidMaster
, new Dictionary<string, string> { { "folder", "mipmap-xhdpi" } }, 96);
public static readonly AppIconFieldType AppIconDroidXxhdpi
= new AppIconFieldType.Droid("130", "Droid xxhdpi app icon", 70, true, true, false, AppIconDroidMaster
, new Dictionary<string, string> { { "folder", "mipmap-xxhdpi" } }, 144);
public static readonly AppIconFieldType AppIconDroidXxxhdpi
= new AppIconFieldType.Droid("135", "Droid xxxhdpi app icon", 80, true, true, false, AppIconDroidMaster
, new Dictionary<string, string> { { "folder", "mipmap-xxxhdpi" } }, 192);
#endregion
#region AppIconIos
public static readonly AppIconFieldType AppIconIosMaster
= new AppIconFieldType.Ios("200", "Ios master app icon", 10, false, true, false, AppIconSharedMaster, null, 1024);
public static readonly AppIconFieldType AppIconIosITunesArtwork
= new AppIconFieldType.Ios("205", "Ios iTunesArtwork", 20, true, true, false, AppIconIosMaster
, new Dictionary<string, string> { { "filename", "iTunesArtwork" } }, 512);
public static readonly AppIconFieldType AppIconIosITunesArtwork_2x
= new AppIconFieldType.Ios("210", "Ios iTunesArtwork@2x", 30, true, true, false, AppIconIosMaster
, new Dictionary<string, string> { { "filename", "iTunesArtwork@2x" } }, 1024);
public static readonly AppIconFieldType AppIconIosMarketingIcon
= new AppIconFieldType.Ios("215", "Ios marketing icon", 40, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "1024x1024"},
{"idiom", "ios-marketing"},
{"scale", "1x"},
{ "filename", "Icon-Marketing.png" }
}, 1024);
public static readonly AppIconFieldType AppIconIosIcon20_1x
= new AppIconFieldType.Ios("220", "Ios icon-20@1x", 50, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "20x20"},
{"idiom", "ipad"},
{"scale", "1x"},
{ "filename", "[email protected]" }
}, 20);
public static readonly AppIconFieldType AppIconIosIcon20_2x
= new AppIconFieldType.Ios("225", "Ios icon-20@2x", 60, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "20x20"},
{"idiom", "iphone"},
{"idiom2", "ipad"},
{"scale", "2x"},
{ "filename", "[email protected]" }
}, 40);
public static readonly AppIconFieldType AppIconIosIcon20_3x
= new AppIconFieldType.Ios("230", "Ios icon-20@3x", 70, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "20x20"},
{"idiom", "iphone"},
{"scale", "3x"},
{ "filename", "[email protected]" }
}, 60);
public static readonly AppIconFieldType AppIconIosIcon60_2x
= new AppIconFieldType.Ios("235", "Ios icon-60@2x", 80, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "60x60"},
{"idiom", "iphone"},
{"scale", "2x"},
{ "filename", "[email protected]" }
}, 120);
public static readonly AppIconFieldType AppIconIosIcon60_3x
= new AppIconFieldType.Ios("240", "Ios icon-60@3x", 90, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "60x60"},
{"idiom", "iphone"},
{"scale", "3x"},
{ "filename", "[email protected]" }
}, 180);
public static readonly AppIconFieldType AppIconIosIcon76
= new AppIconFieldType.Ios("245", "Ios icon-76", 100, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "76x76"},
{"idiom", "ipad"},
{"scale", "1x"},
{ "filename", "Icon-76.png" }
}, 76);
public static readonly AppIconFieldType AppIconIosIcon76_2x
= new AppIconFieldType.Ios("250", "Ios icon-76@2x", 110, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "76x76"},
{"idiom", "ipad"},
{"scale", "2x"},
{ "filename", "[email protected]" }
}, 152);
public static readonly AppIconFieldType AppIconIosIcon83_5_2x
= new AppIconFieldType.Ios("255", "Ios icon-83.5@2x", 120, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "83.5x83.5"},
{"idiom", "ipad"},
{"scale", "2x"},
{ "filename", "[email protected]" }
}, 167);
public static readonly AppIconFieldType AppIconIosIconSmall40
= new AppIconFieldType.Ios("260", "Ios icon-small-40", 130, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "40x40"},
{"idiom", "ipad"},
{"scale", "1x"},
{ "filename", "Icon-Small-40.png" }
}, 40);
public static readonly AppIconFieldType AppIconIosIconSmall40_2x
= new AppIconFieldType.Ios("265", "Ios icon-small-40@2x", 140, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "40x40"},
{"idiom", "iphone"},
{"scale", "2x"},
{"idiom2", "ipad"},
{ "filename", "[email protected]" }
}, 80);
public static readonly AppIconFieldType AppIconIosIconSmall40_3x
= new AppIconFieldType.Ios("270", "Ios icon-small-40@3x", 150, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "40x40"},
{"idiom", "iphone"},
{"scale", "3x"},
{ "filename", "[email protected]" }
}, 120);
public static readonly AppIconFieldType AppIconIosIconSmall
= new AppIconFieldType.Ios("275", "Ios icon-small", 160, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "29x29"},
{"idiom", "ipad"},
{"scale", "1x"},
{ "filename", "Icon-Small.png" }
}, 29);
public static readonly AppIconFieldType AppIconIosIconSmall_2x
= new AppIconFieldType.Ios("280", "Ios icon-small@2x", 170, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "29x29"},
{"idiom", "iphone"},
{"scale", "2x"},
{"idiom2", "ipad"},
{ "filename", "[email protected]" }
}, 58);
public static readonly AppIconFieldType AppIconIosIconSmall_3x
= new AppIconFieldType.Ios("285", "Ios icon-small@3x", 180, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "29x29"},
{"idiom", "iphone"},
{"scale", "3x"},
{"idiom2", "ipad"},
{ "filename", "[email protected]" }
}, 87);
#region watch
public static readonly AppIconFieldType AppIconIosAppIcon40x40_2x
= new AppIconFieldType.Ios("300", "Ios icon-watch-40@2x", 190, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "40x40"},
{"idiom", "watch"},
{"scale", "2x"},
{ "role", "appLauncher" },
{ "subtype", "38mm" },
{ "filename", "[email protected]" }
}, 80);
public static readonly AppIconFieldType AppIconIosAppIcon44x44_2x
= new AppIconFieldType.Ios("305", "Ios icon-watch-44@2x", 200, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "44x44"},
{"idiom", "watch"},
{"scale", "2x"},
{ "role", "longLook" },
{ "subtype", "42mm" },
{ "filename", "[email protected]" }
}, 88);
public static readonly AppIconFieldType AppIconIosAppIcon86x86_2x
= new AppIconFieldType.Ios("310", "Ios icon-watch-86@2x", 210, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "86x86"},
{"idiom", "watch"},
{"scale", "2x"},
{ "role", "quickLook" },
{ "subtype", "38mm" },
{ "filename", "[email protected]" }
}, 172);
public static readonly AppIconFieldType AppIconIosAppIcon98x98_2x
= new AppIconFieldType.Ios("315", "Ios icon-watch-98@2x", 220, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "98x98"},
{"idiom", "watch"},
{"scale", "2x"},
{ "role", "quickLook" },
{ "subtype", "42mm" },
{ "filename", "[email protected]" }
}, 196);
public static readonly AppIconFieldType AppIconIosAppIcon24x24_2x
= new AppIconFieldType.Ios("320", "Ios icon-watch-24@2x", 230, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "24x24"},
{"idiom", "watch"},
{"scale", "2x"},
{ "role", "notificationCenter" },
{ "subtype", "38mm" },
{ "filename", "[email protected]" }
}, 48);
public static readonly AppIconFieldType AppIcon27_5x27_5_2x
= new AppIconFieldType.Ios("325", "Ios icon-watch-27-5@2x", 240, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "27.5x27.5"},
{"idiom", "watch"},
{"scale", "2x"},
{ "role", "notificationCenter" },
{ "subtype", "42mm" },
{ "filename", "[email protected]" }
}, 55);
public static readonly AppIconFieldType AppIcon29x29_2x
= new AppIconFieldType.Ios("330", "Ios icon-watch-29@2x", 250, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "29x29"},
{"idiom", "watch"},
{"scale", "2x"},
{ "role", "companionSettings" },
{ "filename", "[email protected]" }
}, 58);
public static readonly AppIconFieldType AppIcon29x29_3x
= new AppIconFieldType.Ios("335", "Ios icon-watch-29@3x", 260, true, true, false, AppIconIosMaster
, new Dictionary<string, string>{
{"size", "29x29"},
{"idiom", "watch"},
{"scale", "3x"},
{ "role", "companionSettings" },
{ "filename", "[email protected]" }
}, 87);
#endregion
#endregion
#region Packaging
public static PackagingFieldType PackagingSharedName
= new PackagingFieldType("1000", "Shared name", ProjectType.Shared, 10, false, true, false, null, StringFieldDisplayType.Text, String.Empty);
public static PackagingFieldType PackagingSharedIdentifier
= new PackagingFieldType("1005", "Shared identifier", ProjectType.Shared, 20, false, true, false, null, StringFieldDisplayType.Text, String.Empty);
public static PackagingFieldType PackagingSharedVersionText
= new PackagingFieldType("1010", "Shared version", ProjectType.Shared, 30, false, true, false, null, StringFieldDisplayType.Text, String.Empty);
public static PackagingFieldType PackagingSharedVersionNumber
= new PackagingFieldType("1015", "Shared version number", ProjectType.Shared, 40, false, true, false, null, StringFieldDisplayType.Number, String.Empty);
public static PackagingFieldType PackagingDroidName
= new PackagingFieldType("1100", "Droid name", ProjectType.Droid, 10, true, true, false, PackagingSharedName, StringFieldDisplayType.Text, String.Empty);
public static PackagingFieldType PackagingDroidIdentifier
= new PackagingFieldType("1105", "Droid identifier", ProjectType.Droid, 20, true, true, false, PackagingSharedIdentifier, StringFieldDisplayType.Text, String.Empty);
public static PackagingFieldType PackagingDroidVersionText
= new PackagingFieldType("1110", "Droid version", ProjectType.Droid, 30, true, true, false, PackagingSharedVersionText, StringFieldDisplayType.Text, String.Empty);
public static PackagingFieldType PackagingDroidVersionNumber
= new PackagingFieldType("1115", "Droid version number", ProjectType.Droid, 40, true, true, false, PackagingSharedVersionNumber, StringFieldDisplayType.Number, String.Empty);
public static PackagingFieldType PackagingDroidAppIconName
= new PackagingFieldType("1120", "Droid app icon name", ProjectType.Droid, 50, true, true, false, null, StringFieldDisplayType.Text, "ic_launcher");
public static PackagingFieldType PackagingDroidSplashName
= new PackagingFieldType("1125", "Droid splash image name", ProjectType.Droid, 60, true, true, false, null, StringFieldDisplayType.Text, "ic_splash");
public static PackagingFieldType PackagingIosName
= new PackagingFieldType("1200", "Ios name", ProjectType.Ios, 10, true, true, false, PackagingSharedName, StringFieldDisplayType.Text, String.Empty);
public static PackagingFieldType PackagingIosIdentifier
= new PackagingFieldType("1205", "Ios identifier", ProjectType.Ios, 20, true, true, false, PackagingSharedIdentifier, StringFieldDisplayType.Text, String.Empty);
public static PackagingFieldType PackagingIosVersionText
= new PackagingFieldType("1210", "Ios version", ProjectType.Ios, 30, true, true, false, PackagingSharedVersionText, StringFieldDisplayType.Text, String.Empty);
public static PackagingFieldType PackagingIosVersionNumber
= new PackagingFieldType("1215", "Ios version number", ProjectType.Ios, 40, true, true, false, PackagingSharedVersionNumber, StringFieldDisplayType.Number, String.Empty);
public static PackagingFieldType PackagingIosAssetCatalogueName
= new PackagingFieldType("1220", "Ios asset catalogue name", ProjectType.Ios, 50, true, true, false, null, StringFieldDisplayType.Text, "Tap");
public static PackagingFieldType PackagingIosAppIconXcAssetsName
= new PackagingFieldType("1225", "Ios app icon xcassets name", ProjectType.Ios, 60, true, true, false, null, StringFieldDisplayType.Text, "AppIcon");
public static PackagingFieldType PackagingIosUseLaunchStoryboard
= new PackagingFieldType("1230", "Ios use launch storyboard", ProjectType.Ios, 70, true, true, false, null, StringFieldDisplayType.Bool, "0");
public static PackagingFieldType PackagingIosLaunchStoryboardName
= new PackagingFieldType("1235", "Ios launch storyboard name", ProjectType.Ios, 80, true, true, false, null, StringFieldDisplayType.Text, "LaunchScreen");
public static PackagingFieldType PackagingIosLaunchStoryboardPortraitXcAssetsName
= new PackagingFieldType("1240", "Ios portrait launch storyboard xcassets name", ProjectType.Ios, 90, true, true, false, null, StringFieldDisplayType.Text, "LaunchScreenPortrait");
public static PackagingFieldType PackagingIosLaunchStoryboardLandscapeXcAssetsName
= new PackagingFieldType("1245", "Ios landscape launch storyboard xcassets name", ProjectType.Ios, 100, true, true, false, null, StringFieldDisplayType.Text, "LaunchScreenLandscape");
public static PackagingFieldType PackagingIosLaunchImageXcAssetsName
= new PackagingFieldType("1250", "Ios launch image xcassets name", ProjectType.Ios, 110, true, true, false, null, StringFieldDisplayType.Text, "Launch");
public static PackagingFieldType PackagingIosUsesNonExemptEncryption
= new PackagingFieldType("1255", "Ios uses non exempt encryption", ProjectType.Ios, 120, true, true, false, null, StringFieldDisplayType.Bool, "0");
#endregion
#region BuildConfig
public static BuildConfigRecordSetFieldType BuildConfigFieldSetCompilerConstants
= new BuildConfigRecordSetFieldType("2000", "Compiler constants", ProjectType.Shared, 10, true, true, false, StringFieldDisplayType.Text, String.Empty);
#endregion
#region SplashShared
public static readonly SplashFieldType SplashSharedMaster
= new SplashFieldType.Shared(value: "3000", displayName: "Shared master portrait splash screen"
, order: 10, isForClient: false, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: null
, metadata: null
, width: 2048, height: 2048);
public static readonly SplashFieldType SplashSharedMasterLand
= new SplashFieldType.Shared(value: "3010", displayName: "Shared master landscape splash screen"
, order: 20, isForClient: false, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashSharedMaster
, metadata: null
, width: 2048, height: 2048);
#endregion
#region SplashDroid
#region SplashDroidMaster
public static readonly SplashFieldType SplashDroidMaster
= new SplashFieldType.Droid(value: "3100", displayName: "Droid master portrait splash screen"
, order: 10, isForClient: false, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashSharedMaster
, metadata: null
, width: 2048, height: 2048);
public static readonly SplashFieldType SplashDroidMasterLand
= new SplashFieldType.Droid(value: "3105", displayName: "Droid master landscape splash screen"
, order: 20, isForClient: false, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashSharedMasterLand
, metadata: null
, width: 2048, height: 2048);
#endregion
#region SplashDroidPortrait
public static readonly SplashFieldType SplashDroidDrawable
= new SplashFieldType.Droid(value: "3200", displayName: "Droid drawable portrait splash screen"
, order: 30, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashDroidMaster
, metadata: new Dictionary<string, string> {
{ "folder", "drawable" }
}, width: 480, height: 800);
public static readonly SplashFieldType SplashDroidDrawableLdpi
= new SplashFieldType.Droid(value: "3205", displayName: "Droid drawable portrait ldpi splash screen"
, order: 40, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashDroidMaster
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-ldpi" }
}, width: 200, height: 320);
public static readonly SplashFieldType SplashDroidDrawableMdpi
= new SplashFieldType.Droid(value: "3210", displayName: "Droid drawable portrait mdpi splash screen"
, order: 50, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashDroidMaster
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-mdpi" }
}, width: 320, height: 480);
public static readonly SplashFieldType SplashDroidDrawableHdpi
= new SplashFieldType.Droid(value: "3215", displayName: "Droid drawable portrait hpi splash screen"
, order: 60, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashDroidMaster
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-hdpi" }
}, width: 480, height: 800);
public static readonly SplashFieldType SplashDroidDrawableXhdpi
= new SplashFieldType.Droid(value: "3220", displayName: "Droid drawable portrait xhdpi splash screen"
, order: 70, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashDroidMaster
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-xhdpi" }
}, width: 720, height: 1280);
public static readonly SplashFieldType SplashDroidDrawableXxhdpi
= new SplashFieldType.Droid(value: "3225", displayName: "Droid drawable portrait xxhdpi splash screen"
, order: 80, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashDroidMaster
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-xxhdpi" }
}, width: 960, height: 1600);
public static readonly SplashFieldType SplashDroidDrawableXxxhdpi
= new SplashFieldType.Droid(value: "3230", displayName: "Droid drawable portrait xxxhdpi splash screen"
, order: 90, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashDroidMaster
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-xxxhdpi" }
}, width: 1280, height: 1920);
#endregion
#region SplashDroidLandscape
public static readonly SplashFieldType SplashDroidDrawableLand
= new SplashFieldType.Droid(value: "3400", displayName: "Droid drawable landscape splash screen"
, order: 210, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashDroidMasterLand
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-land" }
}, width: 800, height: 480);
public static readonly SplashFieldType SplashDroidDrawableLandLdpi
= new SplashFieldType.Droid(value: "3405", displayName: "Droid drawable landscape ldpi splash screen"
, order: 220, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashDroidMasterLand
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-land-ldpi" }
}, width: 320, height: 200);
public static readonly SplashFieldType SplashDroidDrawableLandMdpi
= new SplashFieldType.Droid(value: "3410", displayName: "Droid drawable landscape mdpi splash screen"
, order: 230, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashDroidMasterLand
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-land-mdpi" }
}, width: 480, height: 320);
public static readonly SplashFieldType SplashDroidDrawableLandHdpi
= new SplashFieldType.Droid(value: "3415", displayName: "Droid drawable landscape hdpi splash screen"
, order: 240, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashDroidMasterLand
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-land-hdpi" }
}, width: 800, height: 480);
public static readonly SplashFieldType SplashDroidDrawableLandXhdpi
= new SplashFieldType.Droid(value: "3420", displayName: "Droid drawable landscape xhdpi splash screen"
, order: 250, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashDroidMasterLand
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-land-xhdpi" }
}, width: 1280, height: 720);
public static readonly SplashFieldType SplashDroidDrawableLandXxhdpi
= new SplashFieldType.Droid(value: "3425", displayName: "Droid drawable landscape xxhdpi splash screen"
, order: 260, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashDroidMasterLand
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-land-xxhdpi" }
}, width: 1600, height: 960);
public static readonly SplashFieldType SplashDroidDrawableLandXxxhdpi
= new SplashFieldType.Droid(value: "3430", displayName: "Droid drawable landscape xxxhdpi splash screen"
, order: 270, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashDroidMasterLand
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-land-xxxhdpi" }
}, width: 1920, height: 1280);
#endregion
#region SplashDroidPortraitOptional
public static readonly SplashFieldType SplashDroidDrawableSw480dpMdpi
= new SplashFieldType.Droid(value: "3300", displayName: "Droid drawable portrait sw480dp mdpi splash screen"
, order: 410, isForClient: true, isProdReady: true, defaultToDisabled: true
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashDroidMaster
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-sw480dp-mdpi" }
}, width: 480, height: 800);
public static readonly SplashFieldType SplashDroidDrawableSw600dpMdpi
= new SplashFieldType.Droid(value: "3305", displayName: "Droid drawable portrait sw600dp mdpi splash screen"
, order: 420, isForClient: true, isProdReady: true, defaultToDisabled: true
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashDroidMaster
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-sw600dp-mdpi" }
}, width: 600, height: 1024);
public static readonly SplashFieldType SplashDroidDrawableSw720dpMdpi
= new SplashFieldType.Droid(value: "3310", displayName: "Droid drawable portrait sw720dp mdpi splash screen"
, order: 430, isForClient: true, isProdReady: true, defaultToDisabled: true
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashDroidMaster
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-sw720dp-mdpi" }
}, width: 720, height: 1280);
public static readonly SplashFieldType SplashDroidDrawableSw800dpMdpi
= new SplashFieldType.Droid(value: "3315", displayName: "Droid drawable portrait sw800dp mdpi splash screen"
, order: 440, isForClient: true, isProdReady: true, defaultToDisabled: true
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashDroidMaster
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-sw800dp-mdpi" }
}, width: 800, height: 1280);
#endregion
#region SplashDroidLandscapeOptional
public static readonly SplashFieldType SplashDroidDrawableLandSw480dpMdpi
= new SplashFieldType.Droid(value: "3500", displayName: "Droid drawable landscape sw480dp mdpi splash screen"
, order: 610, isForClient: true, isProdReady: true, defaultToDisabled: true
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashDroidMasterLand
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-sw480dp-land-mdpi" }
}, width: 800, height: 480);
public static readonly SplashFieldType SplashDroidDrawableLandSw600dpMdpi
= new SplashFieldType.Droid(value: "3505", displayName: "Droid drawable landscape sw600dp mdpi splash screen"
, order: 620, isForClient: true, isProdReady: true, defaultToDisabled: true
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashDroidMasterLand
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-sw600dp-land-mdpi" }
}, width: 1024, height: 600);
public static readonly SplashFieldType SplashDroidDrawableLandSw720dpMdpi
= new SplashFieldType.Droid(value: "3510", displayName: "Droid drawable landscape sw720dp mdpi splash screen"
, order: 630, isForClient: true, isProdReady: true, defaultToDisabled: true
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashDroidMasterLand
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-sw720dp-land-mdpi" }
}, width: 1280, height: 720);
public static readonly SplashFieldType SplashDroidDrawableLandSw800dpMdpi
= new SplashFieldType.Droid(value: "3515", displayName: "Droid drawable landscape sw800dp mdpi splash screen"
, order: 640, isForClient: true, isProdReady: true, defaultToDisabled: true
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashDroidMasterLand
, metadata: new Dictionary<string, string> {
{ "folder", "drawable-sw800dp-land-mdpi" }
}, width: 1280, height: 800);
#endregion
#endregion
#region SplashIosMaster
public static readonly SplashFieldType SplashIosMaster
= new SplashFieldType.Ios(value: "3600", displayName: "Ios launch master portrait splash screen"
, order: 10, isForClient: false, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashSharedMaster
, metadata: null
, width: 2048, height: 2048);
public static readonly SplashFieldType SplashIosMasterLand
= new SplashFieldType.Ios(value: "3605", displayName: "Ios launch master landscape splash screen"
, order: 20, isForClient: false, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashSharedMasterLand
//filename specified by packaging
, metadata: null
, width: 2048, height: 2048);
#endregion
#region SplashIosImageSetPortrait
public static readonly SplashFieldType SplashIosStoryboard_Universal
= new SplashFieldType.Ios(value: "3610", displayName: "Ios launch storyboard (universal, iPhone 5) portrait splash screen"
, order: 30, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "universal" },
{ "scale" , "1x" },
{ "filename" , "StoryboardLaunchImage-Portrait~universal.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardPortraitXcAssetsName.Value.ToString() }
}, width: 640, height: 1136);
public static readonly SplashFieldType SplashIosStoryboard_Universal2x
= new SplashFieldType.Ios(value: "3615", displayName: "Ios launch@2x storyboard (universal, iPhone 6) portrait splash screen"
, order: 40, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "universal" },
{ "scale" , "2x" },
{ "filename" , "StoryboardLaunchImage-Portrait@2x~universal.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardPortraitXcAssetsName.Value.ToString() }
}, width: 750, height: 1134);
public static readonly SplashFieldType SplashIosStoryboard_Universal3x
= new SplashFieldType.Ios(value: "3625", displayName: "Ios launch@3x storyboard (universal, iPhone 6 plus) portrait splash screen"
, order: 50, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "universal" },
{ "scale" , "3x" },
{ "filename" , "StoryboardLaunchImage-Portrait@3x~universal.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardPortraitXcAssetsName.Value.ToString() }
}, width: 1242, height: 2208);
public static readonly SplashFieldType SplashIosStoryboardIphone
= new SplashFieldType.Ios(value: "3630", displayName: "Ios launch storyboard (iPhone, iPhone 5) portrait splash screen"
, order: 60, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "iphone" },
{ "scale" , "1x" },
{ "filename" , "StoryboardLaunchImage-Portrait~iphone.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardPortraitXcAssetsName.Value.ToString() }
}, width: 640, height: 1136);
public static readonly SplashFieldType SplashIosStoryboard_iPhone2x
= new SplashFieldType.Ios(value: "3635", displayName: "Ios launch@2x storyboard (iPhone, iPhone 6) portrait splash screen"
, order: 70, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "iphone" },
{ "scale" , "2x" },
{ "filename" , "StoryboardLaunchImage-Portrait@2x~iphone.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardPortraitXcAssetsName.Value.ToString() }
}, width: 750, height: 1134);
public static readonly SplashFieldType SplashIosStoryboard_R2x
= new SplashFieldType.Ios(value: "3640", displayName: "Ios launch@2x storyboard (iPhone 4 retina) portrait splash screen"
, order: 80, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "iphone" },
{ "scale" , "2x" },
{ "subtype", "retina4" },
{ "filename" , "StoryboardLaunchImage-R4-Portrait@2x~iphone.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardPortraitXcAssetsName.Value.ToString() }
}, width: 640, height: 960);
public static readonly SplashFieldType SplashIosStoryboard_Iphone3x
= new SplashFieldType.Ios(value: "3645", displayName: "Ios launch@3x storyboard (iPhone, iPhone 6 plus) portrait splash screen"
, order: 90, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "iphone" },
{ "scale" , "3x" },
{ "filename" , "StoryboardLaunchImage-Portrait@3x~iphone.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardPortraitXcAssetsName.Value.ToString() }
}, width: 1242, height: 2208);
public static readonly SplashFieldType SplashIosStoryboard_Ipad1x
= new SplashFieldType.Ios(value: "3650", displayName: "Ios launch@1x storyboard (iPad) portrait splash screen"
, order: 100, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "ipad" },
{ "scale" , "1x" },
{ "filename" , "StoryboardLaunchImage-Portrait@1x~ipad.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardPortraitXcAssetsName.Value.ToString() }
}, width: 768, height: 1024);
public static readonly SplashFieldType SplashIosStoryboard_Ipad2x
= new SplashFieldType.Ios(value: "3655", displayName: "Ios launch@2x storyboard (iPad) portrait splash screen"
, order: 110, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "ipad" },
{ "scale" , "2x" },
{ "filename" , "StoryboardLaunchImage-Portrait@2x~ipad.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardPortraitXcAssetsName.Value.ToString() }
}, width: 1536, height: 2048);
#endregion
#region SplashIosImageSetLandscape
public static readonly SplashFieldType SplashIosStoryboardLand_Universal
= new SplashFieldType.Ios(value: "3900", displayName: "Ios launch storyboard (universal) landscape splash screen"
, order: 200, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashIosMasterLand
//filename specified by packaging
, metadata: new Dictionary<string, string>{
{ "idiom" , "universal" },
{ "scale" , "1x" },
{ "filename" , "StoryboardLaunchImage-Landscape~universal.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardLandscapeXcAssetsName.Value.ToString() }
}, width: 1136, height: 640);
public static readonly SplashFieldType SplashIosStoryboardLand_Universal2x
= new SplashFieldType.Ios(value: "3905", displayName: "Ios launch@2x storyboard (universal) landscape splash screen"
, order: 210, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashIosMasterLand
//filename specified by packaging
, metadata: new Dictionary<string, string>{
{ "idiom" , "universal" },
{ "scale" , "2x" },
{ "filename" , "StoryboardLaunchImage-Landscape@2x~universal.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardLandscapeXcAssetsName.Value.ToString() }
}, width: 1334, height: 750);
public static readonly SplashFieldType SplashIosStoryboardLand_Universal3x
= new SplashFieldType.Ios(value: "3910", displayName: "Ios launch@3x storyboard (universal) landscape splash screen"
, order: 220, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashIosMasterLand
//filename specified by packaging
, metadata: new Dictionary<string, string>{
{ "idiom" , "universal" },
{ "scale" , "3x" },
{ "filename" , "StoryboardLaunchImage-Landscape@3x~universal.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardLandscapeXcAssetsName.Value.ToString() }
}, width: 2208, height: 1242);
public static readonly SplashFieldType SplashIosStoryboardIphoneLand
= new SplashFieldType.Ios(value: "3915", displayName: "Ios launch storyboard (iPhone, iPhone 5) landscape splash screen"
, order: 230, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "iphone" },
{ "scale" , "1x" },
{ "filename" , "StoryboardLaunchImage-Landscape~iphone.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardLandscapeXcAssetsName.Value.ToString() }
}, width: 1136, height: 640);
public static readonly SplashFieldType SplashIosStoryboardLand_iPhone2x
= new SplashFieldType.Ios(value: "3920", displayName: "Ios launch@2x storyboard (iPhone, iPhone 6) landscape splash screen"
, order: 240, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "iphone" },
{ "scale" , "2x" },
{ "filename" , "StoryboardLaunchImage-Landscape@2x~iphone.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardLandscapeXcAssetsName.Value.ToString() }
}, width: 1134, height: 750);
public static readonly SplashFieldType SplashIosStoryboardLand_R2x
= new SplashFieldType.Ios(value: "3925", displayName: "Ios launch@2x storyboard (iPhone 4 retina) landscape splash screen"
, order: 250, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "iphone" },
{ "scale" , "2x" },
{ "subtype", "retina4" },
{ "filename" , "[email protected]"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardLandscapeXcAssetsName.Value.ToString() }
}, width: 960, height: 640);
public static readonly SplashFieldType SplashIosStoryboardLand_Iphone3x
= new SplashFieldType.Ios(value: "3930", displayName: "Ios launch@3x storyboard (iPhone, iPhone 6 plus) landscape splash screen"
, order: 260, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "iphone" },
{ "scale" , "3x" },
{ "filename" , "StoryboardLaunchImage-Landscape@3x~iphone.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardLandscapeXcAssetsName.Value.ToString() }
}, width: 2208, height: 1242);
public static readonly SplashFieldType SplashIosStoryboardLand_Ipad1x
= new SplashFieldType.Ios(value: "3940", displayName: "Ios launch@1x storyboard (iPad) landscape splash screen"
, order: 270, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "ipad" },
{ "scale" , "1x" },
{ "filename" , "StoryboardLaunchImage-Landscape@1x~ipad.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardLandscapeXcAssetsName.Value.ToString() }
}, width: 1024, height: 768);
public static readonly SplashFieldType SplashIosStoryboardLand_Ipad2x
= new SplashFieldType.Ios(value: "3950", displayName: "Ios launch@2x storyboard (iPad) landscape splash screen"
, order: 280, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Landscape
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "idiom" , "ipad" },
{ "scale" , "2x" },
{ "filename" , "StoryboardLaunchImage-Landscape@2x~ipad.png"},
{ "CataloguePackagingFieldId", PackagingIosLaunchStoryboardLandscapeXcAssetsName.Value.ToString() }
}, width: 2048, height: 1536);
#endregion
#region SplashIosLaunchSetPortrait
public static readonly SplashFieldType SplashIosIphone
= new SplashFieldType.Ios(value: "3700", displayName: "Ios iPhone (iOS 5, 6) portrait splash screen"
, order: 30, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "orientation" , "portrait" },
{ "idiom" , "iphone" },
{ "size", "320x480" },
{ "filename" , "LaunchImage~iphone.png" },
{ "extent" , "full-screen" },
{ "scale" , "1x" }
}, width: 320, height: 480);
public static readonly SplashFieldType SplashIosIphone_2x
= new SplashFieldType.Ios(value: "3705", displayName: "Ios iPhone@2x (iOS 5, 6) portrait splash screen"
, order: 40, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "orientation" , "portrait" },
{ "idiom" , "iphone" },
{ "size", "320x480" },
{ "filename" , "LaunchImage@2x~iphone.png" },
{ "extent" , "full-screen" },
{ "scale" , "2x" }
}, width: 640, height: 960);
public static readonly SplashFieldType SplashIos700_2x
= new SplashFieldType.Ios(value: "3710", displayName: "Ios 700@2x portrait splash screen"
, order: 50, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "minimum-system-version", "7.0" },
{ "orientation", "portrait" },
{ "extent", "full-screen" },
{ "filename", "LaunchImage-700-Portrait@2x~iphone.png" },
{ "size", "320x480" },
{ "scale", "2x" },
{ "idiom", "iphone" }
}, width: 640, height: 960);
public static readonly SplashFieldType SplashIos568h_2x
= new SplashFieldType.Ios(value: "3715", displayName: "Ios 568h@2x (iPhone Retina 4 inch) portrait splash screen"
, order: 60, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "minimum-system-version", "7.0" },
{ "orientation", "portrait" },
{ "extent", "full-screen" },
{ "filename", "[email protected]" },
{ "size", "320x568" },
{ "subtype", "retina4" },
{ "scale", "2x" },
{ "idiom", "iphone" }
}, width: 640, height: 1136);
public static readonly SplashFieldType SplashIos568h_3x
= new SplashFieldType.Ios(value: "3720", displayName: "Ios 568h@3x (iPhone Retina 4 inch) portrait splash screen"
, order: 70, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "orientation", "portrait" },
{ "extent", "full-screen" },
{ "filename", "[email protected]" },
{ "size", "320x568" },
{ "subtype", "retina4" },
{ "scale", "2x" },
{ "idiom", "iphone" }
}, width: 640, height: 1136);
public static readonly SplashFieldType SplashIos667h_2x
= new SplashFieldType.Ios(value: "3725", displayName: "Ios 667h@2x (iPhone 6) portrait splash screen"
, order: 80, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "minimum-system-version", "8.0" },
{ "orientation", "portrait" },
{ "extent", "full-screen" },
{ "filename", "[email protected]" },
{ "size", "375x667" },
{ "subtype", "667h" },
{ "scale", "2x" },
{ "idiom", "iphone" }
}, width: 750, height: 1334);
public static readonly SplashFieldType SplashIos736h_3x
= new SplashFieldType.Ios(value: "3730", displayName: "Ios 736h@3x (iPhone 6plus) portrait splash screen"
, order: 90, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "minimum-system-version", "8.0" },
{ "orientation", "portrait" },
{ "extent", "full-screen" },
{ "filename", "[email protected]" },
{ "size", "414x736" },
{ "subtype", "736h" },
{ "scale", "3x" },
{ "idiom", "iphone" }
}, width: 1242, height: 2208);
public static readonly SplashFieldType SplashIosIpad_1x
= new SplashFieldType.Ios(value: "3735", displayName: "Ios iPad@1x portrait splash screen"
, order: 100, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "orientation", "portrait" },
{ "extent", "full-screen" },
{ "filename", "LaunchImage-Portrait~ipad.png" },
{ "size", "768x1024" },
{ "scale", "1x" },
{ "idiom", "ipad" }
}, width: 768, height: 1024);
public static readonly SplashFieldType SplashIosIpad700_1x
= new SplashFieldType.Ios(value: "3740", displayName: "Ios iPad@1x (iOS 7+) portrait splash screen"
, order: 110, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "minimum-system-version", "7.0" },
{ "orientation", "portrait" },
{ "extent", "full-screen" },
{ "filename", "LaunchImage-700-Portrait~ipad.png" },
{ "size", "768x1024" },
{ "scale", "1x" },
{ "idiom", "ipad" }
}, width: 768, height: 1024);
public static readonly SplashFieldType SplashIosIpad_2x
= new SplashFieldType.Ios(value: "3745", displayName: "Ios iPad@2x portrait splash screen"
, order: 120, isForClient: true, isProdReady: true, defaultToDisabled: false
, mediaOrientationType: MediaOrientationType.Portrait
, inheritsFromDefault: SplashIosMaster
, metadata: new Dictionary<string, string>{
{ "orientation", "portrait" },