This repository was archived by the owner on Apr 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
1658 lines (1559 loc) · 95.9 KB
/
index.html
File metadata and controls
1658 lines (1559 loc) · 95.9 KB
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
<!DOCTYPE html>
<!--
Apache License, Version 2.0
http://www.apache.org/licenses/LICENSE-2.0.html
Copyright (c) 2012 Vassili Philippov <vassiliphilippov@onepf.org>
Copyright (c) 2014 Ruslan Sayfutdinov <ruslan@sayfutdinov.com>
Copyright (c) 2012 One Platform Foundation <www.onepf.org>
Copyright (c) 2012 Yandex <www.yandex.com>
-->
<html lang="en">
<head>
<meta charset="utf-8">
<title>AppDF Editor| One Platform Foundation</title>
<meta name="description" content="Submit your Android application to several app stores can be time consuming. The AppDF format is designed to simplify this process. You describe your Android application once, create a simple AppDF file that includes the description, APK file(s), screenshots, app icon, promo images, etc., then just upload this AppDF file to all the stores that support AppDF uploading." />
<meta name="keywords" content="submit to android app store, app stores,cross,multi,android, opera mobile store, slide.me, yandex store, codengo" />
<meta name="author" content="One Platform Foundation - 2014" />
<meta property="og:title" content="AppDF Editor| One Platform Foundation| One Platform Foundation" />
<meta property="og:description" content="Submit your Android application to several app stores can be time consuming. The AppDF format is designed to simplify this process. You describe your Android application once, create a simple AppDF file that includes the description, APK file(s), screenshots, app icon, promo images, etc., then just upload this AppDF file to all the stores that support AppDF uploading." />
<meta property="og:type" content="company" />
<meta property="og:url" content="http://onepf.org" />
<meta property="og:image" content="http://www.onepf.org/img/onepf_logo.png" />
<meta property="og:site_name" content="onepf.org" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="../editor/css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="../editor/css/bootstrap-responsive.css" rel="stylesheet">
<link href="../editor/css/appdfeditor.css" rel="stylesheet">
<link href="../editor/css/bsdocs.css" rel="stylesheet">
<link href="../editor/css/datepicker.css" rel="stylesheet">
<link href="../editor/css/bootstrap-panel.css" rel="stylesheet">
<link href="../editor/css/bootstrap-switch.min.css" rel="stylesheet">
<script type="text/javascript" src="../editor/data/categories.js"></script>
<script type="text/javascript" src="../editor/data/store_categories.js"></script>
<script type="text/javascript" src="../editor/data/stores.js"></script>
<script type="text/javascript" src="../editor/data/languages.js"></script>
<script type="text/javascript" src="../editor/data/countries.js"></script>
<script type="text/javascript" src="../editor/data/country_currencies.js"></script>
<script type="text/javascript" src="../editor/data/screen_resolutions.js"></script>
<script type="text/javascript" src="../editor/data/device_models.js"></script>
<script type="text/javascript" src="../editor/data/error_messages.js"></script>
<script type="text/javascript" src="../editor/js/jquery.js"></script>
<script type="text/javascript" src="../editor/js/bootstrap.min.js"></script>
<script type="text/javascript" src="../editor/js/bootstrap-datepicker.js"></script>
<script type="text/javascript" src="../editor/js/bootstrap-switch.min.js"></script>
<script type="text/javascript" src="../editor/js/jqBootstrapValidation.js"></script>
<script type="text/javascript" src="../editor/js/xmlgenerator.js"></script>
<script type="text/javascript" src="../editor/js/zip/zip.js"></script>
<script type="text/javascript" src="../editor/js/swfobject.js"></script>
<script type="text/javascript" src="../editor/js/appdflocalization.js"></script>
<script type="text/javascript" src="../editor/js/appdfimages.js"></script>
<script type="text/javascript" src="../editor/js/apkreader.js"></script>
<script type="text/javascript" src="../editor/js/appdfparser.js"></script>
<script type="text/javascript" src="../editor/js/appdfxmlsaving.js"></script>
<script type="text/javascript" src="../editor/js/appdfxmlloading.js"></script>
<script type="text/javascript" src="../editor/js/appdfeditor.js"></script>
<script type="text/javascript" src="../editor/js/FileSaver.js"></script>
<script type="text/javascript" src="../editor/js/Blob.js"></script>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="http://www.onepf.org/">One Platform Foundation</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="/appdf/">AppDF</a></li>
<li><a href="/openiab/">OpenIAB</a></li>
<li><a href="/openpush/">OpenPush</a></li>
<li><a href="/contribute/">Get Involved</a></li>
<li><a href="/follow/">Follow Us</a></li>
<li><a href="/appstores/">Analytics</a></li>
<li><a href="/faq/">FAQ</a></li>
<li><a href="/about/">About</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span3">
<div class="bs-docs-sidebar">
<ul class="nav nav-list bs-docs-sidenav">
<li><a href="#section-apk-files"><i class="icon-chevron-right"></i> APK File(s)</a></li>
<li><a href="#section-categorization"><i class="icon-chevron-right"></i> Category</a></li>
<li><a href="#section-description"><i class="icon-chevron-right"></i> Description</a></li>
<li><a href="#section-price"><i class="icon-chevron-right"></i> Price</a></li>
<li><a href="#section-customer-support"><i class="icon-chevron-right"></i> Customer Support</a></li>
<li><a href="#section-consent"><i class="icon-chevron-right"></i> Consent</a></li>
<li><a href="#section-content-description"><i class="icon-chevron-right"></i> Content Rating and Descriptors</a></li>
<li><a href="#section-availability"><i class="icon-chevron-right"></i> Availability</a></li>
<li><a href="#section-requirements"><i class="icon-chevron-right"></i> Requirements</a></li>
<li><a href="#section-testing-instructions"><i class="icon-chevron-right"></i> Testing Instructions</a></li>
<li><a href="#section-store-specific"><i class="icon-chevron-right"></i> Store Specific</a></li>
<li><a href="#section-inapp-products"><i class="icon-chevron-right"></i> In-app Products</a></li>
<li><a href="#section-build"><i class="icon-chevron-right"></i> Build</a></li>
<li><a href="#section-submit-appdf"><i class="icon-chevron-right"></i> Submit AppDF</a></li>
</ul>
</div><!--/.well -->
</div><!--/span-->
<div class="span9">
<div class="hero-unit">
<h1>AppDF Editor</h1>
<p>Uploading an Android application to several app stores can be time-consuming. AppDF format is designed to simplify the process. You describe your Android application once, create a simple AppDF file that includes a description, APK file(s), screenshots, app icon, promo images, etc., and simply upload this AppDF file to all the stores that support AppDF uploading.</p>
<p>
<button class="btn btn-primary show-import-description-xml">Import Description.xml</button>
<button class="btn btn-primary load-appdf-file">Open AppDF File</button>
</p>
</div>
<!--MODALS START-->
<div id="no-js-modal">
<div class="modal fade in" tabindex="-1" role="dialog" aria-labelledby="no-js-modal-label" aria-hidden="false" style="display: block;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="no-js-modal-label">Javascript is disabled</h3>
</div>
<div class="modal-body">
<div class="alert alert-error">
<b>Site wouldn`t work correctly</b>
</div>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Ok</button>
</div>
</div>
<div class="modal-backdrop fade in"></div>
</div><!--no_js modal-->
<div id="not-yet-supported-modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="not-yet-supported-modal-label" aria-hidden="false" style="display: block;">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="not-yet-supported-modal-label">Your browser isn't supported yet</h3>
</div>
<div class="modal-body">
<div class="alert alert-error">
<b>Please select one of these:</b>
<ul>
<li>Mozilla Firefox ver.15+</li>
<li>Chrome ver.19+</li>
<li>Yandex Browser</li>
</ul>
</div>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Ok</button>
</div>
</div><!--not supported browser modal-->
<div id="requirements-store-add-modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="requirements-store-add-modal-label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="requirements-store-add-modal-label">Add store</h3>
</div>
<div class="modal-body">
<div class="control-group">
<label class="control-label" for="storespecific-input-modal">Application store name</label>
<div class="controls">
<div class="">
<input type="text" id="storespecific-input-modal"
data-validation-callback-callback="appdfEditor.validationCallbackStoreSpecify"
autocomplete="off" data-provide="typeahead" data-items="20"
>
</div>
<p class="help-block">You can add custom fields for a particular application store or rewrite any of the application description fields. XML format is described in the <a href="https://github.com/onepf/AppDF/blob/master/specification/appds_spec_1_0.md" target="_blank">AppDF specification</a>.</p>
</div>
</div><!--control-group-->
<div class="control-group">
<label class="control-label" for="storespecific-name-default-modal">Store data</label>
<div class="controls">
<textarea class="input-x-xlarge" rows="8" id="storespecific-xml-default-modal"></textarea>
<p class="help-block">Store specific data in XML format. You can also rewrite any of the application description fields in this XML.
</div>
</div><!--./control-group -->
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button>
<button class="btn btn-primary">Add store</button>
</div>
</div><!--Modal-->
<div id="import-descriptionxml-modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="import-descriptionxml-modal-label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="import-descriptionxml-modal-label">Import Description.XML</h3>
</div>
<div class="modal-body">
<textarea id="import-descriptionxml-modal-text" class="input-x-xlarge" rows="5"></textarea><br>
<div class="alert alert-success hide" id="import-descriptionxml-modal-status">
<b>Importing Description.XML. Please wait...</b>
<div class="progress">
<div id="load-descriptionxml-modal-progressbar" class="bar" style="width: 0%;"></div>
</div>
</div>
<div class="alert alert-error hide" id="import-descriptionxml-modal-errors">
<b>Import errors:</b>
<ul></ul>
</div>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button>
<button class="btn btn-primary">Import</button>
</div>
</div><!--Modal-->
<div id="load-appdf-modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="load-appdf-modal-label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="load-appdf-modal-label">Open AppDF File</h3>
</div>
<div class="modal-body">
<div>
<input type="file" id="load-appdf-modal-file" class="hide ie_show" name="appdf-file" />
<div class="input-append ie_hide">
<input id="load-appdf-modal-prettyfile" class="input-xlarge" type="text" readonly="readonly">
<button class="btn load-appdf-modal-browse">Browse</button>
</div>
</div>
<div class="alert alert-success hide" id="load-appdf-modal-status">
<b>Loading AppDF file. Please wait...</b>
<div class="progress">
<div id="load-appdf-modal-progressbar" class="bar" style="width: 0%;"></div>
</div>
</div>
<div class="alert alert-error hide" id="load-appdf-modal-errors">
<b>Import errors:</b>
<ul></ul>
</div>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button>
<button class="btn btn-primary" id="load-appdf-modal-open-button">Open</button>
<button class="btn btn-primary hide" id="load-appdf-modal-open-unfinished-button">Open unfinished</button>
</div>
</div><!--Modal-->
<div id="description-videos-youtubevideo-dialog" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="description-videos-youtubevideo-dialog-label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="description-videos-youtubevideo-dialog-label">YouTube Video</h3>
</div>
<div class="modal-body">
URL:
<div class="input-append ie_hide">
<input id="description-videos-youtubevideo-dialog-url" class="input-xlarge" type="text">
<button class="btn description-videos-youtubevideo-dialog-check">Check</button>
</div>
<p id="description-videos-youtubevideo-dialog-info">
Copy/pase YouTube video URL into the edit field and press the "Check" button to make sure that URL is correct.
</p>
<iframe width="420" height="315" id="description-videos-youtubevideo-dialog-video" src="" frameborder="0" allowfullscreen class="hide"></iframe>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button>
<button class="btn btn-primary">OK</button>
</div>
</div><!--Modal-->
<div id="add-localization-modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="add-localization-modal-label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="add-localization-modal-label">Add Localization</h3>
</div>
<div class="modal-body">
<p>Language:
<select id="add-localization-modal-language">
</select>
</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button>
<button class="btn btn-primary">Add Localization</button>
</div>
</div><!--Model-->
<!--MODALS END-->
<form class="form-horizontal" action='' method="POST" novalidate>
<section id="section-apk-files">
<fieldset>
<div id="legend">
<legend class="">APK File(s)</legend>
</div>
<div class="control-group">
<!-- apk-files/apk-file -->
<label class="control-label" for="pretty-apk-file">APK File <span class="required-mark">*</span></label>
<div class="controls">
<input type="file" id="apk-file" class="hide ie_show hidden-apk-file"
name="apk-file"
accept="application/vnd.android.package-archive"
data-validation-callback-callback="appdfEditor.validationCallbackApkFileFirst"
/>
<div class="input-append ie_hide">
<input id="pretty-apk-file" class="input-large apkfile-pretty-browse" type="text" readonly="readonly">
<button class="btn apkfile-pretty-browse">Browse</button>
</div>
<p class="help-block">You can <a href="#" class="apk-file-addmore">add more APK files</a> for your application</p>
</div>
<div class="controls">
<div class="apk-file-info"></div>
</div>
</div>
</fieldset>
</section><!--section-apk-files-->
<section id="section-categorization">
<fieldset>
<div id="legend">
<legend class="">Category</legend>
</div>
<div class="control-group">
<!-- categorization/type -->
<label class="control-label" for="categorization-type">Application type <span class="required-mark">*</span></label>
<div class="controls">
<select id="categorization-type" name="categorization-type">
<option value="application">Application</option>
<option value="game">Game</option>
</select>
<p class="help-block">Select if your program is a game</p>
</div>
</div><!--control-group-->
<div class="control-group">
<!-- categorization/category -->
<label class="control-label" for="categorization-category">Category <span class="required-mark">*</span></label>
<div class="controls">
<select id="categorization-category" name="categorization-category">
</select>
<p class="help-block">Select the primary category. If you`re not sure, check how this category will be mapped to application stores categories.</p>
</div>
</div><!--control-group-->
<div class="control-group">
<!-- categorization/subcategory -->
<label class="control-label" for="categorization-subcategory">Subcategory</label>
<div class="controls">
<select id="categorization-subcategory">
</select>
<p class="help-block">For this category you can also select a subcategory (can be empty).If not sure, check how this subcategory will be mapped to application stores categories</p>
</div>
</div><!--control-group-->
<div class="controls" id="store-categories-info">
</div><!--div#store-categories-info-->
</fieldset>
</section><!--section-categorizatio-->
<section id="section-description">
<fieldset>
<div id="legend">
<legend class="">Description</legend>
</div>
<div class="tabbable" id="description-locales"> <!-- Only required for left/right tabs -->
<ul class="nav nav-tabs" id="description-locales-header">
<li class="active"><a href="#description-locales-tab-default" data-toggle="tab">English US (Default)</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">More <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a class="tab-addlocalization" href="#">Add Localization</a></li>
<li><a class="tab-removeselectedlocalization" href="#">Remove Selected Localization</a></li>
</ul>
</li>
</ul>
<div class="tab-content" id="description-locales-content">
<div class="tab-pane active" id="description-locales-tab-default">
<div class="control-group-container">
<div class="control-group">
<!-- description/texts/title -->
<label class="control-label" for="description-texts-title">Title <span class="required-mark">*</span></label>
<div class="controls">
<input type="text" id="description-texts-title" name="description-texts-title"
required
data-validation-required-message="Title is required"
maxlength="30"
>
<p class="help-block">Different stores have different maximum title length requirements. The first title should be less than 30 symbols. You can <a href="#" class="description-texts-title-addmore">add a longer title</a> for stores that support long titles.</p>
</div>
</div><!--./control-group -->
</div><!--./control-group-container -->
<div class="control-group-container">
<div class="control-group">
<!-- description/texts/short-description -->
<label class="control-label" for="description-texts-shortdescription">Short description <span class="required-mark">*</span></label>
<div class="controls">
<input type="text" id="description-texts-shortdescription" name="description-texts-shortdescription"
required
data-validation-required-message="Short description is required"
maxlength="80"
>
<p class="help-block">Different stores have different maximum short description length requirements. The first short - description should be less than 80 symbols. You can <a href="#" class="description-texts-shortdescription-addmore">add a longer short description</a> for stores that support longer ones.</p>
</div>
</div><!--./control-group -->
</div><!--./control-group-container -->
<div class="control-group">
<!-- description/texts/full-description -->
<label class="control-label" for="description-texts-fulldescription">Full description <span class="required-mark">*</span></label>
<div class="controls">
<textarea class="input-xxlarge" rows="5" id="description-texts-fulldescription"
name="description-texts-fulldescription"
required
data-validation-required-message="Full description is required"
maxlength="4000"
data-validation-maxlength-message="Full description must be less than 4000 symbols"
></textarea>
<p class="help-block">Please provide a full application description, to be shown on the product
page. You can include a special subtag <features>. Everything inside the <features>
subtag will be shown only by stores that do not support a separate features list. This can
be useful to avoid feature list duplication. You can also include the following HTML tags:
<ul>, <li>, <a>, <b>, <i>. The app stores that do not support
those HTML tags will automatically convert them to plain text. Maximum length: 4,000
symbols.</p>
</div>
</div><!--./control-group -->
<div class="control-group">
<!-- description/texts/features -->
<label class="control-label" for="description-texts-features">Features <span class="required-mark">*</span></label>
<div class="controls">
<div class="feature-countainer">
<div class="input-prepend">
<span class="add-on">1.</span>
<input type="text" id="description-texts-features-1"
name="description-texts-features-1"
required
data-validation-required-message="Minimum three features are required"
>
</div>
</div>
<div class="feature-countainer">
<div class="input-prepend marginedinput" style="display: block">
<span class="add-on">2.</span>
<input type="text" id="description-texts-features-2"
name="description-texts-features-2"
required
data-validation-required-message="Minimum three features are required"
>
</div>
</div>
<div class="feature-countainer">
<div class="input-prepend marginedinput" style="display: block">
<span class="add-on">3.</span>
<input type="text" id="description-texts-features-3"
name="description-texts-features-3"
required
data-validation-required-message="Minimum three features are required"
>
</div>
</div>
<div class="feature-countainer">
<div class="input-prepend marginedinput" style="display: block">
<span class="add-on">4.</span>
<input type="text" id="description-texts-features-4">
</div>
</div>
<div class="feature-countainer">
<div class="input-prepend marginedinput" style="display: block">
<span class="add-on">5.</span>
<input type="text" id="description-texts-features-5">
</div>
</div>
<p class="help-block">Add three to five features of your application</p>
</div>
</div><!--./control-group -->
<div class="control-group">
<!-- description/texts/keywords -->
<label class="control-label" for="description-texts-keywords">Keywords <span class="required-mark">*</span></label>
<div class="controls">
<div class="input-append">
<input type="text" id="description-texts-keywords"
required
data-validation-required-message="At least one keyword is required"
>
<button class="btn description-texts-keywords-addmore" type="button"><i class=" icon-plus-sign"></i></button>
</div>
<p class="help-block">Please provide keywords that describe your application.</p>
</div>
</div><!--./control-group -->
<div class="control-group">
<!-- description/texts/recent-changes -->
<label class="control-label" for="description-texts-recentchanges">Recent changes</label>
<div class="controls">
<textarea class="input-xxlarge" rows="5" id="description-texts-recentchanges"
maxlength="500"
data-validation-maxlength-message="Recent changes must be less than 500 symbols"
></textarea>
<p class="help-block">What is different about the latest version, compared to the previous one. Maximum length: 500 symbols.</p>
</div>
</div><!--./control-group -->
<div class="control-group">
<!-- description/texts/privacy-policy -->
<label class="control-label" for="description-texts-privacypolicy">Privacy policy</label>
<div class="controls">
<input type="text" id="description-texts-privacypolicy-link" name="description-texts-privacypolicy"
>
<p class="help-block">Link to the privacy policy document for this application. This is required if your application collects personal data</p>
<textarea id="description-texts-privacypolicy-data" class="input-xxlarge after-input" rows="5"></textarea>
<p class="help-block">A full privacy police text for this application. This is required if your application collects personal data.</p>
</div>
</div><!--./control-group -->
<div class="control-group">
<!-- description/texts/eula -->
<label class="control-label" for="description-texts-eula">End user license agreement</label>
<div class="controls">
<input type="text" id="description-texts-eula-link" name="description-texts-eula"
>
<p class="help-block">If you like, you can provide a link to your End User License Agreement (EULA).</p>
<textarea id="description-texts-eula-data" class="input-xxlarge after-input" rows="5"></textarea>
<p class="help-block">If you like, you can provide a link to the full text of your End User License Agreement (EULA).</p>
</div>
</div><!--./control-group -->
<div class="control-group">
<!-- description/images/app-icon -->
<label class="control-label" for="description-images-appicon">Application icon <span class="required-mark">*</span></label>
<div class="controls">
<div class="image-group app-icon-first">
<div class="image-input-group">
<input type="file" id="description-images-appicon" class="hide ie_show appicon-input empty-image"
name="description-images-appicon"
accept="image/png"
data-validation-callback-callback="appdfEditor.validationCallbackAppIconFirst"
/>
<img src="img/appicon_placeholder.png" id="description-images-appicon-img" width="128" height="128">
<p class="image-input-label"> </p>
</div>
</div>
<p class="help-block">A 512x512 PNG file with the application icon to be shown in the application list.</p>
</div>
</div><!--./control-group -->
<div class="control-group screenshots-group">
<!-- description/images/screenshots -->
<label class="control-label" for="description-images-screenshots">Screenshots <span class="required-mark">*</span></label>
<div class="controls">
<div class="image-group">
<div class="image-input-group">
<input type="file" id="description-images-screenshot-1" class="hide ie_show screenshot-input empty-image"
name="description-images-screenshot-1"
accept="image/png"
data-validation-callback-callback="appdfEditor.validationCallbackScreenshotRequired"
/>
<img src="img/screenshot_placeholder.png" width="132" height="220">
<p class="image-input-label"> </p>
</div>
<div class="image-input-group">
<input type="file" id="description-images-screenshot-2" class="hide ie_show screenshot-input empty-image"
name="description-images-screenshot-2"
accept="image/png"
data-validation-callback-callback="appdfEditor.validationCallbackScreenshotRequired"
/>
<img src="img/screenshot_placeholder.png" width="132" height="220">
<p class="image-input-label"> </p>
</div>
<div class="image-input-group">
<input type="file" id="description-images-screenshot-3" class="hide ie_show screenshot-input empty-image"
name="description-images-screenshot-3"
accept="image/png"
data-validation-callback-callback="appdfEditor.validationCallbackScreenshotRequired"
/>
<img src="img/screenshot_placeholder.png" width="132" height="220">
<p class="image-input-label"> </p>
</div>
<div class="image-input-group">
<input type="file" id="description-images-screenshot-4" class="hide ie_show screenshot-input empty-image"
name="description-images-screenshot-4"
accept="image/png"
data-validation-callback-callback="appdfEditor.validationCallbackScreenshotRequired"
/>
<img src="img/screenshot_placeholder.png" width="132" height="220">
<p class="image-input-label"> </p>
</div>
</div>
<p class="help-block">At least four 480x800 PNG screenshots are required.</p>
</div>
</div><!--./control-group -->
<div class="control-group description-images-largepromo">
<!-- description/images/large-promo -->
<label class="control-label" for="description-images-largepromo">Large promotion image</label>
<div class="controls">
<div class="image-group">
<div class="image-input-group">
<input type="file" id="description-images-largepromo" class="hide ie_show image-input empty-image"
name="description-images-largepromo"
accept="image/png"
data-validation-callback-callback="appdfEditor.validationCallbackPromo"
/>
<img src="img/largepromo_placeholder.png" id="description-images-largepromo-img" width="256" height="125">
<p class="image-input-label"></p>
<div class="btn large-promo-image-reset">Reset large promo image</div>
</div>
</div>
<p class="help-block">A 1024x500 PNG file, usually used by stores on PC websites.</p>
</div>
</div><!--./control-group -->
<div class="control-group description-images-smallpromo">
<!-- description/images/small-promo -->
<label class="control-label" for="description-images-smallpromo">Small promotion image</label>
<div class="controls">
<div class="image-group">
<div class="image-input-group">
<input type="file" id="description-images-smallpromo" class="hide ie_show image-input empty-image"
name="description-images-smallpromo"
accept="image/png"
data-validation-callback-callback="appdfEditor.validationCallbackPromo"
/>
<img src="img/smallpromo_placeholder.png" id="description-images-largepromo-img" width="180" height="120">
<p class="image-input-label"></p>
<div class="btn small-promo-image-reset">Reset small promo image</div>
</div>
</div>
<p class="help-block">A 180x120 PNG file which is usually used in mobile app stores for app features.</p>
</div>
</div><!--./control-group -->
<div class="control-group video-files-group">
<!-- description/videos/video -->
<label class="control-label" for="pretty-video-file">Video files</label>
<div class="controls">
<p class="help-block">You can <a href="#" class="video-file-addmore">add video files</a> for your application</p>
<br />
</div>
</div><!--./control-group -->
<div class="control-group">
<!-- description/videos/youtube-video -->
<label class="control-label" for="description-videos-youtubevideo">YouTube video</label>
<div class="controls">
<div class="input-append">
<input type="text" id="description-videos-youtubevideo" name="description-videos-youtubevideo"
data-validation-callback-callback="appdfEditor.validationCallbackYoutube"
>
<button class="btn description-videos-youtubevideo-browse" type="button">Browse</button>
</div>
<p class="help-block">Please include only the ID (and not the entire URL). For example, if your YouTube video URL is www.youtube.com/watch?v=4YcBHQ2fCDE please enter 4YcBHQ2fCDE</p>
</div>
</div><!--./control-group -->
</div><!--./tab-pane -->
</div><!--./tab-content -->
</div><!--./tabbable -->
</fieldset>
</section><!--section-description-->
<section id="section-price">
<fieldset>
<div id="legend">
<legend class="">Price</legend>
</div>
<div class="tabbable"> <!-- Only required for left/right tabs -->
<ul class="nav nav-pills">
<li class="active"><a href="#tab-price-free" data-toggle="tab">Free</a></li>
<li><a href="#tab-price-paid" data-toggle="tab">Paid</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tab-price-free">
<div class="control-group">
<div class="controls">
<label class="checkbox">
<input type="checkbox" value="" id="price-free-trialversion">
This free application is a trial version.
</label>
</div>
</div><!--control-group-->
<div class="control-group">
<!-- price/free/full-version -->
<label class="control-label" for="price-free-full-version">Full version</label>
<div class="controls">
<input type="text" class="input-large" id="price-free-fullversion" name="price-free-fullversion" disabled
pattern="^$|^([a-zA-Z0-9\-]+\.)+[a-zA-Z0-9\-]+$"
data-validation-pattern-message="Wrong package name format. Must be a valid Android package name like 'org.wikimedia.wikipedia'"
>
<p class="help-block">If there is another app which is the full version of your app you can enter its package name here.</p>
</div>
</div><!--./control-group -->
</div><!--./tab-pane -->
<div class="tab-pane" id="tab-price-paid">
<div class="control-group">
<!-- price/base-price -->
<label class="control-label" for="price-baseprice">Price <span class="required-mark">*</span></label>
<div class="controls">
<div class="input-prepend">
<span class="add-on">USD</span>
<input type="text" id="price-baseprice" class="input-small" value="0"
pattern="^\d+\.\d+$|^\d+$"
data-validation-pattern-message="Wrong price value. Must be a valid number like '15.95'."
>
</div>
<p class="help-block">Default product price in USD. Price for other currencies will be automatically converted by the stores from USD. If you want manual control you can <a href="#" class="price-localprice-add">add local prices</a>.</p>
</div>
</div><!--./control-group -->
</div><!--./tab-pane -->
</div><!--./tab-content -->
</div><!--./tabbable -->
</fieldset>
</section><!--section-price-->
<section id="section-customer-support">
<fieldset>
<div id="legend">
<legend class="">Customer Support</legend>
</div>
<div class="control-group">
<!-- customer-support/phone -->
<label class="control-label" for="customersupport-phone">Phone <span class="required-mark">*</span></label>
<div class="controls">
<input id="customersupport-phone" type="text"
name="customersupport-phone"
required
data-validation-required-message="Customer support phone is required"
data-validation-regex-regex="^\+(\(?\+?[0-9]*\)?)?[0-9_\- \(\)]*$"
data-validation-regex-message="Wrong phone format, only digits, brackets, spaces and dashes are allowed. Must be in international format like +1 (555) 123-45-67."
>
<p class="help-block">Customer support phone number. This must be in international format (e.g., +1 (555) 123-45-67).</p>
</div>
</div><!--control-group-->
<div class="control-group">
<!-- customer-support/email -->
<label class="control-label" for="customersupport-email">Email <span class="required-mark">*</span></label>
<div class="controls">
<input id="customersupport-email" type="email"
name="customersupport-email"
required
data-validation-required-message="Customer support email is required"
data-validation-email-message="Customer support email must be a valid email address"
>
<p class="help-block">Customer support email for this application. This must be a valid email address.</p>
</div>
</div><!--control-group-->
<div class="control-group">
<!-- customer-support/website -->
<label class="control-label" for="customersupport-website">Website <span class="required-mark">*</span></label>
<div class="controls">
<input id="customersupport-website" type="text"
name="customersupport-website"
required
data-validation-regex-regex="^((http|https):\/\/)?[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?$"
data-validation-required-message="Customer support website is required"
data-validation-regex-message="Wrong customer support webpage format. Must be a valid URL."
>
<p class="help-block">Webpage with customer support information. This must be a valid URL.</p>
</div>
</div><!--control-group-->
</fieldset>
</section><!--section-customer-support-->
<section id="section-consent">
<fieldset>
<div id="legend">
<legend class="">Consent</legend>
</div>
<div class="control-group">
<div class="controls">
<label class="checkbox">
<input type="checkbox" value="" id="consent-googleandroidcontentguidelines">
This application meets <a href="http://play.google.com/about/developer-content-policy.html" target="_blank">Android Content Guidelines</a>
</label>
<label class="checkbox">
<input type="checkbox" value="" id="consent-usexportlaws">
I acknowledge that this application may be subject to United States export laws, regardless of my location or nationality. I agree that I have complied with all such laws, including any requirements for software with encryption functions. I hereby certify that my application is authorized for export from the United States under these laws. <a href="https://support.google.com/googleplay/android-developer/support/bin/answer.py?answer=113770" target="_blank">More...</a>
</label>
<label class="checkbox">
<input type="checkbox" value="" id="consent-importexportlaws">
I certify that this application may be imported to and exported from any country in which you have authorized sales to end users (without the need for the stores to obtain any license or clearance or take any other action) and is in full compliance with all applicable laws and regulations governing imports and exports, including those applicable to software that makes use of encryption technology.
</label>
<label class="checkbox">
<input type="checkbox" value="" id="consent-slidemeagreement">
I agree with the complete <a href="http://slideme.org/developers/dda" target="_blank">SlideME Developer/Publisher Distribution Agreement</a>
</label>
<label class="checkbox">
<input type="checkbox" value="" id="consent-freefromthirdpartycopytightedcontent">
I confirm that my application is free from third-party copyrighted pictures, sounds, databases or other types of information.
</label>
</div>
</div><!--control-group-->
</fieldset>
</section><!--section-consent-->
<section id="section-content-description">
<fieldset>
<div id="legend">
<legend class="">Content Rating and Descriptors</legend>
</div>
<div class="control-group">
<!-- content-description/content-rating -->
<label class="control-label" for="contentdescription-contentrating">Content rating <span class="required-mark">*</span></label>
<div class="controls">
<select id="contentdescription-contentrating" name="contentdescription-contentrating">
<option value="3">3</option>
<option value="6">6</option>
<option value="10">10</option>
<option value="13">13</option>
<option value="17">17</option>
<option value="18">18</option>
</select>
<p class="help-block">Minimum age allowance according to the <a href="http://en.wikipedia.org/wiki/Entertainment_Software_Rating_Board" target="_blank">ESRB standard</a></p>
</div>
</div><!--control-group-->
<div class="control-group">
<label class="control-label">Content descriptors <span class="required-mark">*</span></label>
<div class="controls">
<table class="table span8">
<tr>
<td>
<abbr title="Violent actions involving cartoon-like situations and characters. May include violence where a character is unharmed after the action has been inflicted">Cartoon violence</abbr>
</td>
<td>
<select id="contentdescription-contentdescriptors-cartoonviolence" class="input-small">
<option value="no">No</option>
<option value="light">Light</option>
<option value="strong">Strong</option>
</select>
</td>
</tr>
<tr>
<td>
<abbr title="May contain scenes of people getting injured or dying, often by use of weapons. Also may contain gore and blood-letting.">Realistic violence</abbr>
</td>
<td>
<select id="contentdescription-contentdescriptors-realisticviolence" class="input-small">
<option value="no">No</option>
<option value="light">Light</option>
<option value="strong">Strong</option>
</select>
</td>
</tr>
<tr>
<td>
<abbr title="May contain profanity, sexual innuendo, threats, and all manner of slurs and epithets.">Bad language</abbr>
</td>
<td>
<select id="contentdescription-contentdescriptors-badlanguage" class="input-small">
<option value="no">No</option>
<option value="light">Light</option>
<option value="strong">Strong</option>
</select>
</td>
</tr>
<tr>
<td>
<abbr title="May contain scenes that are considered too disturbing or frightening to younger or more emotionally vulnerable players.">Fear</abbr>
</td>
<td>
<select id="contentdescription-contentdescriptors-fear" class="input-small">
<option value="no">No</option>
<option value="light">Light</option>
<option value="strong">Strong</option>
</select>
</td>
</tr>
<tr>
<td>
<abbr title="May contain references to sexual attraction or sexual intercourse. Also may contain nudity and characters dressed in suggestive clothing.">Sexual content</abbr>
</td>
<td>
<select id="contentdescription-contentdescriptors-sexualcontent" class="input-small">
<option value="no">No</option>
<option value="light">Light</option>
<option value="strong">Strong</option>
</select>
</td>
</tr>
<tr>
<td>
<abbr title="May contain references to illegal drugs or a fictional substance that has parallels to real-life illegal drugs (in use, possession, or sale).">Drugs</abbr>
</td>
<td>
<select id="contentdescription-contentdescriptors-drugs" class="input-small">
<option value="no">No</option>
<option value="light">Light</option>
<option value="strong">Strong</option>
</select>
</td>
</tr>
<tr>
<td>
<abbr title="May contain elements that encourage or teach gambling.">Gambling reference</abbr>
</td>
<td>
<select id="contentdescription-contentdescriptors-gamblingreference" class="input-small">
<option value="no">No</option>
<option value="light">Light</option>
<option value="strong">Strong</option>
</select>
</td>
</tr>
<tr>
<td>
<abbr title="The consumption of alcoholic beverages or references to and/or images or alcoholic beverages">Alcohol</abbr>
</td>
<td>
<select id="contentdescription-contentdescriptors-alcohol" class="input-small">
<option value="no">No</option>
<option value="light">Light</option>
<option value="strong">Strong</option>
</select>
</td>
</tr>
<tr>
<td>
<abbr title="References to and/or images of tobacco products">Smoking</abbr>
</td>
<td>
<select id="contentdescription-contentdescriptors-smoking" class="input-small">
<option value="no">No</option>
<option value="light">Light</option>
<option value="strong">Strong</option>
</select>
</td>
</tr>
<tr>
<td>
<abbr title="May contain cruelty or harassment based on race, ethnicity, gender, or sexual preferences.">Discrimination</abbr>
</td>
<td>
<select id="contentdescription-contentdescriptors-discrimination" class="input-small">
<option value="no">No</option>
<option value="light">Light</option>
<option value="strong">Strong</option>
</select>
</td>
</tr>
</table>
</div>
</div><!--control-group-->
<div class="control-group">
<label class="control-label">Included activities <span class="required-mark">*</span></label>
<div class="controls">
<label class="checkbox">
<input type="checkbox" value="" id="contentdescription-includedactivities-inappbilling">
In-app billing: this app allows - either standard or custom in-app billing (also called "in-app purchases").
</label>
<label class="checkbox">
<input type="checkbox" value="" id="contentdescription-includedactivities-gambling">
Gambling: this appfeatures - a form of gambling.
</label>
<label class="checkbox">
<input type="checkbox" value="" id="contentdescription-includedactivities-advertising">
Advertising: this app features - a form of advertising (this includs banner or AirPush-like advertising).
</label>
<label class="checkbox">
<input type="checkbox" value="" id="contentdescription-includedactivities-usergeneratedcontent">
This app features user-generated content.
</label>
<label class="checkbox">
<input type="checkbox" value="" id="contentdescription-includedactivities-usertousercommunications">