forked from blackberry/Catalogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
All_Samples.json
2459 lines (2459 loc) · 150 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" ]
},
"Accelerometer-Fight": {
"desc": "How to use the accelerometer in BlackBerry WebWorks",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/Accelerometer-Fight",
"repo": "BB10-WebWorks-Samples",
"repourl": "https://github.com/blackberry/BB10-WebWorks-Samples",
"tags": [ "html5", "webworks", "bb10", "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" ]
},
"AdSample": {
"desc": "How to incorporate advertisements in your native application",
"url": "https://github.com/blackberry/NDK-Samples/tree/master/AdSample",
"repo": "NDK-Samples",
"repourl": "http://github.com/blackberry/NDK-Samples",
"tags": [ "native", "client", "ads" ]
},
"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" ]
},
"AudioPlayer": {
"desc": "Allows you to pick your pre-packaged audio files from a dropdown list",
"url": "http://github.com/Cascades-Community-Samples/tree/master/AudioPlayer",
"repo": "Cascades-Community-Samples",
"repourl": "https://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "client", "bb10", "audio", "playback", "cascades" ]
},
"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" ]
},
"barcodeinvoker": {
"desc": "A page that shows how to invoke the Barcode Scanner card",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/barcodeinvoker",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "barcode", "invocation"]
},
"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",
"note": "Invokes scanner library through Cascades API",
"tags": [ "native", "client", "bb10", "cascades", "barcode"]
},
"barcodescanner": {
"desc": "A Barcode Scanner card",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/barcodescanner",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "Invokes ZXing directly",
"tags": [ "native", "client", "bb10", "cascades", "barcode", "invocation", "zxing"]
},
"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"]
},
"BB10-Bootstrap": {
"desc": "Demonstrates how to build a BlackBerry WebWorks app with PhoneGap, which uses Apache Cordova",
"url": "https://github.com/blackberry/Cordova-Samples/tree/master/BB10-Bootstrap",
"repo": "Cordova-Samples",
"repourl": "http://github.com/blackberry/Cordova-Samples",
"note": "Adobe Phonegap is based on Apache Cordova",
"tags": [ "html5", "webworks", "bb10", "phonegap", "cordova" ]
},
"BB10-Look-And-Feel": {
"desc": "demonstrates how to achieve a BlackBerry 10 'Looks and Feel' from an HTML5 app using PhoneGap",
"url": "https://github.com/blackberry/Cordova-Samples/tree/master/BB10-Look-And-Feel",
"repo": "Cordova-Samples",
"repourl": "http://github.com/blackberry/Cordova-Samples",
"note": "Adobe Phonegap is based on Apache Cordova",
"tags": [ "html5", "webworks", "bb10", "phonegap", "cordova" ]
},
"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" ]
},
"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" ]
},
"_comment_ - 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" ]
},
"Calorie-Counter": {
"desc": "An example of adding an event to today's date in the Calendar",
"url": "https://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/Calorie-Counter",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Community-Samples",
"tags": [ "html5", "webworks", "bb10", "calendar" ]
},
"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" ]
},
"canvasToFilesystem": {
"desc": "Sample implementation of saving <canvas> contents to the BlackBerry 10 filesystem.",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/canvasToFilesystem",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"tags": [ "html5", "webworks", "bb10", "filesystem", "canvas" ]
},
"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" ]
},
"custommapview": {
"desc": "Displays a city map overlayed with three sliders and shows how to put an overlay on another control on top of that",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/custommapview",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "map" ]
},
"databasecrud": {
"desc": "How to create, read, update and delete records from a database table using QSqlDatabase",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/databasecrud",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "storage", "sqlite" ]
},
"databasecreation": {
"desc": "How to create a database, table and table records using SqlDataAccess",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/databasecreation",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "storage", "sqlite" ]
},
"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"]
},
"eula": {
"desc": "This sample provides an easy to use EULA framework that leverages UTF-8 source files and present the appropriate EULA to the end user based on device language.",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/eula",
"repo": "BB10-WebWorks-Samples",
"repourl": "https://github.com/blackberry/BB10-WebWorks-Samples",
"tags": [ "html5", "eula", "bb10", "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" ]
},
"FilePickerAndCanvas" : {
"desc": "This is a sample designed to show how to actually use the File Picker and images. It contains a custom written memoizing 'extention' for blackberry.io which takes a file name and returns the base64 encoded values of the file for use in an image.",
"url": "https://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/FilePickerAndCanvas",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "https://github.com/blackberry/BB10-WebWorks-Community-Samples",
"tags": [ "html5", "WebWorks", "bb10", "file", "canvas", "image" ]
},
"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-Cards": {
"desc": "How to integrate the new Foursquare SDK into a BlackBerry WebWorks application for BlackBerry 10",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/Foursquare-Cards",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"tags": [ "html5", "foursquare", "bb10", "invoke" ]
},
"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" ]
},
"Geocoding(AIR,ext,bb10)": {
"desc": "An AIR Native Extension using the geo_search library from the NDK to provide geo-coding and reverse geo-coding capabilities",
"url": "http://github.com/blackberry/Community-APIs-for-AIR/tree/master/BlackBerry10/Geocoding",
"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", "location" ]
},
"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" ]
},
"Gestures": {
"desc": "How to use gestures in WebWorks with the Hammer.js library",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/gestures",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"tags": [ "html5", "webworks", "bb10", "gestures" ]
},
"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" ]
},
"HelloSceneCover": {
"desc": "Simple application cover code",
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/HelloSceneCover",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"note": "<p>HelloSceneCover is a minimalist Cascades-based app. It illustrates how to set up an Application Cover (viewable in Active Frames) for when the application is minimised.</p>",
"tags": [ "native", "cascades", "client", "active frames", "bb10", "cover" ]
},
"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" ]
},
"HexClock": {
"desc": "Dynamically updating hexadecimal color bbUI sample",
"url": "https://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/HexClock",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Community-Samples",
"tags": [ "html5", "webworks", "bb10", "bbUI" ]
},
"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>",