-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
3077 lines (3064 loc) · 301 KB
/
mkdocs.yml
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
site_name: HCL Volt MX Documentation V9.2
site_url: https://opensource.hcltechsw.com/volt-mx-docs/docs/documentation
docs_dir: source
# site_dir: docs
# docs_dir: source/docs/documentation
# dummy comment to get PR
site_dir: docs/docs/documentation
use_directory_urls: false
theme:
name: material
logo: assets/favicon.png
features:
# - navigation.indexes
- navigation.instant
# - search.highlight
# - search.share
# - search.suggest
custom_dir: theme_overrides
icon:
repo: fontawesome/brands/github
font:
text: Roboto
code: Roboto Mono
favicon: assets/favicon.png
markdown_extensions:
- toc:
title: On this page
- md_in_html
# - admonition
# - pymdownx.details
# - pymdownx.superfences
# - attr_list
plugins:
# - section-index
- search
# Copyright
copyright: Copyright © 2022, HCL Technologies Limited
extra_css:
- stylesheets/vmx_style.css
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/HCL-TECH-SOFTWARE
# Repository
repo_url: https://github.com/HCL-TECH-SOFTWARE/volt-mx-docs
repo_name: HCL-TECH-SOFTWARE/volt-mx-docs
edit_uri: ""
nav:
# - Volt MX Documentation:
- Introducing Volt MX:
- Introducing Volt MX: index.md
# volt_mx_release_notes
# dummy change 2 to generate a PR
- What's New:
- All versions: Whats_New_Main_Page.md
- What's new in V9 Service Pack 2: Whats_New_in_V9_Service_Pack_2.md
- What's new in V9 Service Pack 1: Whats_New_in_V9_Service_Pack_1.md
- What's new in V9: Whats_New_V9.md
- Release Notes: VMX_release_notes.md
# app_platform_overview:
- App Platform:
- Overview: Iris/app_platform/Content/AppPlatform_Overview.md
# tutorials
- Tutorials:
- Overview: tutorials/Tutorials.md
- Action Editor: tutorials/ActionEditor.md
- API Management: tutorials/apiManagement.md
- App Factory: tutorials/appFactory.md
- Architecture: tutorials/architecture.md
- Build And Productivity: tutorials/buildAndProductivity.md
- Components and Marketplace: tutorials/componentAndMarketplace.md
- Connecting to Backend: tutorials/ConnectingToBackend.md
- Designing For Web: tutorials/DesigningForWeb.md
- Designing the Layout: tutorials/designingTheLayout.md
- Internationalization and Localization: tutorials/internalizationAndLocalization.md
- Notification and Analytics: tutorials/notificationAndAnalytics.md
- Offline Services: tutorials/offlineServices.md
- Programming and Extensibility: tutorials/programmingAndExtensitbility.md
- Volt MX Foundry Overview: tutorials/voltmxFoundryOverview.md
- Installation Guides: Foundry/installationGuides.md
# iris_documentation:
- Iris:
- Fundamentals: Iris/voltmxIrisFundamentals.md
# installing_iris:
- Installing Iris:
- Overview: Iris/installing_iris.md
# voltmxplatform_supported_devices_os_browsers:
- Volt MX Iris Supported OSes, Devices, and Browsers:
- Introduction: Foundry/voltmxplatform_supported_devices_os_browsers/Content/Introduction.md
- Volt MX Overview: Foundry/voltmxplatform_supported_devices_os_browsers/Content/VoltMXOverview.md
- Supported Operating Systems for Native Apps: Foundry/voltmxplatform_supported_devices_os_browsers/Content/Supported_OS_NativeApps.md
- Supported Devices for AppPlatform: Foundry/voltmxplatform_supported_devices_os_browsers/Content/Supported_Devices.md
- Supported Development Languages: Foundry/voltmxplatform_supported_devices_os_browsers/Content/Supported_Development_Lanugages.md
- Supported Browsers for Desktop Web: Foundry/voltmxplatform_supported_devices_os_browsers/Content/Supported_Browsers_DesktopWeb.md
- Supported Versions for HTML5 Single Page Apps (SPA): Foundry/voltmxplatform_supported_devices_os_browsers/Content/HTML5_SPA.md
# iris_starter_install_mac:
- Installing Volt Iris V9 on Macintosh:
- Introduction: Iris/iris_starter_install_mac/Content/Introduction.md
- Prerequisites: Iris/iris_starter_install_mac/Content/Prerequisites.md
- Install Volt MX Iris: Iris/iris_starter_install_mac/Content/Installing VoltMX Iris.md
- Post Installation Tasks: Iris/iris_starter_install_mac/Content/Launching VoltMX Iris.md
- Update Volt MX Iris: Iris/iris_starter_install_mac/Content/Upgrade.md
- FAQs: Iris/iris_starter_install_mac/Content/StudioInstallation_FAQs.md
# iris_starter_install_win:
- Installing Volt Iris V9 on Windows:
- Introduction: Iris/iris_starter_install_win/Content/Introduction.md
- Prerequisites: Iris/iris_starter_install_win/Content/Prerequisites.md
- Install Volt MX Iris: Iris/iris_starter_install_win/Content/Installing VoltMX Iris.md
- Post Installation Tasks: Iris/iris_starter_install_win/Content/Launching VoltMX Iris.md
- Update Volt MX Iris: Iris/iris_starter_install_win/Content/Upgrade.md
- FAQs: Iris/iris_starter_install_win/Content/StudioInstallation_FAQs.md
# iris_tutorials:
- Iris tutorials:
- Introduction: Iris/iris_tutorials/Content/Introduction.md
- Introduction to AppPlatform V8: Iris/iris_tutorials/Content/Module/introduction_to_V8.0.md
- Introduction to Marketplace: Iris/iris_tutorials/Content/Module/introduction_to_marketplace.md
- Private Marketplace: Iris/iris_tutorials/Content/Module/private_marketplace.md
- Introduction to Reference Architecture: Iris/iris_tutorials/Content/Module/introduction_to_reference_architecture.md
- Consuming a Data Adapter from Marketplace: Iris/iris_tutorials/Content/Module/consuming_data_adapter_from_marketplace.md
- Authoring a UI Component: Iris/iris_tutorials/Content/Module/component_creation.md
- Submitting a Component to Marketplace: Iris/iris_tutorials/Content/Module/submitting_component_to_marketplace.md
- Getting Started with Iris: Iris/iris_tutorials/Content/Module/getting_started_iris.md
- Introduction to Forms and Widgets: Iris/iris_tutorials/Content/Module/intro_forms_widgets.md
- Introduction to Action Editor: Iris/iris_tutorials/Content/Module/action_editor.md
- Working with Masters: Iris/iris_tutorials/Content/Module/working_with_masters.md
- Introduction to Flex Layout: Iris/iris_tutorials/Content/Module/flex_layout.md
- Introduction to Volt MX JavaScript: Iris/iris_tutorials/Content/Module/intro_voltmx_javascript.md
- Iris Enterprise: Iris/iris_tutorials/Content/Module/iris_enterprise.md
- Understanding Skins: Iris/iris_tutorials/Content/Module/understanding_skins.md
- Photoshop Conversion Extension: Iris/iris_tutorials/Content/Module/design_import_psd.md
- Foundry Integration: Iris/iris_tutorials/Content/Module/mf_integration.md
# - SalesForce Pipeline Manager Sample App: Iris/iris_tutorials/Content/Module/sfpipeline_manual.md
- Segment Widget - Introduction: Iris/iris_tutorials/Content/Module/segment_widget.md
- Segment Widget - Advanced: Iris/iris_tutorials/Content/Module/segment_widget_developers.md
- Notes and Comments: Iris/iris_tutorials/Content/Module/Notes_comments.md
- Working with Named Actions: Iris/iris_tutorials/Content/Module/Working with Named Actions.md
- Working with the Browser Widget: Iris/iris_tutorials/Content/Module/Browser.md
- Internationalization: Iris/iris_tutorials/Content/Module/internationalization.md
- Locale based layout: Iris/iris_tutorials/Content/Module/Locale based Layout.md
- Volt MX APIs - Touch ID: Iris/iris_tutorials/Content/Module/voltmxAPIs_touchid.md
- Package Web Content Locally: Iris/iris_tutorials/Content/Module/package_webcontent_locally.md
- Native Hybrid Communication: Iris/iris_tutorials/Content/Module/native_hybrid_communication.md
- Embedding Cordova Application: Iris/iris_tutorials/Content/Module/embedding_cordova_application.md
- Cordova Plugin Management: Iris/iris_tutorials/Content/Module/cordova_plugin_management.md
- Native Function APIs iOS: Iris/iris_tutorials/Content/Module/native_function_iOSAPIs.md
- Native Container iOS: Iris/iris_tutorials/Content/Module/native_container_iOS.md
- Native Function APIs Android: Iris/iris_tutorials/Content/Module/native_function_AndroidAPIs.md
# iris_user_guide:
- Iris User Guide:
- Introduction: Iris/iris_user_guide/Content/Introduction.md
- Supported Digital Channels: Iris/iris_user_guide/Content/Mobile_Channels.md
- Hikes: Iris/iris_user_guide/Content/Hikes.md
- Third-Party Licenses: Iris/iris_user_guide/Content/Third-Party_Licenses.md
- Configuring Your Computer:
- Overview: Iris/iris_user_guide/Content/Part_I__Overview.md
- Hardware and Software Requirements: Iris/iris_user_guide/Content/HardwareReqs.md
- Install Volt MX Iris: Iris/iris_user_guide/Content/SUGinstallVoltMXStudio.md
- Install platform SDKs and their emulators:
- Platform SDKs: Iris/iris_user_guide/Content/Platform_SDKs.md
- iOS SDK and simulator: Iris/iris_user_guide/Content/SUGiPhone.md
- Android SDK:
- Overview: Iris/iris_user_guide/Content/SUG_Android.md
- Setting a New Android Environment in Windows: Iris/iris_user_guide/Content/SettingUpAndroidNew.md
- Android 9 Behavioral Changes: Iris/iris_user_guide/Content/Android_Pie_Behavioral_Changes.md
- Android 10 Behavioral Changes: Iris/iris_user_guide/Content/AndroidQ_Behavioral_Changes.md
- Android 11 Behavioral Changes: Iris/iris_user_guide/Content/AndroidR_Behavioral_Changes.md
- AndroidX Behavioral Changes: Iris/iris_user_guide/Content/AndroidX_Behavioral_Changes.md
- Android 13 Behavioral Changes: Iris/iris_user_guide/Content/Android13_Behavioral_Changes.md
- Deep Linking Guidelines for Android: Iris/iris_user_guide/Content/Deeplinking_Guidelines_Android.md
- Windows Phone and Tablet: Iris/iris_user_guide/Content/SUGWindows_Mobile.md
- Allow Anonymous Usage Data Collection: Iris/iris_user_guide/Content/AllowAnonymousUsageDataCollection.md
- Use a Proxy Server: Iris/iris_user_guide/Content/UseProxyServer.md
- Modify Cloud Configuration: Iris/iris_user_guide/Content/LogInUsingCustAuth.md
- Workspaces: Repositories for Your Projects: Iris/iris_user_guide/Content/Workspace.md
- The Volt MX Iris default perspective:
- Overview: Iris/iris_user_guide/Content/VoltMXDefaultPerspective.md
- Quick Launch Bar: Iris/iris_user_guide/Content/VoltMXDefaultPerspective.html#left-navigation-bar
- Project Explorer: Iris/iris_user_guide/Content/VoltMXDefaultPerspective.html#project-explorer
- Iris Canvas: Iris/iris_user_guide/Content/VoltMXDefaultPerspective.html#iris-canvas
- Properties Editor: Iris/iris_user_guide/Content/VoltMXDefaultPerspective.html#properties-panel
- Account Information: Iris/iris_user_guide/Content/VoltMXDefaultPerspective.html#account-information
- Library Explorer: Iris/iris_user_guide/Content/VoltMXDefaultPerspective.html#library-explorer
- Console: Iris/iris_user_guide/Content/VoltMXDefaultPerspective.html#console
# - Volt MX IQ:
# - Overview: Iris/iris_user_guide/Content/VoltMX_IQ.md
# - Iris Actions in Volt MX IQ: Iris/iris_user_guide/Content/VoltMXIQCommands.md
- Check for Updates: Iris/iris_user_guide/Content/CheckForUpdates.md
- Collab: Iris/iris_user_guide/Content/Collab.md
# - AI Assisted Development: Iris/iris_user_guide/Content/AIAssisted.html#ai-assisted-development
- Version Control: Iris/iris_user_guide/Content/Version_Control.md
- Designing an Application:
- Overview: Iris/iris_user_guide/Content/Part_II_CreatingAnApplication.md
- App User Interface: Iris/iris_user_guide/Content/appUserInterface.md
- Data and Backend Integration: Iris/iris_user_guide/Content/dataBackEndIntergration.md
- Web App Development: Iris/iris_user_guide/Content/webAppDevelopment.md
- Types of Applications: Iris/iris_user_guide/Content/TypesOfApplications.md
- Ensure You Have All the Resources You Need: Iris/iris_user_guide/Content/Ensuring_You_Have_All_Needed_Resources.md
- Plan Your Mobile App: Iris/iris_user_guide/Content/PlanningYourMobileApp.md
- Create, Migrate, or Import a Project:
- Overview: Iris/iris_user_guide/Content/CreateMigrateOrImportProject.md
- Types of Projects: Iris/iris_user_guide/Content/TypesOfProjects.md
- Create a Project from Sample Applications and Components: Iris/iris_user_guide/Content/CreateFromSampleApp.md
- Create a Volt MX Iris Reference Architecture Project: Iris/iris_user_guide/Content/CreateKRAProject.md
- Create a Free-Form JavaScript Project: Iris/iris_user_guide/Content/CreateNewProject.md
- Migrate a Project from an Earlier Version: Iris/iris_user_guide/Content/MigrateProjectFromVoltMXStudioOrPrevVerIris.md
- Integration with Design Tools:
- Overview: Iris/iris_user_guide/Content/Integration_with_Design_Tools.md
- Integration with Sketch: Iris/iris_user_guide/Content/Migrate_from_Sketch_App.md
- Import a Volt MX Iris Project: Iris/iris_user_guide/Content/ImportVoltMXIrisProject.md
- Export a Volt MX Iris Project: Iris/iris_user_guide/Content/ShareProjectOnTheCloud.md
- Create the Storyboard of your App: Iris/iris_user_guide/Content/Create_the_Storyboard_of_your_App.md
- Export and Import Resources:
- Overview: Iris/iris_user_guide/Content/ExportImportResources.md
- Export Internationalization Resources: Iris/iris_user_guide/Content/Internationalization.html#export-internationalization-settings
- Import Internationalization Resources: Iris/iris_user_guide/Content/Internationalization.html#import-internationalization-settings
- Export and Import Themes: Iris/iris_user_guide/Content/ExportImportThemes.md
- Export and Import Fonts: Iris/iris_user_guide/Content/ExportImportFonts.md
- Create Wearables Screens:
- Overview: Iris/iris_user_guide/Content/Adding_Forms_to_a_New_Application.md
- Apple Watch:
- Overview: Iris/iris_user_guide/Content/Watch.md
- Forms: Iris/iris_user_guide/Content/Watch.html#forms
- Notifications: Iris/iris_user_guide/Content/Notifications.md
- Glances: Iris/iris_user_guide/Content/Glances.md
# - Configure a Screen for Both Portrait and Landscape: Iris/iris_user_guide/Content/ConfigScreenForBothPortAndLand.md
- Android Wear: Iris/iris_user_guide/Content/AndroidWear.md
- Populate Screens with Widgets:
- Overview: Iris/iris_user_guide/Content/PopulatingWidgets.md
- Container Widgets:
- Overview: Iris/iris_user_guide/Content/PopulatingWidgets.html#container-widgets
- FlexContainer: Iris/iris_user_guide/Content/Flex_Container.md
- FlexScrollContainer: Iris/iris_user_guide/Content/FlexScrollContainer.md
- TabPane: Iris/iris_user_guide/Content/TabPane.md
- Tab: Iris/iris_user_guide/Content/Tab.md
- Basic Widgets:
- Overview: Iris/iris_user_guide/Content/PopulatingWidgets.html#basic-widgets
- Button: Iris/iris_user_guide/Content/Button.md
- Calendar: Iris/iris_user_guide/Content/Calendar.md
- CheckBoxGroup: Iris/iris_user_guide/Content/CheckBoxGroup.md
- DataGrid: Iris/iris_user_guide/Content/DataGrid.md
- Image: Iris/iris_user_guide/Content/Image2.md
- Label: Iris/iris_user_guide/Content/Label.md
- ListBox: Iris/iris_user_guide/Content/ListBox.md
- RadioButtonGroup: Iris/iris_user_guide/Content/RadioButtonGroup.md
- RichText: Iris/iris_user_guide/Content/RichText.md
- Slider: Iris/iris_user_guide/Content/Slider.md
- TextArea2: Iris/iris_user_guide/Content/TextArea2.md
- TextBox2: Iris/iris_user_guide/Content/TextBox2.md
- Advanced Widgets:
- Overview: Iris/iris_user_guide/Content/PopulatingWidgets.html#advanced-widgets
- Browser: Iris/iris_user_guide/Content/Browser.md
- Cordova Browser: Iris/iris_user_guide/Content/CordovaBrowser.md
- Camera: Iris/iris_user_guide/Content/Camera.md
- Map: Iris/iris_user_guide/Content/Map.md
- Phone: Iris/iris_user_guide/Content/Phone.md
- PickerView: Iris/iris_user_guide/Content/PickerView.md
- Segment2: Iris/iris_user_guide/Content/Segment2.md
- Switch: Iris/iris_user_guide/Content/Switch.md
- Video: Iris/iris_user_guide/Content/Video.md
- Add Watch Widgets:
- Overview: Iris/iris_user_guide/Content/AddAppleWatchWidgets.md
- Watch Container Widget: Iris/iris_user_guide/Content/AddAppleWatchWidgets.html#container-widget
- Group Widget: Iris/iris_user_guide/Content/WatchGroupWidget.md
- Watch Basic Widgets:
- Overview: Iris/iris_user_guide/Content/AddAppleWatchWidgets.html#basic-widgets
- Button Widget for Watch: Iris/iris_user_guide/Content/WatchButtonWidget.md
- Date Widget for Watch: Iris/iris_user_guide/Content/WatchDateWidget.md
- Image2 Widget for Watch: Iris/iris_user_guide/Content/WatchImage2Widget.md
- Label Widget for Watch: Iris/iris_user_guide/Content/WatchLabelWidget.md
- Line Widget for Watch: Iris/iris_user_guide/Content/WatchLineWidget.md
- Slider Widget for Watch: Iris/iris_user_guide/Content/WatchSliderWidget.md
- Timer Widget for Watch: Iris/iris_user_guide/Content/WatchTimerWidget.md
- Watch Advanced Widgets:
- Overview: Iris/iris_user_guide/Content/AddAppleWatchWidgets.html#advanced-widgets
- Map Widget for Watch: Iris/iris_user_guide/Content/WatchMapWidget.md
- Switch Widget for Watch: Iris/iris_user_guide/Content/WatchSwitchWidget.md
- Using the Native UI Container: Iris/iris_user_guide/Content/NativePlatformWidgets.md
- Using Custom Widgets:
- Overview: Iris/iris_user_guide/Content/Using_Custom_Widgets.md
- Custom Widgets for iOS: Iris/iris_user_guide/Content/iOS_Custom_Widget.md
- Custom Widgets for Android: Iris/iris_user_guide/Content/Android_Custom_Widget.md
- SPA and Desktop: Importing Custom Widgets: Iris/iris_user_guide/Content/SPA_Custom_Widget.md
- Organizing Application Elements: Iris/iris_user_guide/Content/OrganizingAppElementsInGroups.md
- Add Custom CSS Code to an SPA App: Iris/iris_user_guide/Content/AddCustomCSSCodeToSPAApp.md
- Add Local HTML Content: Iris/iris_user_guide/Content/AddLocalHTMLContent.md
- Add a Local Database to an App: Iris/iris_user_guide/Content/AddALocalDatabaseToAnApp.md
- Create Cordova Applications: Iris/iris_user_guide/Content/CreateCordovaApplications.md
- Set App Lifecycle Events: Iris/iris_user_guide/Content/SetAppLifecycleEvents.md
- Using Native Function APIs and Widgets:
- Overview: Iris/iris_user_guide/Content/UsingNativeFunctionAPIsAndWidgets.md
- Add or Import Native Function APIs: Iris/iris_user_guide/Content/AddOrImportNativeFunctionAPIs.md
- Using the Native UI Container: Iris/iris_user_guide/Content/NativePlatformWidgets.md
- Add Actions:
- Overview: Iris/iris_user_guide/Content/working_with_Action_Editor.md
- Important Considerations: Iris/iris_user_guide/Content/working_with_Action_Editor.html#important-considerations
- Add Watch Actions: Iris/iris_user_guide/Content/working_with_Action_Editor.html#add-watch-actions
- Validate the Code of an Action: Iris/iris_user_guide/Content/working_with_Action_Editor.html#validate-the-code-of-an-action
- Invoke Sublime Text from Iris: Iris/iris_user_guide/Content/Invoke_Sublime_Text_from_Iris.md
- Generate Code from an Action: Iris/iris_user_guide/Content/working_with_Action_Editor.md
- Copy an Action Sequence: Iris/iris_user_guide/Content/working_with_Action_Editor.html#copy-an-action-sequence
- Disable an Action: Iris/iris_user_guide/Content/working_with_Action_Editor.html#disable-an-action
- Create a Condition Based on a Form's Orientation: Iris/iris_user_guide/Content/ConditionBasedOnFormOrientation.md
- General: Iris/iris_user_guide/Content/ActionsNavigation.md
- Conditions: Iris/iris_user_guide/Content/ActionsConditions.md
- Functions: Iris/iris_user_guide/Content/ActionsFunctions.md
- Widgets: Iris/iris_user_guide/Content/ActionsWidgets.md
- Client: Iris/iris_user_guide/Content/ActionsExternal.md
- Network: Iris/iris_user_guide/Content/ActionsNetworkAPIs.md
- Animation: Iris/iris_user_guide/Content/ActionsAnimation.md
- Mapping: Iris/iris_user_guide/Content/ActionsMapping.md
- iOS Navigation Bar Properties: Iris/iris_user_guide/Content/iOSNavigationBar.md
- Understanding Skins:
- Overview: Iris/iris_user_guide/Content/Customizing_the_Look_and_Feel_with_Skins.md
- Importing Photoshop Styles and Colors: Iris/iris_user_guide/Content/Importing_Photoshop_Styles.md
- Use Default Skins: Iris/iris_user_guide/Content/Customizing_the_Look_and_Feel_with_Skins.html#use-default-skins
- Create a New Skin: Iris/iris_user_guide/Content/Customizing_the_Look_and_Feel_with_Skins.html#create-a-new-skin
- Configure a New Skin: Iris/iris_user_guide/Content/Customizing_the_Look_and_Feel_with_Skins.html#configure-a-new-skin
- Edit a Skin: Iris/iris_user_guide/Content/Customizing_the_Look_and_Feel_with_Skins.html#edit-a-skin
- Apply a Skin: Iris/iris_user_guide/Content/Customizing_the_Look_and_Feel_with_Skins.html#apply-a-skin
- Reuse Skins: Iris/iris_user_guide/Content/Customizing_the_Look_and_Feel_with_Skins.html#reuse-skins
- Fork a Skin:
- Overview: Iris/iris_user_guide/Content/Customizing_the_Look_and_Feel_with_Skins.html#fork-a-skin
- Important Considerations in Forking: Iris/iris_user_guide/Content/Customizing_the_Look_and_Feel_with_Skins.html#important-considerations-in-forking
- Delete a Skin: Iris/iris_user_guide/Content/Customizing_the_Look_and_Feel_with_Skins.html#delete-a-skin
- Impact of Upgrade to Volt MX Iris V8 on Skins in Widgets: Iris/iris_user_guide/Content/Customizing_the_Look_and_Feel_with_Skins.html#impact-of-upgrade-to-v8-on-skins-in-widgets
- Copy and Paste a Color or Gradient: Iris/iris_user_guide/Content/Copy_and_Paste_a_Color.md
- Understanding Themes:
- Overview: Iris/iris_user_guide/Content/Using_Themes_Applying_a_Collection_of_Skins_as_a_Group.md
- What are themes and why would I want them?: Iris/iris_user_guide/Content/Using_Themes_Applying_a_Collection_of_Skins_as_a_Group.html#what-are-themes-and-why-would-i-want-them
- Create a Theme: Iris/iris_user_guide/Content/Using_Themes_Applying_a_Collection_of_Skins_as_a_Group.html#create-a-theme
- Rename a Theme: Iris/iris_user_guide/Content/Using_Themes_Applying_a_Collection_of_Skins_as_a_Group.html#rename-a-theme
- Duplicate the Current Theme: Iris/iris_user_guide/Content/Using_Themes_Applying_a_Collection_of_Skins_as_a_Group.html#duplicate-the-current-theme
- Delete a Theme: Iris/iris_user_guide/Content/Using_Themes_Applying_a_Collection_of_Skins_as_a_Group.html#delete-a-theme
- Rebrand a Project: Iris/iris_user_guide/Content/FindReplaceSkin.md
- Using Templates: Iris/iris_user_guide/Content/Templates.md
- Create and Use Form Templates: Iris/iris_user_guide/Content/FormTemplates.md
- Responsive Grid Layout: Iris/iris_user_guide/Content/ResponsiveGridLayout.md
- Design a Responsive Web App: Iris/iris_user_guide/Content/Responsive_Design_8_2.md
- Design a Progressive Web App: Iris/iris_user_guide/Content/ProgressiveWebApp.md
- Add and Manage Images and Other Media:
- Overview: Iris/iris_user_guide/Content/Adding_and_Managing_Images.md
- Conventions for Using Images: Iris/iris_user_guide/Content/Adding_and_Managing_Images.html#conventions-for-images
- Particulars for Managing Android Image Folders: Iris/iris_user_guide/Content/Adding_and_Managing_Images.html#manage-android-image-folders
- Configure Splash Screens: Iris/iris_user_guide/Content/Splash_Screen_Properties.md
- Add a Favorite Icon for Use in a Browser: Iris/iris_user_guide/Content/Adding_and_Managing_Images.html#add-a-favorite-icon-favicon-for-use-in-a-browser
- Refresh the Project: Iris/iris_user_guide/Content/RefreshTheProject.md
- File Update Notification: Iris/iris_user_guide/Content/File_Update_Notification.md
- Open an External File: Iris/iris_user_guide/Content/OpenAnExternalFile.md
- Open Console Logs: Iris/iris_user_guide/Content/OpenConsoleLogs.html#open-console-logs
- Forking: Iris/iris_user_guide/Content/Forking.md
- Configuring Project Settings: Iris/iris_user_guide/Content/Project_Properties_in_VoltMX_Iris.md
- Set Native App Properties: Iris/iris_user_guide/Content/Native_App_Properties.md
- The Android Manifest File: Iris/iris_user_guide/Content/AndroidManifest_File.md
- Add Global Variables: Iris/iris_user_guide/Content/Global_Variables_and_Data_Store_Keys.md
- Invoke Sublime Text from Iris: Iris/iris_user_guide/Content/Invoke_Sublime_Text_from_Iris.md
- Find and Replace: Iris/iris_user_guide/Content/FindAndReplace.md
- Capture Product Requirements with Notes: Iris/iris_user_guide/Content/CapProdReqsWithNotes.md
- Add Comments to Forms: Iris/iris_user_guide/Content/AddCommentsToForms.md
- Time and Effort Savers:
- Overview: Iris/iris_user_guide/Content/TimeAndEffortSavers.md
- Keyboard Shortcuts: Iris/iris_user_guide/Content/Keyboard_Shortcuts.md
- Using Placeholder Text: Iris/iris_user_guide/Content/Using_Placeholder_Text.md
- Use Rulers and Guides for the Desktop Channel: Iris/iris_user_guide/Content/UseRulersAndGuidesforDesktopChannel.md
- Display Widget Command Handles: Iris/iris_user_guide/Content/DisplayWidgetCommandHandles.md
- Select Multiple Items: Iris/iris_user_guide/Content/SelectMultipleItems.md
- Undo and Redo an Operation: Iris/iris_user_guide/Content/Undo_and_Redo.md
- Copy and Paste a Color or Gradient: Iris/iris_user_guide/Content/Copy_and_Paste_a_Color.md
- Jump to the Definition of a Code Element: Iris/iris_user_guide/Content/JumpToDefinition.md
- Open a Resource's Folder: Iris/iris_user_guide/Content/OpenResourceFolder.md
- Copy and Paste Forms and Actions across Channels: Iris/iris_user_guide/Content/CopyandPasteAcrossChannels.md
- Display a List of JavaScript Code Elements: Iris/iris_user_guide/Content/ListJavaScriptElements.md
- Expand and Contract the Iris Canvas: Iris/iris_user_guide/Content/ExpandContractIrisCanvas.md
- Go to the Most Recent Edit Location: Iris/iris_user_guide/Content/GoToMostRecentEditLocation.md
- Jump to a Specific Line of Code: Iris/iris_user_guide/Content/JumpToSpecificLineOfCode.md
- Creating Applications with Components:
- Working with Components: Iris/iris_user_guide/Content/C_DesigningWorkingWithComponents.md
- Components Overview: Iris/iris_user_guide/Content/C_ComponentsOverview.md
- Using Components: Iris/iris_user_guide/Content/C_UsingComponents.md
- Creating a Component: Iris/iris_user_guide/Content/C_CreatingComponent.md
- Adding Functionality:
- Overview: Iris/iris_user_guide/Content/PartIII_Adding_functionality.md
- Connect to Services:
- Overview: Iris/iris_user_guide/Content/Connecting_to_Services.md
- Preprocessor/Post Processor: Iris/iris_user_guide/Content/Preprocessor_Postprocessor.md
- Data Provider: Iris/iris_user_guide/Content/Data_Provider.md
- Response Encoding: Iris/iris_user_guide/Content/Response_Encoding.md
- Input and Output Parameters: Iris/iris_user_guide/Content/Service_Input_and_Output_Parameters.md
- Create an XML Service: Iris/iris_user_guide/Content/Creating_an_XML_Service.md
- Create a SOAP Service: Iris/iris_user_guide/Content/Creating_a_SOAP_Service.html#create-a-web-soap-sharepoint-service
- Create a JSON Service: Iris/iris_user_guide/Content/JSON_Services.md
- Create a Java Service: Iris/iris_user_guide/Content/Creating_a_Java_Service.md
- Create a Database Service: Iris/iris_user_guide/Content/Configure_Database_Service.md
- Create a SAP Service: Iris/iris_user_guide/Content/ConfigSAPService.md
- Create a Salesforce Service: Iris/iris_user_guide/Content/Sfdc_service.md
- Create a Mulesoft Service: Iris/iris_user_guide/Content/ConfigMulesoftService.md
- Create a Composite Service: Iris/iris_user_guide/Content/Orchestration.html#composite-services
- Create a Looping Connector: Iris/iris_user_guide/Content/Orchestration.html#looping-services
- Connect to Back-End Services by using Data & Services Panel:
- Overview: Iris/iris_user_guide/Content/DataPanel_Master_Page.md
- Use Data & Services Panel Features : Iris/iris_user_guide/Content/DataPanel.md
- Search Engine Optimization for Web Apps: Iris/iris_user_guide/Content/SEOforSPA.md
- Publish a Project to Volt MX Foundry: Iris/iris_user_guide/Content/PublishVoltMXFoundryServicesApp.md
- Apply Application Security:
- Overview: Iris/iris_user_guide/Content/ApplicationSecurity.md
- Build Runtime Security in the Application: Iris/iris_user_guide/Content/ApplicationSecurity.html#build-runtime-security-in-the-application
- Certificate Pinning: Iris/iris_user_guide/Content/Certificate_Pinning.md
- Public Key Pinning: Iris/iris_user_guide/Content/Public_Key_Pinning.md
- Protect the Application Binaries:
- Overview: Iris/iris_user_guide/Content/ApplicationSecurity.html#protect-the-application-binaries
- Protection Mechanisms Provided by Volt MX : Iris/iris_user_guide/Content/ApplicationSecurity.html#protection-mechanisms-provided-by
- RSA Key Pair Generation, Encryption, and Usage: Iris/iris_user_guide/Content/ApplicationSecurity.html#rsa-key-pair-generation-encryption-and-usage
- Configure Project Settings in Volt MX Iris: Iris/iris_user_guide/Content/ApplicationSecurity.html#configure-project-settings-in
- Disable Screen Capture and Recording for Android: Iris/iris_user_guide/Content/DisableScreenCaptureAndRecordingForAndroid.md
- Disable Screen Capture and Recording for Windows Phone: Iris/iris_user_guide/Content/DisableScreenCaptureAndRecordingForWindows.md
- Impact on App Performance: Iris/iris_user_guide/Content/ApplicationSecurity.html#impact-on-app-39-s-performance
- Application Security Guidelines : Iris/iris_user_guide/Content/ApplicationSecurity.html#application-security-guidelines
- Jailbroken and Rooted Device Detection: Iris/iris_user_guide/Content/ApplicationSecurity.html#jailbroken-and-rooted-device-detection
- Develop Offline Applications: Iris/iris_user_guide/Content/Developing_Offline_Applications.md
- Building and Viewing an Application:
- Overview: Iris/iris_user_guide/Content/BuildingAndViewAnApp.md
- Build and Publish: Iris/iris_user_guide/Content/buildAndPublish.md
- Build an iOS Application: Iris/iris_user_guide/Content/BuildAnAppForiOS.md
- Build an Android Application: Iris/iris_user_guide/Content/BuildAnAppForAndroid.md
- Build a Universal Application: Iris/iris_user_guide/Content/BuildUniversalApp.md
- Build a Windows 10 Application: Iris/iris_user_guide/Content/BuildApplicationsForWindows10.md
- Build an Adaptive Web Application: Iris/iris_user_guide/Content/BuildAnSPAApplication.md
- Build a Progressive Web App: Iris/iris_user_guide/Content/Build_a_Progressive_Web_App.md
- Secure your Web Application: Iris/iris_user_guide/Content/SecureyourWebApplication.md
- Live Preview: Iris/iris_user_guide/Content/LivePreview.md
- Hot Reload: Iris/iris_user_guide/Content/HotReload.md
- Build a Native App on a Local machine: Iris/iris_user_guide/Content/LocalBuildStarter.md
- Customize Volt MX App: Iris/iris_user_guide/Content/Package_AppViewer.html#customize-volt-mx-app
- Integrate React Native App into a Volt MX App: Iris/iris_user_guide/Content/Integrate_React_Native_App_into_VoltMX_App.md
- Disable Print Statements in Builds: Iris/iris_user_guide/Content/DisablePrintStatementsInBuilds.md
- Perform a Headless Build: Iris/iris_user_guide/Content/CommandLine.md
- Continuous Integration for Volt MX Iris: Iris/iris_user_guide/Content/CI_BUILD_VoltMX_Iris.md
- Build and Publish on Volt MX Iris: Iris/iris_user_guide/Content/Cloud_Build_in_VoltMX_Iris.html#build-and-publish-in
- Publishing Apps to Enterprise App Store: Iris/iris_user_guide/Content/EAS.html#publish-apps-to-the-enterprise-app-store
- Publish a Web App within Volt MX Iris: Iris/iris_user_guide/Content/WebPublish.md
- Preview an App on a Device: Iris/iris_user_guide/Content/PreviewAnAppOnADevice.md
- Monitor an App's Performance: Iris/iris_user_guide/Content/MonitorAppPerformance.md
- iOS Build Automation: Iris/iris_user_guide/Content/iOS_Automatic_Output_Generation.md
- Open Webapp and Build Folders: Iris/iris_user_guide/Content/OpenBuildFolder.md
- Testing and Debugging an Application:
- Overview: Iris/iris_user_guide/Content/TestingandDebugginganApplication.md
- Using TestNG Test Scripts: Iris/iris_user_guide/Content/Using_Test_Scripts.md
- Using Jasmine Test Scripts: Iris/iris_user_guide/Content/UsingTestScriptsJasmine.md
- Debug JavaScript for iOS: Iris/iris_user_guide/Content/Inline_Debugger.md
- Debug JavaScript for Android: Iris/iris_user_guide/Content/Inline_Debugger.md
- Jasmine Test Automation: Iris/iris_user_guide/Content/TestAutomation.md
- Android USB Debugging for Windows 10: Iris/iris_user_guide/Content/AndroidUSBDebugging_Windows10.md
- Appendix A: Internationalization:
- Overview: Iris/iris_user_guide/Content/Internationalization.md
- Supporting Right-to-Left Languages: Iris/iris_user_guide/Content/Support_for_RTL.md
- Appendix B: Android Build Environment and Configurations: Iris/iris_user_guide/Content/Inputs_to_Android_Application_Developers.md
- Appendix C: Generating and Configuring Map API Keys: Iris/iris_user_guide/Content/Generating_Map_Keys.md
- Appendix D: The App Service Event: Iris/iris_user_guide/Content/AppServiceEvent.md
- Appendix E: Camera Access in Android Browser: Iris/iris_user_guide/Content/CameraAccessAndroidBrowser.md
- Appendix F: Support for iPhone X: Iris/iris_user_guide/Content/Support_for_iPhoneX.md
- Appendix G: Universal Links iOS: Iris/iris_user_guide/Content/Universal_Links.md
- Frequently Asked Questions: Iris/iris_user_guide/Content/FAQs.md
# app_design_dev:
- Application Design and Development Guidelines:
- Overview: Iris/app_design_dev/Content/homepage.md
- Preface: Iris/app_design_dev/Content/Introduction.md
- Design Guidelines Overview: Iris/app_design_dev/Content/Application_Design_Guidelines_Overview.md
- UI Guidelines:
- Overview: Iris/app_design_dev/Content/UI_Guidelines.md
- List of UI elements: Iris/app_design_dev/Content/UI_Guidelines.html#list-of-ui-components
- Guidelines for Application Icon: Iris/app_design_dev/Content/UI_Guidelines.html#guidelines-for-application-icons
- Guidelines for Splash Screen: Iris/app_design_dev/Content/Guidelines_for_Splash_Screen.html#guidelines-for-splash-screen
- Guidelines for App Menu:
- Overview: Iris/app_design_dev/Content/Guidelines_for_App_Menu.md
- iOS: Iris/app_design_dev/Content/Guidelines_for_App_Menu.html#ios
- Android: Iris/app_design_dev/Content/Guidelines_for_App_Menu.html#android
- BlackBerry: Iris/app_design_dev/Content/Guidelines_for_App_Menu.html#blackberry
- Windows: Iris/app_design_dev/Content/Guidelines_for_App_Menu.html#windows
- General Guidelines for App Menu: Iris/app_design_dev/Content/Guidelines_for_App_Menu.html#general-guidelines-for-app-menu
- Configure an App Menu: Iris/app_design_dev/Content/Guidelines_for_App_Menu.html#configure-an-app-menu
- App Menu Examples: Iris/app_design_dev/Content/Guidelines_for_App_Menu.html#app-menu-examples
- Guidelines for Fonts:
- Overview: Iris/app_design_dev/Content/Guidelines_for_Fonts.md
- For Rich Client Applications: Iris/app_design_dev/Content/Guidelines_for_Fonts.html#guidelines-for-configuring-fonts-for-rich-client-applications
- For Mobile Web Applications: Iris/app_design_dev/Content/Guidelines_for_Fonts.md
- Guidelines for Title Bar or Navigation Controls:
- Overview: Iris/app_design_dev/Content/GuidelinesTitleBarNavigationControls.md
- iOS: Iris/app_design_dev/Content/GuidelinesTitleBarNavigationControls.html#ios
- Android: Iris/app_design_dev/Content/GuidelinesTitleBarNavigationControls.html#android
- Configure a Title Bar on a Form (iPhone: Iris/app_design_dev/Content/GuidelinesTitleBarNavigationControls.html#configure-a-title-bar-on-a-form-iphone
- Configure Device Back on a Form (Android / BlackBerry: Iris/app_design_dev/Content/GuidelinesTitleBarNavigationControls.html#configure-device-back-on-a-form-android-bb
- Title Bar Examples: Iris/app_design_dev/Content/GuidelinesTitleBarNavigationControls.html#title-bar-examples
- Guidelines for Progress Indicators (Rich Clients:
- Overview: Iris/app_design_dev/Content/Guidelines_for_Progress_Indicators_RichClients_.md
- Create a Progress Indicator: Iris/app_design_dev/Content/Guidelines_for_Progress_Indicators_RichClients_.html#create-a-progress-indicator
- Create a Blocking Indicator: Iris/app_design_dev/Content/Guidelines_for_Progress_Indicators_RichClients_.html#create-a-blocking-indicator
- Progress Indicator or Blocking UI Examples: Iris/app_design_dev/Content/Guidelines_for_Progress_Indicators_RichClients_.html#progress-indicator-blocking-ui-examples
- Guidelines for Pop-Ups or Alerts: Iris/app_design_dev/Content/Guidelines_for_Pop-up_s_or_Alerts.md
- Guidelines for Alignments (Margins & Paddings:
- Overview: Iris/app_design_dev/Content/Guidelines_for_Alignments__Margins_and_Paddings_.md
- Proper Margins and Padding Examples: Iris/app_design_dev/Content/Guidelines_for_Alignments__Margins_and_Paddings_.html#proper-margins-and-padding-examples
- Guidelines while using Images: Iris/app_design_dev/Content/Guidelines_while_using_Images.md
- Guidelines while using Segment Widget:
- Overview: Iris/app_design_dev/Content/GuidelinesWhileUsingSegmentWidget.md
- Avoid using Unnecessary Container Widgets: Iris/app_design_dev/Content/GuidelinesWhileUsingSegmentWidget.html#avoid-using-unnecessary-container-widgets
- Avoid Complex View Hierarchy: Iris/app_design_dev/Content/GuidelinesWhileUsingSegmentWidget.html#avoid-complex-view-hierarchy
- Standards Around the Maximum Number of Rows within a Segment: Iris/app_design_dev/Content/GuidelinesWhileUsingSegmentWidget.html#standards-around-maximum-number-of-rows-in-a-segment
- Use Pagination: Iris/app_design_dev/Content/GuidelinesWhileUsingSegmentWidget.html#use-pagination
- Setting Segment as Screen Level Widget: Iris/app_design_dev/Content/GuidelinesWhileUsingSegmentWidget.html#setting-segment-as-screenlevel-widget
- Do not use Hidden Widgets: Iris/app_design_dev/Content/GuidelinesWhileUsingSegmentWidget.html#do-not-use-hidden-widgets
- Segment Widget Examples: Iris/app_design_dev/Content/GuidelinesWhileUsingSegmentWidget.html#segment-widget-examples
- Guidelines while using Map Widget:
- Overview: Iris/app_design_dev/Content/Guidelines_while_using_Map_Widget.md
- Map Widget Examples: Iris/app_design_dev/Content/Guidelines_while_using_Map_Widget.html#map-widget-examples
- Guidelines while using Browser Widget: Iris/app_design_dev/Content/Guidelines_while_using_Browser_Widget.md
- Guidelines for Calendar Widget: Iris/app_design_dev/Content/Guidelines_for_calendar_widget.md
- Landscape vs. Portrait View:
- Overview: Iris/app_design_dev/Content/Landscape_vs._Portrait_View.md
- Achieve a Uniform UI in both Orientation: Iris/app_design_dev/Content/Landscape_vs._Portrait_View.html#achieve-a-uniform-ui-in-both-orientations
- Configure a Screen for Both Portrait and Landscape: Iris/app_design_dev/Content/ConfigScreenForBothPortAndLand.md
- Mobile Web Apps Only: Iris/app_design_dev/Content/Mobile_Web_Apps_Only.md
- General UI guidelines:
- Overview: Iris/app_design_dev/Content/General_UI_guidelines.md
- Text and Grammar across the Application: Iris/app_design_dev/Content/General_UI_guidelines.html#guidelines-for-text-and-grammar-across-the-application
- Container Widgets: Iris/app_design_dev/Content/General_UI_guidelines.html#guidelines-for-container-widgets
- Skins: Iris/app_design_dev/Content/General_UI_guidelines.html#guidelines-for-skins
- Orientation Support: Iris/app_design_dev/Content/General_UI_guidelines.html#guidelines-for-orientation-support
- Headers and Footers: Iris/app_design_dev/Content/General_UI_guidelines.html#guidelines-for-headers-and-footers
- Copyright: Iris/app_design_dev/Content/General_UI_guidelines.html#guidelines-for-copyright
- Application Info: Iris/app_design_dev/Content/General_UI_guidelines.html#guidelines-for-application-info
- Application Icon in Phone Settings: Iris/app_design_dev/Content/General_UI_guidelines.html#guidelines-for-application-icon-in-phone-settings
- Other Guidelines: Iris/app_design_dev/Content/General_UI_guidelines.html#other-guidelines
- Coding Guidelines:
- Overview: Iris/app_design_dev/Content/Coding_Guidelines.md
- Foreign Function Interface (FFI):
- Overview: Iris/app_design_dev/Content/FFI.md
- iPhone: Iris/app_design_dev/Content/FFI.html#iphone
- Andorid: Iris/app_design_dev/Content/FFI.html#android
- BlackBerry: Iris/app_design_dev/Content/FFI.html#blackberry
- Performance Management Guidelines: Iris/app_design_dev/Content/Performance_and_Memory.md
- Memory Management Guidelines:
- Overview: Iris/app_design_dev/Content/Memory_Management_Guidelines.md
- form.destroy: Iris/app_design_dev/Content/Memory_Management_Guidelines.html#form-destroy
- Global Variables: Iris/app_design_dev/Content/Memory_Management_Guidelines.html#global-variables
- Device-side Security Guidelines: Iris/app_design_dev/Content/Security.md
- Pre/Post Processors and URL Provider Guidelines: Iris/app_design_dev/Content/Pre_and_Post_Processors.md
- Application Development Guidelines:
- Overview: Iris/app_design_dev/Content/Application_Development_Guidelines_Overview.md
- Coding Standards: Iris/app_design_dev/Content/JavaScript_Coding_Standards.md
- Basics of JavaScript: Iris/app_design_dev/Content/JavaScript_Language_Rules.md
- Accessibility (508 Compliance):
- Overview: Iris/app_design_dev/Content/Accessibility_Overview.md
- Importance of Accessibility: Iris/app_design_dev/Content/Usable_Accessibility.md
- Accessibility Compliance Guidelines for Web: Iris/app_design_dev/Content/Web_Accessibility.md
- Enable Accessibility in Iris: Iris/app_design_dev/Content/Accessibility_Iris.html#enable-accessibility-in-iris
- Widget Navigation: Iris/app_design_dev/Content/Widget_Navigation.html#widget-navigation
- Accessibility: Platform Specific Limitations: Iris/app_design_dev/Content/Accessibility_Platform.md
- Flex Layout Guidelines:
- Overview: Iris/app_design_dev/Content/Flex_Layout_Guidelines_Overview.md
- Animation & Flex Layout Limitations: Iris/app_design_dev/Content/Limitations_Animations.md
- Flex Backwards Compatibility: Iris/app_design_dev/Content/Flex_Backward_Compatibility.md
- Flex Pseudocode Examples: Iris/app_design_dev/Content/Flex_SampleCode.md
- Flex Layout Animation: Iris/app_design_dev/Content/Animation.md
- Platform Specific Limitations: Iris/app_design_dev/Content/Appendix.md
- App Submission Guidelines: Iris/app_design_dev/Content/AppSubmissionGuidelines.md
- Common UI Issues: Iris/app_design_dev/Content/FAQs.md
# iris_api_dev_guide:
- Volt Iris API Developers Guide:
- Introduction: Iris/iris_api_dev_guide/content/introduction.md
- Accelerometer API:
- Overview: Iris/iris_api_dev_guide/content/accelereometer_apis.md
- voltmx.accelerometer Namespace: Iris/iris_api_dev_guide/content/accelerometerfunctions.md
- Action Sheet API for iOS:
- Overview: Iris/iris_api_dev_guide/content/actionsheet_api.md
- ActionItem Object: Iris/iris_api_dev_guide/content/actionitem_object.md
- ActionItem Object Properties: Iris/iris_api_dev_guide/content/actionitem_properties.md
- ActionItem Function: Iris/iris_api_dev_guide/content/voltmx.ui_functions_actionitem.md
- ActionSheet Object: Iris/iris_api_dev_guide/content/actionsheet_object_methods.md
- ActionSheet ObjectMethods: Iris/iris_api_dev_guide/content/actionsheet_object_methods.html#methods
- ActionSheet Function: Iris/iris_api_dev_guide/content/voltmx.ui_functions_actionsheet.md
- Alert API:
- Overview: Iris/iris_api_dev_guide/content/alert_api.md
- voltmx.ui.Alert Function: Iris/iris_api_dev_guide/content/voltmx.ui_functions_alert.html#volt-mx-ui-alert-function
- Animation API:
- Overview: Iris/iris_api_dev_guide/content/animationapi.md
- AnimationDefinition Object: Iris/iris_api_dev_guide/content/animationdefinitionobject.md
- Key Frame Animation: Iris/iris_api_dev_guide/content/animationdefinitionobject.html#key-frame-animation
- AnimationConfiguration Object: Iris/iris_api_dev_guide/content/animationconfiguration_object.md
- voltmx.anim Namespace: Iris/iris_api_dev_guide/content/voltmx.anim_constants.md
- voltmx.ui.createAnimation Function: Iris/iris_api_dev_guide/content/voltmx.ui_functions_createanimation.md
- voltmx.ui.makeAffineTransform Function: Iris/iris_api_dev_guide/content/voltmx.ui_functions_makeaffinetransform.md
- transform Object: Iris/iris_api_dev_guide/content/transform_object_methods.md
- Android NFC Manifest Configuration: Iris/iris_api_dev_guide/content/Android_NFC_Manifest_Configuration.md
- App Extension API for iOS:
- Overview: Iris/iris_api_dev_guide/content/app-extension-ios.md
- voltmx.actionExtension Namespace: Iris/iris_api_dev_guide/content/voltmx.actionextension_functions.md
- voltmx.iMessageExtensions Namespace: Iris/iris_api_dev_guide/content/voltmx.imessageextensionsfunctions.md
- voltmx.intentExtension Namespace: Iris/iris_api_dev_guide/content/voltmx.intentextension_functions.md
- voltmx.notificationContentExtension Namespace: Iris/iris_api_dev_guide/content/voltmx.notificationcontentextension_functions.md
- voltmx.shareExtensions Namespace: Iris/iris_api_dev_guide/content/voltmx.shareextensionsfunctions.md
- voltmx.todayExtension Namespace: Iris/iris_api_dev_guide/content/voltmx.todayextension.md
- Application API:
- Overview: Iris/iris_api_dev_guide/content/application_api.md
- voltmx.application Namespace: Iris/iris_api_dev_guide/content/voltmx.application_functions.md
- Application Settings API:
- Overview: Iris/iris_api_dev_guide/content/application_settings.md
- voltmx.application.settings Namespace: Iris/iris_api_dev_guide/content/voltmx_application__settings_functions.md
- Automation API:
- Overview: Iris/iris_api_dev_guide/content/voltmx_automation_api.md
- voltmx.automation Namespace: Iris/iris_api_dev_guide/content/voltmx.automation_namespace.md
- Background Agent API:
- Overview: Iris/iris_api_dev_guide/content/backgroundagent_api.md
- voltmx.backgroundtasks Namespace: Iris/iris_api_dev_guide/content/voltmx.background_functions.md
- Badge API:
- Overview: Iris/iris_api_dev_guide/content/badge.md
- Functions: Iris/iris_api_dev_guide/content/voltmx.application_functions_badgeapi.md
- Battery API:
- Overview: Iris/iris_api_dev_guide/content/battery_api.md
- Constants: Iris/iris_api_dev_guide/content/voltmx.os_constants_batteryapi.md
- Functions: Iris/iris_api_dev_guide/content/voltmx.os_functions_batteryapi.md
- Beacon API:
- Overview: Iris/iris_api_dev_guide/content/beaconffi.md
- com.voltmx.Beacon: Iris/iris_api_dev_guide/content/beaconmethods.md
- com.voltmx.BeaconManager: Iris/iris_api_dev_guide/content/beaconmanager_methods.md
- BeaconRegion Object: Iris/iris_api_dev_guide/content/com.voltmx.beaconregion.md
- com.voltmx.PeripheralManager: Iris/iris_api_dev_guide/content/com.voltmx.peripheralmanager.md
- Bookmark and Refresh API: Iris/iris_api_dev_guide/content/bookmark_refresh_apis.md
- Caching API:
- Overview: Iris/iris_api_dev_guide/content/caching_api.md
- voltmx.net.cache namespace: Iris/iris_api_dev_guide/content/voltmx.net.cache_functions.md
- Camera API:
- Overview: Iris/iris_api_dev_guide/content/camera.md
- voltmx.camera Namespace: Iris/iris_api_dev_guide/content/voltmx.camera_functions.md
- Charm Setting API:
- Overview: Iris/iris_api_dev_guide/content/charms.md
- Functions: Iris/iris_api_dev_guide/content/voltmx.application_functions_charmsapi.html#functions
- Client Authentication API: Iris/iris_api_dev_guide/content/client-authentication.md
- Core Haptics:
- Overview: Iris/iris_api_dev_guide/content/corehaptics.md
- voltmx.haptics Namespace: Iris/iris_api_dev_guide/content/voltmx.haptics.md
- Communication API for React Native App:
- Overview: Iris/iris_api_dev_guide/content/communication_api_for_react_native.md
- voltmx.reactNative Namespace: Iris/iris_api_dev_guide/content/voltmx.reactnative_functions.md
- React Native APIs: Iris/iris_api_dev_guide/content/react_native_apis.md
- Cryptography APIs:
- Overview: Iris/iris_api_dev_guide/content/cryptography.md
- voltmx.crypto Namespace: Iris/iris_api_dev_guide/content/voltmx.crypto_functions.md
- Drag and Drop API:
- Overview: Iris/iris_api_dev_guide/content/drag_and_drop_api.md
- voltmx.dragDrop Namespace: Iris/iris_api_dev_guide/content/voltmx.dragdrop_functions.md
- ForceTouch API:
- Overview: Iris/iris_api_dev_guide/content/forcetouch_api.md
- voltmx.forcetouch Namespace: Iris/iris_api_dev_guide/content/voltmx.forcetouch_functions.md
- Functional Modules API:
- Overview: Iris/iris_api_dev_guide/content/modules.md
- voltmx.modules Namespace: Iris/iris_api_dev_guide/content/voltmx.modules_functions.md
- GeoLocation API:
- Overview: Iris/iris_api_dev_guide/content/geolocation_api_watchposition.md
- voltmx.location Namespace: Iris/iris_api_dev_guide/content/voltmx.location_functions.md
- Gesture API:
- Overview: Iris/iris_api_dev_guide/content/gestures.md
- Functions: Iris/iris_api_dev_guide/content/voltmx.application_functions_gestures.md
- Google Mobile Services APIs:
- Overview: Iris/iris_api_dev_guide/content/gms_api.md
- SafetyNet APIs: Iris/iris_api_dev_guide/content/safetynetapi.md
- Security Provider APIs: Iris/iris_api_dev_guide/content/securityprovider_api.md
- Update and Error Handling APIs: Iris/iris_api_dev_guide/content/gms_update_error_api.md
- voltmx.gms Namespace: Iris/iris_api_dev_guide/content/voltmx.gms_functions.md
- Image API:
- Overview: Iris/iris_api_dev_guide/content/imageapi.md
- Image Object: Iris/iris_api_dev_guide/content/image_methods.md
- Filter Object: Iris/iris_api_dev_guide/content/voltmxfilterfilterobjmethods.md
- voltmx.filter Namespace: Iris/iris_api_dev_guide/content/voltmxfilterconstants.md
- voltmx.image Namespace: Iris/iris_api_dev_guide/content/voltmximagenamespacefunctions.md
- Image Classification API:
- Overview: Iris/iris_api_dev_guide/content/imageclassificationapi.md
- ImageClassifier Object: Iris/iris_api_dev_guide/content/imageclassifier_object.md
- voltmx.ml Namespace: Iris/iris_api_dev_guide/content/voltmx.ml_namespace_functions.md
- In-App Updates API:
- Overview: Iris/iris_api_dev_guide/content/in-app_updates_api.md
- Constants and Functions: Iris/iris_api_dev_guide/content/voltmx.application_in-app_updates_functions.md
- Input and Output API:
- Overview: Iris/iris_api_dev_guide/content/inputoutput_api.md
- voltmx.io.File Namespace: Iris/iris_api_dev_guide/content/voltmx.io.file_functions.md
- voltmx.io.FileList Namespace: Iris/iris_api_dev_guide/content/voltmx.io.filelist_functions.md
- voltmx.io.FileSystem Namespace: Iris/iris_api_dev_guide/content/voltmx.io.filesystem_functions.md
- voltmx.types Namespace: Iris/iris_api_dev_guide/content/voltmx.types.rawbytes_namespace.md
- RawBytes Object: Iris/iris_api_dev_guide/content/voltmx.types_objects_rawbytes.md
- Secure Text Exchange between Native Android Code and JavaScript: Iris/iris_api_dev_guide/content/voltmx.types_objects.html#secure-text-exchange-between-native-android-code-and-javascript
- Internationalization API:
- Overview: Iris/iris_api_dev_guide/content/internationalization.md
- voltmx.i18n Namespace: Iris/iris_api_dev_guide/content/voltmx.i18n_functions.md
- Keychain API:
- Overview: Iris/iris_api_dev_guide/content/keychain_api_for_ios.md
- voltmx.keychain Namespace: Iris/iris_api_dev_guide/content/voltmx.keychain_functions.md
- Language API:
- Overview: Iris/iris_api_dev_guide/content/language_apis.md
- voltmx.lang Namespace: Iris/iris_api_dev_guide/content/voltmx.lang_functions.md
- Live Tiles API:
- Overview: Iris/iris_api_dev_guide/content/live_tiles.md
- Functions: Iris/iris_api_dev_guide/content/voltmx.application_functions_livetiles.md
- Local Authentication API:
- Overview: Iris/iris_api_dev_guide/content/localauthapi.md
- voltmx.localAuthentication Namespace: Iris/iris_api_dev_guide/content/voltmx.localauthentication_functions.md
- Map API:
- Overview: Iris/iris_api_dev_guide/content/mapapi.md
- voltmx.map Namespace: Iris/iris_api_dev_guide/content/voltmx_map_functions.md
- Map Styling API: Iris/iris_api_dev_guide/content/map_styling_api.md
- Math API:
- Overview: Iris/iris_api_dev_guide/content/math_library.md
- math Namespace: Iris/iris_api_dev_guide/content/voltmx.math_functions.md
- Media API:
- Overview: Iris/iris_api_dev_guide/content/media_api.md
- voltmx.media Namespace: Iris/iris_api_dev_guide/content/voltmx.media_functions.md
- media Object:
- Overview: Iris/iris_api_dev_guide/content/media_object.md
- Methods: Iris/iris_api_dev_guide/content/media_methods.md
- Properties: Iris/iris_api_dev_guide/content/media_properties.md
- record Object:
- Overview: Iris/iris_api_dev_guide/content/record_object.md
- Methods: Iris/iris_api_dev_guide/content/record_methods.md
- voltmx.screenrecorder Namespace: Iris/iris_api_dev_guide/content/voltmx.screenrecorder.md
- Network API:
- Overview: Iris/iris_api_dev_guide/content/network_apis.md
- Network Calls: Iris/iris_api_dev_guide/content/networkapi_networkcalls.md
- Asynchronous Network Calls: Iris/iris_api_dev_guide/content/networkapi_asynccalls.md
- voltmx.net Namespace: Iris/iris_api_dev_guide/content/voltmx.net_functions.md
- Notifications API:
- Overview: Iris/iris_api_dev_guide/content/notifications.md
- Local Notifications:
- Overview: Iris/iris_api_dev_guide/content/local_notifications.md
- voltmx.localnotifications Functions: Iris/iris_api_dev_guide/content/voltmx.localnotifications_functions.md
- voltmx.localnotifications Properties: Iris/iris_api_dev_guide/content/voltmx.localnotifications_properties.md
- Push Notifications:
- Overview: Iris/iris_api_dev_guide/content/push_notifications.md
- voltmx.push Namespace: Iris/iris_api_dev_guide/content/voltmx.push_functions.md
- Notification Settings:
- Overview: Iris/iris_api_dev_guide/content/notificationsettings.md
- voltmx.notificationsettings Namespace: Iris/iris_api_dev_guide/content/voltmx.notificationssettings_functions.md
- Offline Data Access API:
- Overview: Iris/iris_api_dev_guide/content/data_store_library.md
- voltmx.store Namespace: Iris/iris_api_dev_guide/content/voltmx.store_functions.md
- voltmx.db Namespace: Iris/iris_api_dev_guide/content/voltmx.db_functions.md
- voltmx.ds Namespace: Iris/iris_api_dev_guide/content/voltmx.ds_functions.md
- Operating System API:
- Overview: Iris/iris_api_dev_guide/content/operating_system.md
- voltmx.os Namespace: Iris/iris_api_dev_guide/content/voltmx.os_functions.md
- Objects: Iris/iris_api_dev_guide/content/voltmx.os_objects.md
- DeviceInfo: Iris/iris_api_dev_guide/content/voltmx.os_objects_deviceinfo.md
- Passbook API:
- Overview: Iris/iris_api_dev_guide/content/passbook.md
- PassLibrary Object: Iris/iris_api_dev_guide/content/passlibrary.md
- Pass Object: Iris/iris_api_dev_guide/content/pass.md
- AddPassesViewController Object: Iris/iris_api_dev_guide/content/com.voltmx_objects_addpassesviewcontroller_methods.md
- Payment API:
- Overview: Iris/iris_api_dev_guide/content/payment_api.md
- voltmx.payment Namespace: Iris/iris_api_dev_guide/content/voltmx.payment_functions.md
- Phone API:
- Overview: Iris/iris_api_dev_guide/content/phone.md
- voltmx.contact Namespace: Iris/iris_api_dev_guide/content/voltmx.contact_functions.md
- voltmx.phone Namespace: Iris/iris_api_dev_guide/content/voltmx.phone_functions.md
- Request App Review API:
- Overview: Iris/iris_api_dev_guide/content/request_app_review_api.md
- requestReviewFlow Function: Iris/iris_api_dev_guide/content/voltmx.application_functions_requestreview.html#requestReviewFlow
- requestReview Function: Iris/iris_api_dev_guide/content/voltmx.application_functions_requestreview.html#requestReview
- Runtime Permission API:
- Overview: Iris/iris_api_dev_guide/content/runtime_permissions.md
- Functions: Iris/iris_api_dev_guide/content/voltmx.application_functions_runtimepermissionsapi.md
- Shared App Group Container API for iOS: Iris/iris_api_dev_guide/content/sharedappgroupcontainerapi.md
- SignInWithApple API:
- Overview: Iris/iris_api_dev_guide/content/signinwithapple_api.md
- Functions: Iris/iris_api_dev_guide/content/voltmx.signinwithapple_functions.html#functions
- Standard Volt MX API:
- Overview: Iris/iris_api_dev_guide/content/generic_apis.md
- voltmx Namespace: Iris/iris_api_dev_guide/content/voltmx_functions.md
- String API:
- Overview: Iris/iris_api_dev_guide/content/string.md
- voltmx.string Namespace: Iris/iris_api_dev_guide/content/voltmx.string_functions.md
- Sync API:
- Overview: Iris/iris_api_dev_guide/content/sync_apis.md
- sync Namespace: Iris/iris_api_dev_guide/content/sync_functions.md
- Sync Object: Iris/iris_api_dev_guide/content/sync_object_methods.md
- Theme API:
- Overview: Iris/iris_api_dev_guide/content/themes.md
- voltmx.theme Namespace: Iris/iris_api_dev_guide/content/voltmx.theme_functions.md
- Threading API:
- Overview: Iris/iris_api_dev_guide/content/threading_apis.md
- Functions: Iris/iris_api_dev_guide/content/voltmx_functions_threadingapis.html#functions
- Timer API:
- Overview: Iris/iris_api_dev_guide/content/timer.md
- voltmx.timer Namespace: Iris/iris_api_dev_guide/content/voltmx.timer_functions.md
- Toast API:
- Overview: Iris/iris_api_dev_guide/content/toast_api.md
- Functions: Iris/iris_api_dev_guide/content/voltmx.ui_functions_toast.md
- Toast Object: Iris/iris_api_dev_guide/content/toast_properties.md
- UI API:
- voltmx.ui Namespace: Iris/iris_api_dev_guide/content/voltmx.ui_functions.md
- Worker Thread API:
- Overview: Iris/iris_api_dev_guide/content/worker_apis.md
- voltmx.worker Namespace: Iris/iris_api_dev_guide/content/voltmx.worker_functions.md
- WorkerThread Object: Iris/iris_api_dev_guide/content/workerthreadobject_methods.md
- Deprecated/Unsupported APIs: Iris/iris_api_dev_guide/content/unsupportedapis.md
- Appendix: Exceptions: Iris/iris_api_dev_guide/content/exceptions.md
- Appendix: General FAQ: Iris/iris_api_dev_guide/content/appendix_general_frequently_asked_questions.md
- Appendix: JavaScript FAQ: Iris/iris_api_dev_guide/content/appendix_javascript_frequently_asked_questions.md
- Appendix: Preprocessor Directives: Iris/iris_api_dev_guide/content/appendix_preprocesor_directives.md
- Appendix: SQLite: Iris/iris_api_dev_guide/content/sqllite.md
- Appendix: Background Jobs in iOS 7:
- Background Fetch: Iris/iris_api_dev_guide/content/background_tasks_in_ios.html#background-fetch
- Background Transfers: Iris/iris_api_dev_guide/content/background_tasks_in_ios.html#background-transfers
- Background Fetch Workflow: Iris/iris_api_dev_guide/content/background_tasks_in_ios.html#background-fetch-workflow
- Background Fetch and Background Transfers APIs: Iris/iris_api_dev_guide/content/background_tasks_in_ios.html#background-fetch-and-background-transfers-apis
- Supported Versions and Platforms: Iris/iris_api_dev_guide/content/background_tasks_in_ios.html#supported-versions-and-platforms
- voltmx.backgroundjob.setBackgroundFetchInterval: Iris/iris_api_dev_guide/content/background_tasks_in_ios.html#volt-mx-backgroundjob-setbackgroundfetchcompletionstatus
- voltmx.backgroundjob.setBackgroundFetchCompletionStatus: Iris/iris_api_dev_guide/content/background_tasks_in_ios.html#completionStatus
- voltmx.backgroundjob.registerBackgroundFetch: Iris/iris_api_dev_guide/content/background_tasks_in_ios.html#volt-mx-backgroundjob-registerbackgroundfetch
- Long Running Network Tasks:
- suspend: Iris/iris_api_dev_guide/content/background_transfer.html#suspend
- resume: Iris/iris_api_dev_guide/content/background_transfer.html#resume
- getTaskState: Iris/iris_api_dev_guide/content/background_transfer.html#gettaskstate
- getSession: Iris/iris_api_dev_guide/content/session_configuration_api.html#getsession
# iris_nf_api_dev_guide:
- Native Function API Developers Guide:
- Overview: Iris/iris_nf_api_dev_guide/content/native_function_api_developers__guide.md
- Introducing the Native Function API: Iris/iris_nf_api_dev_guide/content/native_function.md
- Native Function APIs for iOS:
- Overview: Iris/iris_nf_api_dev_guide/content/native_function_apis_for_ios.md
- Updating Old Apps to Work with iOS 12 Security Enhancements: Iris/iris_nf_api_dev_guide/content/updating_old_apps_to_work_with_ios_12_security_enhancements.md
- iOS Quick Start Guide: Iris/iris_nf_api_dev_guide/content/ios_quickstart.md
- Using the Native Function API for iOS: Iris/iris_nf_api_dev_guide/content/common_tasks_for_ios.md
- Native Function API for iOS Reference:
- Overview: Iris/iris_nf_api_dev_guide/content/native_function_api_for_ios_reference.md
- Accelerate: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Accelerate-iOS-13.0/
- Accounts: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Accounts-iOS-13.0/
- AddressBook: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/AddressBook-iOS-13.0/
- AddressBookUI: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/AddressBookUI-iOS-13.0/
- AdSupport: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/AdSupport-iOS-13.0/
- AssetsLibrary: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/AssetsLibrary-iOS-13.0/
- AudioToolbox: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/AudioToolbox-iOS-13.0/
- AudioUnit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/AudioUnit-iOS-13.0/
- AuthenticationServices: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/AuthenticationServices-iOS-13.0/
- AVFoundation: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/AVFoundation-iOS-13.0/
- AVKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/AVKit-iOS-13.0/
- BackgroundTasks: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/BackgroundTasks-iOS-13.0/
- BusinessChat: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/BusinessChat-iOS-13.0/
- CallKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CallKit-iOS-13.0/
- CarPlay: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CarPlay-iOS-13.0/
- CFNetwork: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CFNetwork-iOS-13.0/
- ClassKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/ClassKit-iOS-13.0/
- CloudKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CloudKit-iOS-13.0/
- Contacts: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Contacts-iOS-13.0/
- ContactsUI: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/ContactsUI-iOS-13.0/
- CoreAudioKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CoreAudioKit-iOS-13.0/
- CoreBluetooth: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CoreBluetooth-iOS-13.0/
- CoreData: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CoreData-iOS-13.0/
- CoreFoundation: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CoreFoundation-iOS-13.0/
- CoreHaptics: https://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CoreHaptics-iOS-13.0/
- CoreLocation: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CoreLocation-iOS-13.0/
- CoreMedia: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CoreMedia-iOS-13.0/
- CoreMIDI: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CoreMIDI-iOS-13.0/
- CoreML: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CoreML-iOS-13.0/
- CoreMotion: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CoreMotion-iOS-13.0/
- CoreServices: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CoreServices-iOS-13.0/
- CoreTelephony: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CoreTelephony-iOS-13.0/
- CoreVideo: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/CoreVideo-iOS-13.0/
- DeviceCheck: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/DeviceCheck-iOS-13.0/
- EventKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/EventKit-iOS-13.0/
- EventKitUI: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/EventKitUI-iOS-13.0/
- ExternalAccessory: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/ExternalAccessory-iOS-13.0/
- FileProvider: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/FileProvider-iOS-13.0/
- FileProviderUI: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/FileProviderUI-iOS-13.0/
- Foundation: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Foundation-iOS-13.0/
- GameController: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/GameController-iOS-13.0/
- GameKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/GameKit-iOS-13.0/
- GamePlayKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/GameplayKit-iOS-13.0/
- GLKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/GLKit-iOS-13.0/
- GSS: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/GSS-iOS-13.0/
- HealthKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/HealthKit-iOS-13.0/
- HealthKitUI: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/HealthKitUI-iOS-13.0/
- IdentityLookup: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/IdentityLookup-iOS-13.0/
- IdentityLookupUI: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/IdentityLookupUI-iOS-13.0/
- ImageCaptureCore: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/ImageCaptureCore-iOS-13.0/
- ImageIO: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/ImageIO-iOS-13.0/
- Intents: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Intents-iOS-13.0/
- IntentsUI: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/IntentsUI-iOS-13.0/
- JavaScriptCore: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/JavaScriptCore-iOS-13.0/
- LinkPresentation: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/LinkPresentation-iOS-13.0/
- LocalAuthentication: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/LocalAuthentication-iOS-13.0/
- MapKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/MapKit-iOS-13.0/
- MediaAccessibility: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/MediaAccessibility-iOS-13.0/
- MediaPlayer: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/MediaPlayer-iOS-13.0/
- MediaToolbox: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/MediaToolbox-iOS-13.0/
- Messages: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Messages-iOS-13.0/
- MessageUI: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/MessageUI-iOS-13.0/
- Metal: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Metal-iOS-13.0/
- MetalKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/MetalKit-iOS-13.0/
- MetalPerformanceShaders: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/MetalPerformanceShaders-iOS-13.0/
- MetricKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/MetricKit-iOS-13.0/
- MobileCoreServices: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/MobileCoreServices-iOS-13.0/
- ModelIO: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/ModelIO-iOS-13.0/
- MultipeerConnectivity: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/MultipeerConnectivity-iOS-13.0/
- NaturalLanguage: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/NaturalLanguage-iOS-13.0/
- NetworkExtension: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/NetworkExtension-iOS-13.0/
- Network: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Network-iOS-13.0/
- NewsstandKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/NewsstandKit-iOS-13.0/
- NotificationCenter: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/NotificationCenter-iOS-13.0/
- PassKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/PassKit-iOS-13.0/
- PDFKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/PDFKit-iOS-13.0/
- PencilKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/PencilKit-iOS-13.0/
- Photos: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Photos-iOS-13.0/
- PhotosUI: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/PhotosUI-iOS-13.0/
- PushKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/PushKit-iOS-13.0/
- QuartzCore: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/QuartzCore-iOS-13.0/
- QuickLook: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/QuickLook-iOS-13.0/
- QuickLookThumbnailing: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/QuickLookThumbnailing-iOS-13.0/
- ReplayKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/ReplayKit-iOS-13.0/
- SceneKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/SceneKit-iOS-13.0/
- Security: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Security-iOS-13.0/
- Social: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Social-iOS-13.0/
- SoundAnalysis: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/SoundAnalysis-iOS-13.0/
- Speech: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Speech-iOS-13.0/
- SpriteKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/SpriteKit-iOS-13.0/
- StoreKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/StoreKit-iOS-13.0/
- SwiftUI: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/SwiftUI-iOS-13.0/
- SystemConfiguration: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/SystemConfiguration-iOS-13.0/
- Twitter: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Twitter-iOS-13.0/
- UIKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/UIKit-iOS-13.0/
- UserNotifications: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/UserNotifications-iOS-13.0/
- UserNotificationsUI: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/UserNotificationsUI-iOS-13.0/
- VideoSubscriberAccount: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/VideoSubscriberAccount-iOS-13.0/
- VideoToolbox: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/VideoToolbox-iOS-13.0/
- Vision: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/Vision-iOS-13.0/
- VisionKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/VisionKit-iOS-13.0/
- WatchConnectivity: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/WatchConnectivity-iOS-13.0/
- WebKit: http://opensource.hcltechsw.com/volt-mx-native-ios-function-docs/iOS13/WebKit-iOS-13.0/
- iOS Examples:
- Overview: Iris/iris_nf_api_dev_guide/content/ios_examples.md
- Battery Status - Application Walkthrough: Iris/iris_nf_api_dev_guide/content/battery_status.md
- Using the Native Container Widget to Display iOS Controls: Iris/iris_nf_api_dev_guide/content/using_the_ios_uisegmentedcontrol_in_a_native_container.md
- Generator: Iris/iris_nf_api_dev_guide/content/generator.md
- HealthKit: Iris/iris_nf_api_dev_guide/content/healthkit.md
- Apple Pay: Iris/iris_nf_api_dev_guide/content/apple_pay.md
- ZipUnzip: Iris/iris_nf_api_dev_guide/content/zipunzip_ios.md
- Native Function APIs for Android:
- Overview: Iris/iris_nf_api_dev_guide/content/native_function_apis_for_android.md
- Android Quick Start Guide: Iris/iris_nf_api_dev_guide/content/android_quickstart.md
- Using the Native Function API for Android: Iris/iris_nf_api_dev_guide/content/common_tasks_for_android.md
- Native Function API for Android Reference:
- Overview: Iris/iris_nf_api_dev_guide/content/native_function_api_for_android_reference.md
- android.accessibilityservice: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.accessibilityservice-Android-10.0/
- android.accounts: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.accounts-Android-10.0/
- android.animation: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.animation-Android-10.0/
- android.annotation: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.annotation-Android-10.0/
- android.app: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.app-Android-10.0/
- android.app.admin: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.app.admin-Android-10.0/
- android.app.assist: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.app.assist-Android-10.0/
- android.app.backup: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.app.backup-Android-10.0/
- android.app.job: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.app.job-Android-10.0/
- android.app.usage: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.app.usage-Android-10.0/
- android.appwidget: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.appwidget-Android-10.0/
- android.bluetooth: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.bluetooth-Android-10.0/
- android.bluetooth.le: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.bluetooth.le-Android-10.0/
- android.content: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.content-Android-10.0/
- android.content.pm: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.content.pm-Android-10.0/
- android.content.res: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.content.res-Android-10.0/
- android.database: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.database-Android-10.0/
- android.database.sqlite: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.database.sqlite-Android-10.0/
- android.databinding: https://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/com.android.server.appbinding-Android-10.0/
- android.drm: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.drm-Android-10.0/
- android.gesture: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.gesture-Android-10.0/
- android.graphics: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.graphics-Android-10.0/
- android.graphics.drawable: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.graphics.drawable-Android-10.0/
- android.graphics.drawable.shapes: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.graphics.drawable.shapes-Android-10.0/
- android.graphics.pdf: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.graphics.pdf-Android-10.0/
- android.hardware: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.hardware-Android-10.0/
- android.hardware.camera2: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.hardware.camera2-Android-10.0/
- android.hardware.camera2.params: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.hardware.camera2.params-Android-10.0/
- android.hardware.display: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.hardware.display-Android-10.0/
- android.hardware.fingerprint: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.hardware.fingerprint-Android-10.0/
- android.hardware.input: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.hardware.input-Android-10.0/
- android.hardware.usb: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.hardware.usb-Android-10.0/
- android.inputmethodservice: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.inputmethodservice-Android-10.0/
- android.location: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.location-Android-10.0/
- android.media: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.media-Android-10.0/
- android.media.audiofx: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.media.audiofx-Android-10.0/
- android.media.browse: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.media.browse-Android-10.0/
- android.media.effect: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.media.effect-Android-10.0/
- android.media.midi: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.media.midi-Android-10.0/
- android.media.projection: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.media.projection-Android-10.0/
- android.media.session: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.media.session-Android-10.0/
- android.media.tv: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.media.tv-Android-10.0/
- android.mtp: http://opensource.hcltechsw.com/volt-mx-native-function-docs/Android/android.mtp-Android-10.0/