This repository has been archived by the owner on Sep 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
All_Samples.json
executable file
·3292 lines (3291 loc) · 208 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", "no-whitespace-in-tags", "only-lowercase-in-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" ]
},
"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" ]
},
"advertising": {
"desc": "Community sample implementation of Mocean Ad service in a WebWorks application.",
"url": "https://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/advertising",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Community-Samples",
"tags": [ "webworks", "advertising", "mocean", "community" ]
},
"AESCryptoDemo": {
"desc": "Shows how to use the Certicom library and contexts - in particular the AES cipher - from Cascades/Qt",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/AESCryptoDemo",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "crypto", "aes", "certicom", "bb10", "qt", "cascades" ]
},
"AirHockey": {
"desc": "Weekend hackathon project - an air hockey playing robot using a robotic arm, an Arduino and a Z30.",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/airHockey",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "camera", "airhockey", "arduino", "bluetooth", "bb10", "qt", "cascades" ]
},
"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": "Ant build Script for WebWorks applications, 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" ]
},
"AnnualLeave": {
"desc": "A Sample Enterprise Annual Leave / Vacation application (BETA)",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/AnnualLeave",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"note": "<p>The purpose of this application is to add some real code to the theory that we outlined in these blog articles and videos for a robust enterprise applicatin architecture. If you haven't read or listened to these then now might be a good time. They explain the core architecture upon which this BETA sample application is based. <a href='http://devblog.blackberry.com/2014/02/a-flexible-architecture-for-enterprise-mobile-applications-part-1/'>A Flexible Architecture for Enterprise Mobile Applications? - Part 1</a>, <a href='http://devblog.blackberry.com/2014/02/a-flexible-architecture-for-enterprise-mobile-applications-part-2/'>A Flexible Architecture for Enterprise Mobile Applications? - Part 2</a>, <a href='http://devblog.blackberry.com/2014/02/a-flexible-project-structure-for-enterprise-mobile-applications-part-three/'>A Flexible Project Structure for Enterprise Mobile Applications? - Part 3</a>, <a href='http://www.youtube.com/watch?v=UYhbQBp72sQ'>VIDEO: A Flexible Architecture for Enterprise Mobile Applications?</a>, <a href='http://www.youtube.com/watch?v=e37vUIv8hMw'>VIDEO: A Flexible Project Structure for Enterprise Mobile Applications?</a></p>",
"tags": [ "native", "cascades", "client", "enterprise", "bb10" ]
},
"Ant Build Script (Cordova)": {
"desc": "Ant build Script for WebWorks applications using Apache Cordova/PhoneGap for BlackBerry 10 devices",
"url": "https://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/Ant-Cordova-Build-Script",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Community-Samples",
"tags": [ "html5", "script", "tool", "bb10", "webworks", "cordova", "phonegap" ]
},
"appshot": {
"desc": "Programmatically take a screen shot of your Cascades application and open it in the pictures card",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/appshot",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "camera", "screen" ]
},
"App URL": {
"desc": "Use App URL to configure an application that has been deployed on BlacKBerry 10",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/app-url",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "bb10", "cascades", "appurl" ]
},
"AudioAccessory": {
"desc": "Demonstrates how to use the BlackBerry 10 audio jack to transfer data",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/AudioAccessory",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"note": "<p>The purpose of this application is to demonstrate how to use selected BlackBerry 10 Audio APIs in the context of a practical real-world use case which examines how to interface to an external device that is connected via the BlackBerry 10 Audio Jack. This mechanism for connecting accessories is used by a number of vendors in the marketplace as an alternative to Bluetooth Low Energy, WiFi or NFC and this example examines the points you need to consider when taking this approach.</p>",
"tags": [ "native", "cascades", "client", "audio", "bb10" ]
},
"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/blackberry/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/blackberry/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" ]
},
"AudioManagerEvents": {
"desc": "Demonstrates how to work with audio manager events with a simple example that detects when something is plugged into or removed from the headphone jack",
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/AudioManagerEvents",
"repo": "Cascades-Community-Samples",
"repourl": "https://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "client", "bb10", "audio", "events", "headphone", "cascades" ]
},
"AudioPlayer": {
"desc": "Allows you to pick your pre-packaged audio files from a dropdown list",
"url": "http://github.com/blackberry/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" ]
},
"AutomotiveMqttConcept": {
"desc": "A demonstration of a concept involving the enterprise, a fleet of vehicles and the IoT protocol MQTT",
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/AutomotiveMqttConcept",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"note": "<p>The purpose of this application is to demonstrate an idea about how data from drivers and vehicles could be collected from sensors via an in-vehicle BlackBerry 10 mobile computer, and sent to the enterprise systems 'in the cloud' for analysis and exploitation.</p>",
"tags": [ "native", "cascades", "client", "bluetooth", "bb10", "mqtt" ]
},
"AutoTrak": {
"desc": "Sample BlackBerry 10 Native insurance mobile application to review submitted insurance claims by individuals. Additional project details are contained in the project read me. https://github.com/blackberry/BES10-Cascades/tree/master/AutoTrak/README.md",
"url": "https://github.com/blackberry/BES10-Cascades/tree/master/AutoTrak",
"repo": "BES10-Cascades",
"repourl": "https://github.com/blackberry/BES10-Cascades",
"tags": [ "enterprise", "client", "bb10", "autotrak", "cascades", "native" ]
},
"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" ]
},
"BBWorldCarousel": {
"desc": "An image gallery example that tries to imitate the Blackberry World carousel",
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/BBWorldCarousel",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "cascades", "client", "carousel", "bb10", "images", "ui" ]
},
"BestCamera": {
"desc": "A best-practices camera app using the native C camera API and a Cascades UI",
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/BestCamera",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "cascades", "client", "camera", "bb10" ]
},
"BtDeviceInfo": {
"desc": "Demonstrates how to connect to and use the Bluetooth GATT Device Information Service on any Bluetooth Smart / Low Energy device that supports it.",
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/BtDeviceInfo",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "cascades", "bluetooth", "bb10" ]
},
"Built-for-BlackBerry-Boilerplate(bbUI.js 0.9)": {
"desc": "A boilerplate of a Built For BlackBerry app using bbUI.js v0.9x",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/BfB-Boilerplate-bbUI.js-0.9x",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"tags": [ "boilerplate", "html5", "webworks", "bb10", "bfb", "built for blackberry" ]
},
"Built-for-BlackBerry-Boilerplate-10.2(Cascades)": {
"desc": "A boilerplate of a Built For BlackBerry app in Cascades",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/BfB-Boilerplate-10.2",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "boilerplate", "cascades", "bb10", "bfb", "built for blackberry" ]
},
"Built-for-BlackBerry-Showcase(Cascades)": {
"desc": "A showcase (full featured) sample of a Built For BlackBerry app in Cascades",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/BfB-Showcase",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "cascades", "bb10", "bfb", "built for blackberry" ]
},
"Built-For-BlackBerry(Apache Cordova)": {
"desc": "A boilerplate of a Built For BlackBerry app using Apache Cordova.",
"url": "https://github.com/blackberry/Cordova-Samples/tree/master/Built-For-BlackBerry",
"repo": "Cordova-Samples",
"repourl": "http://github.com/blackberry/Cordova-Samples",
"tags": [ "html5", "webworks", "cordova", "phonegap", "bb10", "bfb", "built for blackberry" ]
},
"custombarcodeinvoker": {
"desc": "A page that shows how to invoke the Barcode Scanner card",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/custombarcodeinvoker",
"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"]
},
"custombarcodescanner": {
"desc": "A Barcode Scanner card",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/custombarcodescanner",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"note": "Invokes ZXing directly",
"tags": [ "native", "client", "bb10", "cascades", "barcode", "invocation", "zxing"]
},
"BarcodeScanner": {
"desc": "BB10 WebWorks Extension for scanning Barcodes",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/BB10/BarcodeScanner",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bb10", "zxing", "barcode", "qrcode", "extension", "ext-bb10" ]
},
"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" ]
},
"BBBBBBrowser": {
"desc": "A minimal browser using a WebView",
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/BBBBBBrowser",
"repo": "Cascades-Community-Samples",
"repourl": "https://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "client", "bb10", "audio", "playback", "cascades", "webview" ]
},
"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" ]
},
"BBM Carousel Sample": {
"desc": "Sample BBM app that invokes available features in the work perimeter",
"url": "https://github.com/blackberry/BES10-Cascades/tree/master/BBM Carousel",
"repo": "BES10-Cascades",
"repourl": "http://github.com/blackberry/BES10-Cascades",
"tags": [ "enterprise", "native", "bbm", "invocation", "bb10", "carousel", "cascades", "bes"]
},
"BBM-Channels": {
"desc": "WebWorks sample for open and posting to BBM Channels",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/BBM-Channels",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"tags": [ "html5", "webworks", "bb10", "bbm", "BBM Channels" ]
},
"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" ]
},
"bbmcontacts": {
"desc": "Qt-based sample to register an app with the BlackBerry Messenger Social Platform and read the user's Contacts",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/bbmcontacts",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "bb10", "bbm", "qt", "cascades" ]
},
"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" ]
},
"BBMbpsUserProfile": {
"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/BBMbpsUserProfile",
"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": {
"desc": "Community Sample showing multiple ways to use localStorage to improve the end user experience of a BlackBerry WebWorks application",
"url": "http://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/bbUI-localStorage",
"repo": "BB10-WebWorks-Community-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Community-Samples",
"tags": [ "html5", "client", "webworks", "bb10", "storage", "bbui" ]
},
"BeanCanCommunicator": {
"desc": "Demonstrates how to use NfcShareManager to send text between two devices using NFC peer to peer mode",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/BeanCanCommunicator",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "client", "nfc", "bb10", "cascades" ]
},
"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" ]
},
"blackberry10(Construct2)": {
"desc": "BlackBerry 10 plugin for Construct 2",
"url": "https://github.com/blackberry/Construct2Plugins/tree/master/blackberry10",
"repo": "Construct2Plugins",
"repourl": "https://github.com/blackberry/Construct2Plugins",
"note": "For Hello World sample showing usage, please refer to the CAPX file at the repository root.",
"tags": [ "html5", "bb10", "construct2", "webworks" ]
},
"BlackBerryBleExplorer": {
"desc": "Bluetooth Low Energy Explorer",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/blackberrybleexplorer",
"repo": "Cascades-Community-Samples",
"repourl": "https://github.com/blackberry/Cascades-Community-Samples",
"note": "<p>The purpose of this application is to demonstrate how to use selected BlackBerry 10 Bluetooth Low Energy APIs to explore the attributes including GATT Services and Characteristics of a Bluetooth Low Energy device.</p>",
"tags": [ "native", "bb10", "bluetooth", "qt", "cascades" ]
},
"bluetoothgatt": {
"desc": "Retrieval of information from Bluetooth devices that offer the low-energy profile.",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/bluetoothgatt",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "bb10", "bluetooth", "qt", "cascades" ]
},
"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" ]
},
"bpstoqml": {
"desc": "Qt-based sample to show how the AbstractBpsEventHandler interface can be extended to receive BPS events without needing to create a separate thread",
"url": "http://github.com/blackberry/Cascades-Samples/tree/master/bpstoqml",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "bb10", "bps", "qt", "cascades" ]
},
"_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" ]
},
"BrowserLaunch": {
"desc": "A simple activity which launches the device browser after clicking a button",
"url": "https://github.com/blackberry/Secure-Work-Space/tree/master/BrowserLaunch",
"repo": "Secure-Work-Space",
"repourl": "https://github.com/blackberry/Secure-Work-Space",
"tags": [ "android", "browser", "sws", "secure work space" ]
},
"BtChickenGuardian": {
"desc": "A Bluetooth Low Energy Proximity Profile application",
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/BtChickenGuardian",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"note": "<p>The purpose of this application is to demonstrate how to develop an application for BlackBerry 10 which works with the Bluetooth Smart (Low Energy) Proximity Profile.</p>",
"tags": [ "native", "cascades", "client", "bluetooth", "bb10" ]
},
"BtHrmPlugin": {
"desc": "A Bluetooth Low Energy Heart Rate Plugin for Unity 3D",
"url": "https://github.com/blackberry/Core-Native-Community-Samples/tree/master/BtHrmPlugin",
"repo": "Core-Native-Community-Samples",
"repourl": "https://github.com/blackberry/Core-Native-Community-Samples",
"note": "<p>The purpose of this application is to demonstrate how to develop a Unity 3D plugin for BlackBerry 10 that works with the standard Heart Rate Service (<a href='http://developer.bluetooth.org/TechnologyOverview/Pages/HRS.aspx'>overview available here</a>) as specified by the Bluetooth SIG enabling it to interwork with any Bluetooth Smart device that implements this profile.</p>",
"tags": [ "native", "gaming", "client", "bluetooth", "bb10" ]
},
"BtLeFindMe": {
"desc": "A Bluetooth Low Energy Lost Keys Finder application",
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/BtLeFindMe",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"note": "<p>The purpose of this application is to demonstrate how to use selected BlackBerry 10 Bluetooth Low Energy APIs in the context of a practical real-world use case.</p><p>The use case examines how to interface to a Bluetooth Low Energy device that will, on demand, issue alerts in the form of audible beeps and flashing LEDs. Think of a key fob that that can be activated from your BlackBerry 10 device to allow it to be found again easily.</p><p>The application uses the standard Find Me Profile (<a href='http://developer.bluetooth.org/TechnologyOverview/Pages/FMP.aspx'>overview available here</a>) as specified by the Bluetooth SIG enabling it to interwork with any Bluetooth Smart device that implements this profile.</p>",
"tags": [ "native", "cascades", "client", "bluetooth", "bb10" ]
},
"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" ]
},
"Cascades-Library-Template": {
"desc": "Template and sample for building Cascades and Qt libraries with momentics and qmake",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/Cascades-Library-Template",
"repo": "Cascades-Community-Samples",
"note": "Based on the BBLive 2013 Build and Packaging Session",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "cascades", "bb10", "qt" ]
},
"CascadesBasicSample": {
"desc": "Demonstrates the use of signal / slot between QML and C++",
"url": "https://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": "https://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(bb10,ext)": {
"desc": "WebWorks BlackBerry 10 extension to access clipboard read/write",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/BB10/Clipboard",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bb10", "clipboard", "extension", "ext-bb10" ]
},
"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" ]
},
"CloudyPics": {
"desc": "How to use the Cascades Camara Component",
"url": "http://github.com/blackberry/Cascades-Community-Samples/tree/master/CloudyPics",
"repo": "Cascades-Community-Samples",
"repourl": "https://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "client", "bb10", "camera", "cascades" ]
},
"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" ]
},
"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" ]
},
"CordovaTemplate": {
"desc": "Template for Apache Cordova plugins on BlackBerry 10",
"url": "https://github.com/blackberry/WebWorks-Community-APIs/tree/master/BB10-Cordova/Template",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bb10", "extension", "template", "cordova", "ext-bb10" ]
},
"CryptoSample": {
"desc": "A simple BlackBerry 10 application that demonstrates how to use iBeacon(TM) technology",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/cryptosample",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"note": "<p>The purpose of this application is to demonstrate some of the simpler aspects of the incredibly powerful BlackBerry 10 Security Builder Cryptography Library. Specifically take a look at:</p><ul><li>Generating a simple random number</li><li>Calculating Hashes (SHA1, SHA256) and HMAC using a predefined key.</li><li>Using RSA</li><ul><li>Creating an RSA public/private key pair</li><li>Creating a self-signed certficate using this pair of keys showing how to select SHA256 as the hash for the RSA certificate signing rather than the default MD5.</li><li>Encrypting plaintext and decrypting the resulting ciphertext using this pair of keys</li></ul></ul><p>It doesn't discuss AES or other general considerations about the Cryptography Libraries since these are discussed in an earlier GitHub sample application.</p>.",
"tags": [ "native", "client", "cryptography", "bb10", "cascades", "hash", "random", "hmac", "mac", "rsa", "x509", "certificate" ]
},
"CscMonitor": {
"desc": "A Bluetooth Low Energy application for cyclists",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/CscMonitor",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"note": "<p>The purpose of this application is to demonstrate how to interface to a Bluetooth Low Energy device that supports the Cycling Speed and Cadence Profile as defined by the Bluetooth SIG. This is the type of device that cyclists typically attach to their cycles to allow them to monitor information such as wheel and peddle revolutions and timings.</p>",
"tags": [ "native", "cascades", "client", "bluetooth", "bb10" ]
},
"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" ]
},
"datamanagerusage": {
"desc": "How to use the provided sql query classes to efficiently load large amounts of data into ListView",
"url": "https://github.com/blackberry/Cascades-Samples/tree/master/datamanagerusage",
"repo": "Cascades-Samples",
"repourl": "http://github.com/blackberry/Cascades-Samples",
"tags": [ "native", "client", "bb10", "cascades", "listview", "sqlquery" ]
},
"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" ]
},
"DeviceInfo(bb10,ext)": {
"desc": "WebWorks Java-based Smartphone extension to get information about the device",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/BB10/DeviceInfo",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bb10", "extension", "deviceinfo", "ext-bb10" ]
},
"DevSupportTemplate": {
"desc": "Sample to show how to use the DevelopmentSupport class to enable live QML reloads while developing.",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/DevSupportTemplate",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "client", "bb10", "cascades","DevelopmentSupport", "QML" ]
},
"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"]
},
"ECL(Webworks)": {
"desc": "Sample HTML5 Emergency Contact List application demonstrating Enterprise Push.",
"url": "https://github.com/blackberry/BES10-WebWorks/tree/master/ECL",
"repo": "BES10-WebWorks",
"repourl": "http://github.com/blackberry/BES10-WebWorks",
"tags": [ "enterprise", "client", "server", "bb10", "ecl", "webworks", "html5", "push", "bes", "mds" ]
},
"ECL(Cascades)": {
"desc": "Sample Native Emergency Contact List application demonstrating Enterprise Push.",
"url": "https://github.com/blackberry/BES10-Cascades/tree/master/ECL",
"repo": "BES10-Cascades",
"repourl": "http://github.com/blackberry/BES10-Cascades",
"tags": [ "enterprise", "native", "client", "server", "bb10", "ecl", "cascades", "push", "bes", "mds" ]
},
"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" ]
},
"EmailWidget": {
"desc": "A homescreen widget whihc launches an email compose window",
"url": "https://github.com/blackberry/Secure-Work-Space/tree/master/EmailWidget",
"repo": "Secure-Work-Space",
"repourl": "https://github.com/blackberry/Secure-Work-Space",
"tags": [ "android", "email", "widget", "secure work space", "sws" ]
},
"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"]
},
"EXIF Data Reader": {
"desc": "How to read the EXIF data from an image, and rotate it accordingly",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/EXIF-Data-Reader",
"repo": "BB10-WebWorks-Samples",
"repourl": "http://github.com/blackberry/BB10-WebWorks-Samples",
"tags": [ "webworks", "exif", "bb10", "canvas" ]
},
"EXIF Image Viewer": {
"desc": "How to load an image with exif orientation data and display it rotated according",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/ExifImageViewer",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "cascades", "exif", "bb10", "camera" ]
},
"Expressgur": {
"desc": "BlackBerry Express sample plugin that pulls images from Deviant Art",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/expressgur",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "native", "cascades", "Express", "bb10", "Deviant Art", "plugin" ]
},
"ExtractZipFile(bb10,plugin)": {
"desc": "WebWorks BlackBerry 10 and Apache Cordova Plugin to unzip files",
"url": "http://github.com/blackberry/WebWorks-Community-APIs/tree/master/BB10-Cordova/ExtractZipFile",
"repo": "WebWorks-Community-APIs",
"repourl": "http://github.com/blackberry/WebWorks-Community-APIs",
"tags": [ "html5", "client", "bb10", "zip", "plugin", "cordova", "unzip" ]
},
"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" ]
},
"FlurryAnalyticsSample": {
"desc": "Learn how to integrate Flurry Analytics into your application using this sample application!",
"url": "https://github.com/blackberry/Cascades-Community-Samples/tree/master/FlurryAnalyticsSample",
"repo": "Cascades-Community-Samples",
"repourl": "http://github.com/blackberry/Cascades-Community-Samples",
"tags": [ "cascades", "analytics", "flurry", "platform-services" ]
},
"Flurry(WebWorks)": {
"desc": "How to integrate Flurry Analytics in to a WebWorks app.",
"url": "https://github.com/blackberry/BB10-WebWorks-Samples/tree/master/Flurry",
"repo": "BB10-WebWorks-Samples",
"repourl": "https://github.com/blackberry/BB10-WebWorks-Samples",
"tags": [ "html5", "webworks", "bb10", "analytics", "flurry" ]
},
"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" ]
},
"FreemiumSampleApp": {
"desc": "This sample demonstrates one possible implementation of a freemium business model. The game mocked up in this sample, \"BYO UFO\", allows users to purchase various upgrades to their UFO as well as remove adverts from the application.",