forked from blackberry/Catalogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAll_Samples.json
2181 lines (2180 loc) · 133 KB
/
All_Samples.json
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
{
"_comment_": {
"desc": "description",
"url": "URL to sample",
"repo": "name of repository",
"repourl": "URL of repository",
"note": "optional note",
"warning": "optional warning",
"collection": "number of samples in the collection",
"wiki": "wiki page with more details - still being discussed",
"tags": [ "an array of tags", "reserved tags are:", "extension", "html5", "native", "java", "air", "cascades", "bb10", "playbook", "client", "server", "app", "notrim", "rim", "puzzler" ]
},
"Accelerometer": {
"desc": "How to handle updates from the accelerometer sensor",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/Accelerometer",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "accelerometer", "sensor" ]
},
"accelgame": {
"desc": "How to use QtSensors to navigate a player through a maze using the acceleration sensor",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/accelgame",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "sensor", "accelerometer" ]
},
"accounts": {
"desc": "How to manage the accounts used by the PIM APIs",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/accounts",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "pim" ]
},
"ActiveFrameSample(AIR,bb10)": {
"desc": "How to create an Active Frame when your App is minimized",
"url": "https://github.com/blackberry/Samples-for-AIR/tree/bb10/ActiveFrameApp",
"repo": "Samples-for-AIR",
"repourl": "http://github.com/blackberry/Samples-for-AIR",
"tags": [ "air", "client", "bb10", "activeframe" ]
},
"addressbook": {
"desc": "How to implement a simple address book application",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/addressbook",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "pim" ]
},
"AdvancedUI": {
"desc": "Advanced Buttons, Fields and Managers for Java-based BlackBerry Smartphones",
"url": "https://github.com/blackberry/Samples-for-Java/tree/master/Advanced%20UI",
"repo": "Samples-for-Java",
"repourl": "http://github.com/blackberry/Samples-for-Java",
"note": "<p>More details on the functionality in this <a href='http://supportforums.blackberry.com/t5/Java-Development/Implement-advanced-buttons-fields-and-managers/ta-p/488276'>DevZone Article</a></p><p>Note the whitespace in the URL to the sample</p>",
"tags": [ "java", "client", "analytics", "bbos" ]
},
"Analytics": {
"desc": "Sample from the Analytics SDK",
"url": "https://github.com/blackberry/Samples-for-Java/tree/master/Analytics",
"repo": "Samples-for-Java",
"repourl": "http://github.com/blackberry/Samples-for-Java",
"tags": [ "java", "client", "analytics", "bbos" ]
},
"Analytics(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to quickly capture and review analytics data",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/Analytics",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bbos", "extension", "analytics", "ext-bbos" ]
},
"Ant Build Script": {
"desc": "Build Script for WebWorks applications using Ant, with support for Linting and all WebWorks Packagers (BBOS, Tablet, BB10)",
"url": "https://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/Ant-Build-Script",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Community-Samples",
"tags": [ "html5", "script", "tool", "bbos", "bb10", "tablet" ]
},
"AudioControl": {
"desc": "Determine audio control settings",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/AudioControl",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "audio" ]
},
"AudioLoopBackSample": {
"desc": "Demonstrates how to record and playback audio simultaneously (Full Duplex) using the Audio Library APIs as part of the BlackBerry 10 Native SDK",
"url": "https://github.com/Core-Native-Community-Samples/tree/master/AudioLoopBackSample",
"repo": "Core-Native-Community-Samples",
"repourl": "https://github.com/blackberry/Core-Native-Community-Samples",
"tags": [ "native", "client", "bb10", "asound", "audio", "record", "playback", "voip" ]
},
"AudioLoopBackSampleToFile": {
"desc": "Demonstrates how to record and playback audio simultaneously and designed to easily plug into a VoIP application for encoding/decoding the audio stream",
"url": "https://github.com/Core-Native-Community-Samples/tree/master/AudioLoopBackSampleToFile",
"repo": "Core-Native-Community-Samples",
"repourl": "https://github.com/blackberry/Core-Native-Community-Samples",
"tags": [ "native", "client", "bb10", "asound", "audio", "record", "playback", "voip" ]
},
"Aura": {
"desc": "Shows how to integrate HTML5, Accelerometer and CSS3 into a grahically compelling app",
"url": "http://github.com/blackberry/WebWorks-Samples/tree/master/Aura",
"repo": "WebWorks-Samples",
"repourl": "http://github.com/blackberry/WebWorks-Samples",
"tags": [ "html5", "client", "webworks", "playbook", "accelerometer", "sensor" ]
},
"Avatar-Booth": {
"desc": "Using getUserMedia functionality in BlackBerry 10 WebWorks",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/Avatar-Booth",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"tags": [ "html5", "webworks", "bb10", "getUserMedia", "camera", "video" ]
},
"bannerads": {
"desc": "Connect to the Advertisement Services and display application banner ads",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/bannerads",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "ads" ]
},
"Backlight(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to control the smartphone backlightcheck",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/Backlight",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bbos", "extension", "backlight", "ext-bbos" ]
},
"Barcode(pb,ext)": {
"desc": "WebWorks PlayBook extension to scan 1D or 2D barcode",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Tablet/Barcode",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "playbook", "barcode", "extension", "ext-pb" ]
},
"Barcode(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to scan 1D or 2D barcode",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/Barcode",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bbos", "extension", "barcode", "ext-bbos" ]
},
"barcodereader": {
"desc": "How to use the camera of the device to scan QR codes and display decoded content",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/barcodereader",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "barcode"]
},
"batterysample": {
"desc": "A battery display app from a radio group and an image",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/batterysample",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "<p>A radio group and an image are used to display and describe the different battery states.</p><p> The QML uses stackLayout</p>",
"tags": [ "native", "client", "bb10", "cascades", "battery", "stacklayout"]
},
"bbm": {
"desc": "Using BBM APIs from WebWorks on the BlackBerry 10",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/bbm",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"note": "Improved version to that from WebWorks-Community-Samples",
"tags": [ "html5", "webworks", "bb10", "bbm" ]
},
"BBMbpsRegistration": {
"desc": "Demonstrates registering with the BlackBerry Messenger Social Platform using the C BlackBerry Platform Service APIs",
"url": "http://github.com/blackberry/Core-Native-Community-Samples/tree/master/BBMbpsRegistration",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "bb10", "bbm", "bps" ]
},
"bbminvitetodownload": {
"desc": "Qt-based sample to register an app with the BlackBerry Messenger Social Platform and invite a contact to download the application",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/bbminvitetodownload",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "bb10", "bbm", "Qt", "cascades" ]
},
"bbmprofile": {
"desc": "Qt-based sample to register an app with the BlackBerry Messenger Social Platform and read and update the user's Profile",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/bbmprofile",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "bb10", "bbm", "Qt", "cascades" ]
},
"bbmprofilebox": {
"desc": "Qt-based sample to create a ProfileBox for the Application shown in the user's BlackBerry Messenger Profile, and how to update it",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/bbmprofilebox",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "bb10", "bbm", "Qt", "cascades" ]
},
"bbmregistration": {
"desc": "Qt-based sample to register an app with the BlackBerry Messenger Social Platform",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/bbmregistration",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "bb10", "bbm", "Qt", "cascades" ]
},
"BBMSPUserProfile": {
"desc": "BPS (BlackBerry Platform Services)-based sample to read and update the users's BlackBerry Messenger Profile",
"url": "http://github.com/blackberry/Core-Native-Community-Samples/tree/master/BBMSPUserProfile",
"repo": "Core-Native-Community-Samples",
"repourl": "http://github.com/blackberry/Core-Native-Community-Samples",
"note": "Cascades is used for the UI; we are planning a rewrite but the sample is useful as-is",
"tags": [ "native", "bb10", "bbm", "bps" ]
},
"bbUI-localstorage(many)": {
"desc": "Multiple ways to use localStorage to improve the end-user experience of a WebWorks Application",
"url": "https://github.com/blackberry/WebWorks-Community-Samples/tree/master/bbUI-localStorage",
"repo": "WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/WebWorks-Community-Samples",
"note": "Sample supports BlackBerry Java, BlackBerry PlayBook and BlackBerry 10",
"warning": "BlackBerry 10 Support is still under development",
"tags": [ "html5", "bb10", "playbook", "localstorage", "bbos" ]
},
"BelligerentBlocks": {
"desc": "Simple Game that uses Scoreloop, 2D graphics, Box2D, SQLite3 and other features",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/BelligerentBlocks",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "scoreloop", "graphics", "box2d", "sqlite" ]
},
"bluetoothsppchat": {
"desc": "Auto discoverability of other Bluetooth devices within range and chatting via SPP",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/bluetoothsppchat",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "bb10", "bluetooth", "Qt", "cascades" ]
},
"BoxQuest": {
"desc": "Getting Started Sample for Cocos2d-HTML5",
"url": "http://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/BoxQuest",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Community-Samples",
"warning": "Enabling sound may cause loss of frames on a BlackBerry PlayBook",
"tags": [ "html5", "client", "webworks", "bb10", "cocos2d", "cocos2d-html5" ]
},
"BrickBreaker": {
"desc": "The classic BlackBerry game, reimagined using HTML5 technologies",
"url": "http://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/BrickBreaker",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Community-Samples",
"warning": "Enabling sound may cause loss of frames on a BlackBerry PlayBook",
"tags": [ "html5", "client", "webworks", "bb10", "playbook" ]
},
"bucketlist": {
"desc": "Multi-Select",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/bucketlist",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "<p>How to use the MultiSelectHandler on a list.</p><p>Also shows how to load and save data from a JSON file",
"tags": [ "native", "client", "bb10", "cascades", "multiselecthandler", "json", "list" ]
},
"calendar": {
"desc": "How to implement at simple calendar application",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/calendar",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "pim" ]
},
"callapizza": {
"desc": "Call A Pizza demonstrates how to invoke the phone application with a pre-selected number",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/callapizza",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "phone" ]
},
"CalendarListener(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to receive an Appointment Event Objet",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/CalendarListener",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bbos", "extension", "calendar", "events", "ext-bbos" ]
},
"camera": {
"desc": "Demonstrates the HTML5 Camera API and xhr2 uploading",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/camera",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"note": "Improved version to that from WebWorks-Community-Samples",
"tags": [ "html5", "webworks", "bb10", "camera" ]
},
"CascadesBasicSample": {
"desc": "Demonstrates the use of signal / slot between QML and C++",
"url": "http://github.com/blackberry-core/Cascades-Samples/tree/r9-update-pending/CascadesBasicSample",
"repo": "Cascades-Samples",
"note": "Learning Trail: HelloCascades → CascadesBasicSample → GoodCitizenCascades",
"warning": "Not yet updated to the beta 3 APIs; may move to Cascades-Community-Samples. Temporarily in branch of BlackBerry-core repo",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "cascades", "bb10", "intro", "qml" ]
},
"cascadescookbookcpp": {
"desc": "Cookbook of the various controls in Cascades, written using C++",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/cascadescookbookcpp",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "<p>Also see the companion CascadesCookbookQML",
"tags": [ "native", "client", "bb10", "cascades", "control", "c++" ]
},
"cascadescookbookqml": {
"desc": "Cookbook of the various controls in Cascades, written using QML",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/cascadescookbookqml",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "<p>Also see the companion CascadesCookbookCpp",
"tags": [ "native", "client", "bb10", "cascades", "control", "qml" ]
},
"CascadesOpenGL": {
"desc": "Simple demonstration on how to use OpenGL in a ForeignWindow",
"url": "http://github.com/blackberry-core/Cascades-Samples/tree/r9-update-pending/CascadesOpenGL",
"repo": "Cascades-Samples",
"note": "Learning Trail: HelloCascades → CascadesBasicSample → GoodCitizenCascades",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"warning": "Not yet updated to the beta 3 APIs; may move to Cascades-Community-Samples. Temporarily in branch of BlackBerry-core repo",
"tags": [ "native", "cascades", "bb10", "intro", "foreignwindow", "opengl" ]
},
"circularslider": {
"desc": "How to use CustomControl to create a circular slider that can be used just like any other core control",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/circularslider",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "cascades", "bb10", "qml" ]
},
"Clipboard(pb,ext)": {
"desc": "WebWorks PlayBook extension to access clipboard read/write",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Tablet/Clipboard",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "playbook", "clipboard", "extension", "ext-pb" ]
},
"compass": {
"desc": "How to use QtSensors to implement an electronic compass",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/compass",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "sensor", "magnetometer", "compass" ]
},
"compass(bb10,ext)": {
"desc": "WebWorks BlackBerry 10 extension to access compass information",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/BB10/COMPASS",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bb10", "compass", "extension", "notrim", "ext-bb10" ]
},
"ContextMenu": {
"desc": "WebWorks sample outlining usage of Context Menu APIs for BlackBerry 10. Presented at BlackBerry Jam Americas lab and includes an incomplete and complete version of the code.",
"url": "https://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/contextmenu",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Community-Samples",
"tags": [ "html5", "webworks", "bb10", "context", "menu" ]
},
"cowbell": {
"desc": "Basic Sound Handling",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/cowbell",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "<p>Basic rotation animations, AbsoluteLayout, and OpenAL sound</p><p>And, if you have never seen it, check the SNL sketch on <a href='http://en.wikipedia.org/wiki/More_cowbell'>More Cowbell</a></p>",
"tags": [ "native", "client", "bb10", "cascades", "audio", "openal", "absolutelayout" ]
},
"Channels": {
"desc": "How two different threads can communicate sending events through channels. Uses LocationData as example",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/Channels",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "channels", "location" ]
},
"childBrowser": {
"desc": "Demonstrates how to use the Child Browser in a BlackBerry WebWorks Application",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/childBrowser",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"note": "Improved version to that from WebWorks-Community-Samples",
"tags": [ "html5", "webworks", "bb10", "childbrowser" ]
},
"CSSSample(AIR,bb10)": {
"desc": "How to use CSS to manipulate objects without writing ActionScript code",
"url": "https://github.com/blackberry/Samples-for-AIR/tree/bb10/CSSSample",
"repo": "Samples-for-AIR",
"repourl": "http://github.com/blackberry/Samples-for-AIR",
"tags": [ "air", "client", "bb10", "css" ]
},
"CubeRotate": {
"desc": "How to create a 3D multi-colored cube using OpenGL ES",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/CubeRotate",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "opengl" ]
},
"CustomContext": {
"desc": "How to set Custom Menus to DOM Elements in a BlackBerry WebWorks Application",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/CustomContext",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"tags": [ "html5", "webworks", "bb10", "dom" ]
},
"DeviceInfo(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to get information about the device",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/DeviceInfo",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bbos", "extension", "deviceinfo", "ext-bbos" ]
},
"Dialog": {
"desc": "How to display a dialog using the dialog service",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/Dialog",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "dialog" ]
},
"dialogs": {
"desc": "Demonstrates what Dialog Classes are provided by Cascades, and how to configure and use them",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/dialogs",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "dialog" ]
},
"DialogSample": {
"desc": "Display different types of dialogs: alert, prompt, login, file browsers, and also context menu. Display and retrieve data.",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/DialogSample",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "cascades", "bb10", "dialog" ]
},
"dictaphone": {
"desc": "How to record and play back audio data using Cascades",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/dictaphone",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "audio" ]
},
"DojoAppDetails(bbos)": {
"desc": "Simple app to show usage of Dojo toolkit and blackberry.app API",
"url": "http://github.com/blackberry/WebWorks-Community-Samples/tree/master/DojoAppDetails",
"repo": "WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/WebWorks-Community-Samples",
"note": "Also see the BB10 version",
"tags": [ "html5", "client", "webworks", "dojo", "bbos"]
},
"DojoAppDetails(bb10)": {
"desc": "Simple app to show usage of Dojo toolkit and blackberry.app API - Version for BlackBerry 10",
"url": "http://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/DojoAppDetails",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Community-Samples",
"note": "Also see the version for BBOS",
"tags": [ "html5", "client", "webworks", "dojo", "bb10"]
},
"EmailListener(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to receive a Event Object when email is received",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/EmailListener",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bbos", "extension", "email", "events", "ext-bbos" ]
},
"Enyo-1.0-StyleMatters": {
"desc": "This example shows how to build the Enyo 1.0 sample application Style Matters as a BlackBerry WebWorks application.",
"url": "https://github.com/blackberry/WebWorks-Community-Samples/tree/master/Enyo-1.0-StyleMatters",
"repo": "WebWorks-Community-Samples",
"repourl": "https://github.com/blackberry/WebWorks-Community-Samples",
"tags": [ "html5", "client", "playbook", "enyo", "webworks"]
},
"Enyo-2.0-BB10-WebWorks": {
"desc": "This example shows how to build an application with Enyo 2.0 and include native functionality with BlackBerry WebWorks extensions.",
"url": "https://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/Enyo-2.0-BB10-WebWorks",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "https://github.com/blackberry/BB10-WebWorks-Community-Samples",
"tags": [ "html5", "client", "bb10", "enyo", "webworks"]
},
"Enyo-2.0-OnyxSampler": {
"desc": "This example shows how to build the Enyo 2.0 sample application Onyx Sampler as a BlackBerry WebWorks application.",
"url": "https://github.com/blackberry/WebWorks-Community-Samples/tree/master/Enyo-2.0-OnyxSampler",
"repo": "WebWorks-Community-Samples",
"repourl": "https://github.com/blackberry/WebWorks-Community-Samples",
"tags": [ "html5", "client", "playbook", "enyo", "webworks"]
},
"Enyo-2.0-WebWorksExtensions": {
"desc": "This example shows how to build an application with Enyo 2.0 and include native functionality with BlackBerry WebWorks extensions.",
"url": "https://github.com/blackberry/WebWorks-Community-Samples/tree/master/Enyo-2.0-WebWorksExtensions",
"repo": "WebWorks-Community-Samples",
"repourl": "https://github.com/blackberry/WebWorks-Community-Samples",
"tags": [ "html5", "client", "playbook", "enyo", "webworks"]
},
"FaceBook-OAuth-2": {
"desc": "Integrate Facebook and the OAuth 2.0 protocol into a BlackBerry WebWorks application for BlackBerry 10",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/FaceBook-OAuth-2",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"note": "Also see the <a href='https://github.com/blackberry/bb-cascades-oauth'>bb-cascades-oauth</a> repo",
"tags": [ "native", "facebook", "bb10", "oauth", "facebook" ]
},
"FallingBlocks": {
"desc": "Shows colored blocks falling on screen",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/FallingBlocks",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "accelerometer", "sensor" ]
},
"FileDownloader(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to download files from a server",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/FileDownloader",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bbos", "extension", "download", "ext-bbos" ]
},
"filepicker": {
"desc": "How to use the FilePicker class",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/filepicker",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "file", "picker" ]
},
"FilePicker(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to prompt your user to browse to a file",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/FilePicker",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bbos", "extension", "file", "picker", "ext-bbos" ]
},
"FileUploader(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to upload files to a server",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/FileUploader",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bbos", "extension", "upload", "file", "ext-bbos" ]
},
"filtereddatamodel": {
"desc": "How to use a custom DataModel to dynamically filter the data displayed by a ListView",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/filtereddatamodel",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "cascades", "bb10", "list" ]
},
"FileTransfer": {
"desc": "Sample applications that demonstrate how to use the blackberry.io and blackberry.io.filetransfer APIs",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/fileTransfer",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"tags": [ "html5", "client", "playbook", "bb10", "webworks", "filetransfer", "file" ]
},
"Foursquare-OAuth-2": {
"desc": "Integrate Foursquare and the OAuth 2.0 protocol into a BlackBerry WebWorks application for BlackBerry 10",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/Foursquare-OAuth-2",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"note": "Also see the <a href='https://github.com/blackberry/bb-cascades-oauth'>bb-cascades-oauth</a> repo",
"tags": [ "native", "facebook", "bb10", "oauth", "foursquare" ]
},
"FunWithSensors": {
"desc": "How to activate and listen to the sensors in the device",
"url": "http://github.com/blackberry-core/Cascades-Samples/tree/r9-update-pending/FunWithSensors",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"warning": "Not yet updated to the beta 3 APIs; may move to Cascades-Community-Samples. Temporarily in branch of BlackBerry-core repo",
"tags": [ "native", "cascades", "bb10", "sensor", "temperature", "light", "magnetometer", "accelerometer", "gyroscope" ]
},
"Gamepad": {
"desc": "Demonstrates how to handle gamepad and joystick events. It can handle two connected game controllers at once",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/Gamepad",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"tags": [ "native", "client", "bb10", "gaming" ]
},
"GeoLocation": {
"desc": "Display current location data",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/Geolocation",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "location" ]
},
"Gesture": {
"desc": "How to handle gestures on the screen",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/Gesture",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "touch", "gesture" ]
},
"GLES11Template": {
"desc": "Template showing how to set up the BPS infrastructure and OpenGL ES 1.1",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/GLES11Template",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"warning": "Verify my interpretattion about 1.1",
"tags": [ "native", "client", "bb10", "playbook", "bps", "opengl", "libscreen" ]
},
"GLES20Template": {
"desc": "Template showing how to set up the BPS infrastructure and OpenGL ES 2.0",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/GLES11Template",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"warning": "Verify my interpretattion about 1.1",
"tags": [ "native", "client", "bb10", "playbook", "bps", "opengl", "libscreen" ]
},
"GlobalEvent(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to listen for Global Events (given a GUID)",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/GlobalEvent",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bbos", "extension", "events","ext-bbos" ]
},
"GoodCitizen": {
"desc": "Introduction to a number of common development practices",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/GoodCitizen",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>Showcases lighting, textures, orientation and touch events, swipe downs, saving application state, clean termination, etc</p><p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "accelerometer", "image", "lighting", "opengl", "textures", "sensor" ]
},
"GoodCitizenCascades": {
"desc": "The Cascades version of the NDK Sample App named 'Good Citizen'",
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/GoodCitizenCascades",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"note": "<p>This sample features best practices on how to properly structure the Open GL code and link it with Cascades.</p><p>The sample shows how to leverage Actions and the use of NavigatorPanes for multiple panels, as well as how to process touch events and use them to control a 3D scene rendered in OpenGL, using Qt objects and JavaScript</p>",
"tags": [ "native", "cascades", "client", "opengl", "bb10" ]
},
"HelloCamera": {
"desc": "Sets up a Cascades foreign window and connects a Camera Viewfinder to it",
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/HelloCamera",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"note": "<p>HelloCamera is a slender little app showing how to set up a Cascades foreign window and connect the Camera viewfinder to it.</p><p>It has functionality for starting and stopping the camera service, changing between cameras and take photos that saves to the camera album</p>",
"tags": [ "native", "cascades", "client", "camera", "bb10" ]
},
"hellocascades": {
"desc": "Very basic Hello World in Cascades",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/hellocascades",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "<p>very basic example</p>",
"warning": "from johan",
"tags": [ "native", "cascades", "client", "bb10" ]
},
"helloforeignwindow": {
"desc": "Introduction to using the ForeignWindow API",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/helloforeignwindow",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"warning": "from johan",
"tags": [ "native", "cascades", "client", "bb10", "foreignwindow" ]
},
"HelloOggVorbis": {
"desc": "Basic Ogg file handling using OpenAL and Ogg Vorbis" ,
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/HelloOggVorbis",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"note": "<p>This sample is extended from the original cascades cowbell sample in the <a href='https://github.com/blackberry/Cascades-Samples'>Cascades-Samples</a> repository.</p><p>The objective of this sample is to serve as a tutorial for setting up OpenAL and OggVorbis SDK to play compressed .ogg vorbis sound format. The sample also shows how to decode the regular .wav files without ALUT</p>",
"tags": [ "native", "audio", "cascades", "bb10", "oggvorbis" ]
},
"HelloVideoCamera": {
"desc": "A minimalist Cascades-based video camera app",
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/HelloVideoCamera",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"note": "<p>HelloVideoCamera is a minimalist Cascades-based video camera app. It illustrates how to set up a Cascades foreign window and connect the Camera viewfinder to it.</p><p>HelloVideoCamera has functionality for starting and sotpping the camera, changing between front and back cameras, and recording video files which are saved to the camera roll.</p>",
"tags": [ "native", "cascades", "client", "camera", "bb10", "video" ]
},
"HelloWorld": {
"desc": "Simple WebWorks application; uses Location API",
"url": "http://github.com/blackberry/WebWorks-Samples/tree/master/HelloWorld",
"repo": "WebWorks-Samples",
"repourl": "http://github.com/blackberry/WebWorks-Samples",
"tags": [ "html5", "client", "webworks", "playbook", "location" ]
},
"HelloWorldConsole": {
"desc": "Print a string",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/HelloWorldConsole",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook" ]
},
"HelloWorldDisplay": {
"desc": "Print customized text",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/HelloWorldDisplay",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "text", "font" ]
},
"HttpProxy": {
"desc": "Retrieve the proxy information of the device, and query a URL",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/HttpProxy",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "http" ]
},
"httptest": {
"desc": "How to use HTTP Post and Get to communicate with a remote server",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/httptest",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"warning": "from johan",
"tags": [ "native", "cascades", "bb10", "rest", "xml", "http" ]
},
"imageloader": {
"desc": "Shows the proper method of breaking a network call into a separate class and have the interface bring back the response into the UI",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/imageloader",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "cascades", "bb10", "threads" ]
},
"imagerotation": {
"desc": "How to use QtSensors to show an image on the screen upright",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/imagerotation",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "sensor", "accelerometer" ]
},
"ImageSaver(AIR,ext,bb10)": {
"desc": "A AIR Native Extension that will save a BitmapData instance to a file on the disk via native C code using libimg",
"url": "http://github.com/blackberry/Community-APIs-for-AIR/tree/master/BlackBerry10/ImageSaver",
"repo": "Community-APIs-for-AIR",
"repourl": "http://github.com/blackberry/Community-APIs-for-AIR",
"note": "See the (AIR,ext,pb) entry",
"tags": [ "air", "client", "bb10", "extension", "ext-air", "media" ]
},
"Internationalization": {
"desc": "How to use the built-in Internationalization engine to deliver your app in multiple languages",
"url": "http://github.com/blackberry-core/Cascades-Samples/tree/r9-update-pending/Internationalization",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"warning": "Not yet updated to the beta 3 APIs; may move to Cascades-Community-Samples. Temporarily in branch of BlackBerry-core repo",
"tags": [ "native", "cascades", "bb10", "i18n" ]
},
"invokable": {
"desc": "How to use the blackberry.invoke API for WebWorks; invocable side",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/invoke/invokable",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"note": "Also see invoker",
"warning": "The name of the sample is mispelled",
"tags": [ "html5", "client", "playbook", "bb10", "webworks", "invocation"]
},
"invoker": {
"desc": "How to use the blackberry.invoke API for WebWorks; invoking side",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/invoke/invoker",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"note": "Also see invokable",
"tags": [ "html5", "client", "playbook", "bb10", "webworks", "invocation"]
},
"invoke-card": {
"desc": "Shows how to invoke several cards from a WebWorks Application (camera, filePicker, pictureViewer, custom card). Also shows how to expose your app as a card",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/invoke-card",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"note": "Improved version to that from WebWorks-Community-Samples",
"tags": [ "html5", "webworks", "bb10", "camera", "filepicker", "pictureviewer", "card", "invocation" ]
},
"invokeclient": {
"desc": "A simple client to invoke target apps in the Invocation Framework",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/invokeclient",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "<p>This app acts as a client that can invoke target apps registered with the Invocation Framework.</p><p>Easiest way to take it for a spin is to also download Invoke Target sample application</p>",
"warning": "This seems to be the same sample as in Cascades-Community-Samples. Will be removed from there afer confirming",
"tags": [ "native", "client", "invocation", "bb10", "cascades" ]
},
"invoketarget": {
"desc": "This app acts as a Target that can be invoked by InvokeClient",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/invoketarget",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "<p>This app acts as a Target that can be invoked by InvokeClient</p>",
"warning": "This seems to be the same sample as in Cascades-Community-Samples. Will be removed from there afer confirming",
"tags": [ "native", "client", "invocation", "bb10", "cascades" ]
},
"JDE-Samples.client": {
"desc": "A collection of samples included in the BlackBerry JDE. There is one branch per JDE release",
"url": "https://github.com/blackberry/JDE-Samples/tree/master/com/rim/samples/device",
"repo": "JDE-Samples",
"repourl": "http://github.com/blackberry/JDE-Samples",
"note": "<p>For 7.1, there are 71 'device' samples</p>",
"collection": "71",
"tags": [ "java", "client", "bbos" ]
},
"JDE-Samples.server": {
"desc": "A collection of samples included in the BlackBerry JDE. There is one branch per JDE release",
"url": "https://github.com/blackberry/JDE-Samples/tree/master/com/rim/samples/server",
"repo": "JDE-Samples",
"repourl": "http://github.com/blackberry/JDE-Samples",
"note": "<p>For 7.1, there are 10 'server' samples, as wel as several desktop samples</p>",
"collection": "10",
"tags": [ "java", "server", "bbos" ]
},
"JDE-Samples.desktop": {
"desc": "A collection of samples included in the BlackBerry JDE. There is one branch per JDE release",
"url": "https://github.com/blackberry/JDE-Samples/tree/master/desktop",
"repo": "JDE-Samples",
"repourl": "http://github.com/blackberry/JDE-Samples",
"note": "<p>Companion to the client and server samples</p>",
"tags": [ "c++", "desktop" ]
},
"jsonreadwrite": {
"desc": "Shows how to read JSON objects from the file system, modify them and store them back",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/jsonreadwrite",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "json", "storage" ]
},
"kakel": {
"desc": "Dynamic UI",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/kakel",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "<p>Some decorative and interaction elements in QML, while actual game board and logics is in C++</p>",
"tags": [ "native", "client", "bb10", "cascades", "qml" ]
},
"Keyboard": {
"desc": "How to handle key presses on the virtual keyboard",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/Keyboard",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "keyboard"]
},
"KitchenSink": {
"desc": "Demonstrates the multitude of capabilities and functionality that can be built into a BlackBerry WebWorks APps",
"url": "http://github.com/blackberry/WebWorks-Community-Samples/tree/master/kitchenSink",
"repo": "WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/WebWorks-Community-Samples",
"tags": [ "html5", "client", "webworks", "playbook", "bbos" ]
},
"KISSBBM": {
"desc": "A very simple BBM Integration Sample App for BlackBerry 10 WebWorks",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/KISS%20BBM%20Integration",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"note": "Improved version to that from WebWorks-Community-Samples",
"tags": [ "html5", "webworks", "bb10", "bbm" ]
},
"led": {
"desc": "The LED API",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/led",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "Uses the LDE API, overlays images, creates custom components",
"tags": [ "native", "client", "bb10", "cascades", "led" ]
},
"LED(bb10,ext)": {
"desc": "WebWorks BB10 extension to control the LED",
"url": "https://github.com/blackberry/WebWorks-Community-APIs/tree/master/BB10/LED",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bb10", "extension", "led", "ext-bb10" ]
},
"lightningcrossfadecpp": {
"desc": "Lightning Crossfade for Text and Image, usinc C++",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/lightningcrossfadecpp",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "<p>Add images to a UI, use layouts and add a slider attached to it.</p><p>Do this in C++</p>",
"tags": [ "native", "client", "bb10", "cascades", "c++", "events" ]
},
"lightningcrossfadeqml": {
"desc": "Lightning Crossfade for Text and Image, usinc QML",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/lightningcrossfadecpp",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "<p>Add images to a UI, use layouts and add a slider attached to it.</p><p>Do this in QML</p>",
"tags": [ "native", "client", "bb10", "cascades", "qml", "events" ]
},
"LLCPDemo": {
"desc": "Shows how to transfer data between two NFC-enabled BlackBerry Smartphones using the NFC Logical Link Control Protocol",
"url": "http://github.com/blackberry/Samples-for-Java/tree/master/NFC/LLCPDemo",
"repo": "Samples-for-Java",
"repourl": "http://github.com/blackberry/Samples-for-Java",
"note": "<p>For Java-based Smartphones. Requires BB7.1</p><p>Also see the <a href='NFC.html'>NFC</a> Wiki page</p>",
"tags": [ "java", "client", "bbos", "nfc" ]
},
"loader": {
"desc": "Load and Unload Controls from the UI at runtime",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/loader",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "<p>How to use QDeclarativeComponent to extend Cascades</p>",
"tags": [ "native", "client", "bb10", "cascades", "qdeclarativecomponent" ]
},
"Locale(pb,ext)": {
"desc": "WebWorks PlayBook extension to retrieve the locale string",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Tablet/Locale",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "playbook", "locale", "extension", "ext-pb" ]
},
"Locale(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to retrieve the locale string",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/Locale",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bbos", "extension", "locale", "ext-bbos" ]
},
"LocaleSample": {
"desc": "How to retrieve locale information from the device",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/LocaleSample",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"note": "<p>There are several branches: 'ndk1' is for PlayBook 1, 'ndk2' is for PlayBook 2, 'master' is for PlayBook 2 and 'next' is for BlackBerry 10</p>",
"tags": [ "native", "client", "bb10", "playbook", "locale" ]
},
"locationdiagnostics": {
"desc": "Demonstrates the C++ Location APIs in Cascades" ,
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/locationdiagnostics",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "location", "bb10", "cascades", "map" ]
},
"LocationPicker(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to select a point on the map and get latitue and longitude",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/LocationPicker",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bbos", "extension", "location", "picker", "ext-bbos" ]
},
"LogExceptionSample": {
"desc": "How to handle an exception, log it, and display meaningful data back to the user",
"url": "http://github.com/blackberry-core/Cascades-Samples/tree/r9-update-pending/LogExceptionSample",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"warning": "Not yet updated to the beta 3 APIs; may move to Cascades-Community-Samples. Temporarily in branch of BlackBerry-core repo",
"tags": [ "native", "cascades", "bb10", "logging" ]
},
"MailAttachment(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to send an email with an attachment",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/MailAttachment",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bbos", "extension", "mail", "ext-bbos" ]
},
"Maps": {
"desc": "How to integrate several mapping services into a BlackBerry WebWorks application",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/Maps",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"note": "Improved version to that from WebWorks-Community-Samples",
"tags": [ "html5", "webworks", "bb10", "map" ]
},
"mapview": {
"desc": "How to display a location on a map control",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/mapview",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "map" ]
},
"MediaCards": {
"desc": "WebWorks sample outlining usage of HTML5 media input and Card Invocation APIs for BlackBerry 10. Presented at BlackBerry Jam Americas lab and includes an incomplete and complete version of the code.",
"url": "https://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/mediacards",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Community-Samples",
"tags": [ "html5", "webworks", "bb10", "media", "invocation", "camera", "video", "picture", "file", "system" ]
},
"messages": {
"desc": "How to implement a simple messenger application",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/messages",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "pim" ]
},
"MessageList(bbos,ext)": {
"desc": "WebWorks Java-based Smartphone extension to add items to the main mesage list",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/Smartphone/MessageList",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"warning": "work in progress",
"tags": [ "html5", "client", "bbos", "extension", "message", "ext-bbos" ]
},
"NativeAndOpenGLWindows": {
"desc": "Combines rendering to Native and OpenGL Windows at the same time",
"url": "https://github.com/blackberry/Core-Native-Community-Samples/tree/master/NativeAndOpenGLWindows",
"repo": "Core-Native-Community-Samples",
"repourl": "http://github.com/blackberry/Core-Native-Community-Samples",
"tags": [ "native", "client", "bb10", "OpenGL", "notrim" ]
},
"NativeCamera": {
"desc": "A simple picture-taking app in C/C++ without Cascades" ,
"url": "https://github.com/blackberry/Core-Native-Community-Samples/tree/master/NativeCamera",
"repo": "Core-Native-Community-Samples",
"repourl": "http://github.com/blackberry/Core-Native-Community-Samples",
"note": "The sample shows:<ul><li>how to access the camera</li><li>how to start the viewfinder and acquire the corresponding viewfinder window handle</li><li>how to take a photo (non-blocking)</li><li>how to save a photo to the camera roll</li><li>how to pass argument data between the main thread and your callback threads</li><li>how to signal your main thread using user-defined bps events from your callback thread</li></ul>",
"tags": [ "native", "client", "camera", "bb10" ]
},
"ndefTagReading": {
"desc": "This library allows WebWorks to handle tag reading in pure JavaScript. No extensions are required - tags are delivered through the Invocation Framework.",
"url": "https://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/nfc/ndefTagReading",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Community-Samples",
"tags": [ "html5", "webworks", "bb10", "nfc", "invocation" ]
},
"NetworkStatus": {
"desc": "How to retrieve the network status of the device",