-
Notifications
You must be signed in to change notification settings - Fork 5
/
ytblogger_lists_unified.js.json
7861 lines (7856 loc) · 339 KB
/
ytblogger_lists_unified.js.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
var YOUTUBE_RESOURCES = [
{
"lang": "en",
"group": "",
"tags": [
"android",
"developerstory",
"googleplay",
"featured"
],
"url": "http://www.youtube.com/watch?v=YSo9t3IDsDw",
"timestamp": 1418149095000,
"image": "https://i.ytimg.com/vi/YSo9t3IDsDw/maxresdefault.jpg",
"title": "Android Developer Story: Over grows with Android & Google Play",
"summary": "Over has taken a simple idea, adding text to photos, and turned it into a creative tool enabling anyone to easily and intuitively add a unique twist to any image. Despite everyone on the team being new to Android, they had their first prototype\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"android",
"developerstory",
"googleplay",
"featured"
],
"url": "http://www.youtube.com/watch?v=nWKiNRgKZv8",
"timestamp": 1416419680000,
"image": "https://i.ytimg.com/vi/nWKiNRgKZv8/maxresdefault.jpg",
"title": "Android Developer Story: musiXmatch drives user engagement through innovation",
"summary": "Learn how Bologna-based musiXmatch takes advantage of Android\u2019s unique capabilities and different form factors to drive app engagement and double the amount of users as well as double the length of their sessions. \n\nTo learn more about engaging your\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"android",
"developerstory",
"googleplay",
"featured"
],
"url": "http://www.youtube.com/watch?v=6i-efBe75BA",
"timestamp": 1415747625000,
"image": "https://i.ytimg.com/vi/6i-efBe75BA/maxresdefault.jpg",
"title": "Android Developer Story: EyeEm improves user engagement through design",
"summary": "Discover how the redesigned and simplified EyeEm Android app not only delivers a faster, more photo centric experience, but has also boosted user engagement and retention. \n\nFor example, missions \u2014 competitions for photographers around a theme \u2014\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"android",
"developerstory",
"growth",
"googleplay",
"featured"
],
"url": "http://www.youtube.com/watch?v=tCdvGgiX5cs",
"timestamp": 1415210583000,
"image": "https://i.ytimg.com/vi/tCdvGgiX5cs/maxresdefault.jpg",
"title": "Android Developer Story: Space Ape Games - Growing in Japan",
"summary": "London-based Space Ape Games (http://www.spaceapegames.com/) brought together a range of resources and tactics to take Samurai Siege (https://play.google.com/store/apps/details?id=com.spaceapegames.samuraisiege) into Japan with Google Play and grow\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"android",
"developerstory",
"googleplay",
"featured"
],
"url": "http://www.youtube.com/watch?v=qpoxRwSNXXQ",
"timestamp": 1413825822000,
"image": "https://i.ytimg.com/vi/qpoxRwSNXXQ/maxresdefault.jpg",
"title": "Android Developer Story: The New York Times",
"summary": "The New York Times leveraged a solid mobile strategy to transition into a global media organization. See how they used Google Play Billing to maximize subscriber growth.\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"googleforedu",
"android",
"developerstory",
"googleplay"
],
"url": "http://www.youtube.com/watch?v=Idu7VcTTXfk",
"timestamp": 1405443063000,
"image": "https://i.ytimg.com/vi/Idu7VcTTXfk/maxresdefault.jpg",
"title": "Android Developer Story: Quizlet",
"summary": "Quizlet is an extremely popular online learning tool for students. See how they optimized for the classroom with Android and the power of Google Play for Education.\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"developerstor",
"android",
"googleplay",
"googleforedu"
],
"url": "http://www.youtube.com/watch?v=iokH4SAIfRw",
"timestamp": 1403986004000,
"image": "https://i.ytimg.com/vi/iokH4SAIfRw/maxresdefault.jpg",
"title": "Android Developer Story: ClassDojo",
"summary": "ClassDojo is a classroom tool that helps teachers improve behavior in their classrooms quickly and easily. See how they optimized for the classroom with Android and the power of Google Play for Education.\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"androiddev",
"sensors",
"devbytes",
"fitness"
],
"url": "http://www.youtube.com/watch?v=I441W9JpAhc",
"timestamp": 1402489660000,
"image": "https://i.ytimg.com/vi/I441W9JpAhc/maxresdefault.jpg",
"title": "Android 4.4: Step Sensors (Portuguese)",
"summary": "Conhe\u00e7a duas maneiras de rastrear e detectar passos com o Android Kit Kat, utilizando os novos sensores de passo (step sensors) em hardware, em ais um v\u00eddeos da s\u00e9rie DevBytes sobre desenvolvimento Android em portugu\u00eas\n\nC\u00f3digo exemplo:\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"androiddev",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=b_KcFaLvFfI",
"timestamp": 1402073937000,
"image": "https://i.ytimg.com/vi/b_KcFaLvFfI/maxresdefault.jpg",
"title": "DevBytes: Sliding Tabs (Portuguese)",
"summary": "Aprenda em 4 minutos como criar tabs deslizantes (sliding tabs) para o seu aplicativo Android, como no Google Play!\n\nExemplos:\nhttp://developer.android.com/samples/SlidingTabsBasic\nhttp://developer.android.com/samples/SlidingTabsColors\n\n slidingtabs",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"maps",
"android",
"activityrecognition",
"googleplayservices",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=J2lYuNMeOfQ",
"timestamp": 1400623677000,
"image": "https://i.ytimg.com/vi/J2lYuNMeOfQ/maxresdefault.jpg",
"title": "DevBytes: Google Play Services 4.4",
"summary": "Another release of Google Play services is out - version 4.4.\n\nThis release includes a blockbuster announcement: Street View for Google Maps Android API. We also take new Activity Recognition for a test ride in real life, buy a bike in 10 seconds,\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"notifications",
"android",
"wear",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=N7aJPyvHPgs",
"timestamp": 1399572281000,
"image": "https://i.ytimg.com/vi/N7aJPyvHPgs/maxresdefault.jpg",
"title": "DevBytes - Android Wear: Page Notifications",
"summary": "With the Android Wear platform, we are introducing the ability to add extra pages to existing notifications. This allows users to see more details by simply swiping on the wearable display. Notifications can be quickly understood and then actioned\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"notifications",
"android",
"wear",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=L4LvKOTkZ7Q",
"timestamp": 1398470529000,
"image": "https://i.ytimg.com/vi/L4LvKOTkZ7Q/maxresdefault.jpg",
"title": "DevBytes - Android Wear: Stackable Notifications",
"summary": "With Android Wear, we're introducing stackable notifications, which allow you to see fine-grained detail of multiple notifications when glancing at your wearable device. These notifications can be actioned individually directly from the wearable, so\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"devbytes"
],
"url": "http://www.youtube.com/watch?v=tRg_eDfQ8fk",
"timestamp": 1396276872000,
"image": "https://i.ytimg.com/vi/tRg_eDfQ8fk/maxresdefault.jpg",
"title": "DevByte - Sliding Tabs",
"summary": "Take 2 minutes and learn to implement and theme Play Store-style sliding tabs!\n\nSamples:\nhttp://developer.android.com/samples/SlidingTabsBasic\nhttp://developer.android.com/samples/SlidingTabsColors\n\n slidingtabs",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"devbytes"
],
"url": "http://www.youtube.com/watch?v=BuHEhmp47VE",
"timestamp": 1396546740000,
"image": "https://i.ytimg.com/vi/BuHEhmp47VE/maxresdefault.jpg",
"title": "Media Router Framework - Part 2 - MediaRouteProvider",
"summary": "Learn why and how to implement a MediaRouteProvider in this second part of our series on the Media Router Framework.\n\nTo learn more:\nhttps://developer.android.com/guide/topics/media/mediarouteprovider.html\nSample:\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"tagmanager",
"games",
"googleplayservices",
"devbytes",
"drive"
],
"url": "http://www.youtube.com/watch?v=Ih0mZcAhI0c",
"timestamp": 1395767334000,
"image": "https://i.ytimg.com/vi/Ih0mZcAhI0c/maxresdefault.jpg",
"title": "DevBytes: Google Play Services 4.3",
"summary": "Google Play services 4.3 has now been released, and in this video we will present all new cool things you can do with it. This release includes two new APIs (Address and Analytics) and updates to the Play Games services, and Drive APIs.\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"android",
"wear",
"wearables"
],
"url": "http://www.youtube.com/watch?v=0xQ3y902DEQ",
"timestamp": 1395158229000,
"image": "https://i.ytimg.com/vi/0xQ3y902DEQ/maxresdefault.jpg",
"title": "Introducing Android Wear Developer Preview",
"summary": "Android Wear extends the Android platform to wearables, starting with a familiar form factor -- watches. Download the developer preview at: developer.android.com/wear\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"games",
"liquidfun",
"physics"
],
"url": "http://www.youtube.com/watch?v=yXLmdu810BQ",
"timestamp": 1395153994000,
"image": "https://i.ytimg.com/vi/yXLmdu810BQ/maxresdefault.jpg",
"title": "LiquidFun 1.0 Physics Engine",
"summary": "See new features in LiquidFun 1.0, an open-source, cross-platform physics engine from Google. Get the latest code at http://google.github.io/liquidfun/\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"sensors",
"devbytes",
"fitness"
],
"url": "http://www.youtube.com/watch?v=yv9jskPvLUc",
"timestamp": 1396970963000,
"image": "https://i.ytimg.com/vi/yv9jskPvLUc/maxresdefault.jpg",
"title": "Android 4.4: Step Sensors",
"summary": "Walk through two ways to track steps in Android Kit Kat with the new hardware step sensors.\n\nSample code: http://developer.android.com/samples/BatchStepSensor\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"android",
"wear",
"devbytes",
"wearables"
],
"url": "http://www.youtube.com/watch?v=SEZbZK4jFLY",
"timestamp": 1395159245000,
"image": "https://i.ytimg.com/vi/SEZbZK4jFLY/maxresdefault.jpg",
"title": "DevBytes - Android Wear: Receiving Voice Replies",
"summary": "In this video, Justin Koh discusses how your app can let users provide voice replies to notification actions with Android Wear.\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"android",
"wear",
"devbytes",
"wearables"
],
"url": "http://www.youtube.com/watch?v=1dQf0sANoDw",
"timestamp": 1395159234000,
"image": "https://i.ytimg.com/vi/1dQf0sANoDw/maxresdefault.jpg",
"title": "DevBytes - Android Wear: Developer Preview",
"summary": "In this video, Justin Koh discusses how you can make your app ready for the wrist with Android Wear.\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"android",
"developerstory",
"googleplay"
],
"url": "http://www.youtube.com/watch?v=i2uvYI6blEE",
"timestamp": 1394731300000,
"image": "https://i.ytimg.com/vi/i2uvYI6blEE/maxresdefault.jpg",
"title": "Android Developer Story: Box",
"summary": "Box is a cloud-based platform and app for users to share business information. See how they got over 5 million downloads by leveraging the flexibility in the Android platform.\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"android",
"developerstory",
"growth",
"googleplay"
],
"url": "http://www.youtube.com/watch?v=AEzg70YYsek",
"timestamp": 1394731300000,
"image": "https://i.ytimg.com/vi/AEzg70YYsek/maxresdefault.jpg",
"title": "Android Developer Story: JackThreads",
"summary": "Learn how Thrillist, the creator of the JackThreads mens fashion app, grew their Android sales almost 2000% by using Android native design.\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"uxd",
"design"
],
"url": "http://www.youtube.com/watch?v=-aohQYNXQ4U",
"timestamp": 1394121038000,
"image": "https://i.ytimg.com/vi/-aohQYNXQ4U/maxresdefault.jpg",
"title": "UXD: Three Steps To Awesome - Part 3 of 3",
"summary": "This episode of User Experience Design for Developers shows you why user research is important, and how you can avoid 3 common pitfalls and create amazing mobile user experiences. This is Part 3 of 3 - \"Avoid Cowboy Design\". Please join our UX\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"uxd"
],
"url": "http://www.youtube.com/watch?v=BBQurjDaUtY",
"timestamp": 1394119980000,
"image": "https://i.ytimg.com/vi/BBQurjDaUtY/maxresdefault.jpg",
"title": "UXD: Three Steps To Awesome - Part 2 of 3",
"summary": "This episode of User Experience Design for Developers shows you why user research is important, and how you can avoid 3 common pitfalls and create amazing mobile user experiences. This is Part 2 of 3 - \"Play Well With Others\". Please join our UX\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"adia",
"common"
],
"url": "http://www.youtube.com/watch?v=x_gxZd9kLv4",
"timestamp": 1397006695000,
"image": "https://i.ytimg.com/vi/x_gxZd9kLv4/maxresdefault.jpg",
"title": "Android Design in Action: Common UX Issues (Japanese)",
"summary": "\u4eca\u56de\u306f Android \u30a2\u30d7\u30ea\u3067\u3088\u304f\u898b\u304b\u3051\u308b\u3055\u307e\u3056\u307e\u306a\u30c7\u30b6\u30a4\u30f3\u4e0a\u306e\u554f\u984c\u3092\u3001\u30c7\u30b6\u30a4\u30f3\u30fb\u30ac\u30a4\u30c9\u30e9\u30a4\u30f3\u306b\u5247\u3063\u3066\u3054\u7d39\u4ecb\u3057\u307e\u3059\u3002\n\u30c7\u30b6\u30a4\u30f3\u30fb\u30ac\u30a4\u30c9\u30e9\u30a4\u30f3\u306f\u7d76\u5bfe\u7684\u306a\u57fa\u6e96\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u304c\u3001\u9ad8\u54c1\u8cea\u306a\u30a2\u30d7\u30ea\u3092\u76ee\u6307\u3059\u4e0a\u3067\u5f79\u306b\u7acb\u3064\u30d2\u30f3\u30c8\u304c\u8a70\u307e\u3063\u3066\u304a\u308a\u3001Android \u30a2\u30d7\u30ea\u306e UI/UX \u30c7\u30b6\u30a4\u30f3\u306b\u3042\u305f\u3063\u3066\u307e\u305a\u53c2\u8003\u306b\u3057\u3066\u3044\u305f\u3060\u304d\u305f\u3044\u8cc7\u6599\u3067\u3059\u3002\u8a73\u3057\u304f\u306f http://d.android.com/design \u3092\u3054\u53c2\u7167\u304f\u3060\u3055\u3044\u3002\n\u65e5\u672c\u306e Android \u958b\u767a\u8005\u306e\u305f\u3081\u306e\u516c\u5f0f Google+ \u30b3\u30df\u30e5\u30cb\u30c6\u30a3 Android\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"uxd"
],
"url": "http://www.youtube.com/watch?v=DI_PlZmlkKg",
"timestamp": 1392741122000,
"image": "https://i.ytimg.com/vi/DI_PlZmlkKg/maxresdefault.jpg",
"title": "UXD: Three Steps To Awesome - Part 1 of 3",
"summary": "This episode of User Experience Design for Developers shows you why user research is important, and how you can avoid 3 common pitfalls and create amazing mobile user experiences. This is Part 1 of 3 - \"Avoid Machine Narcissism\". \n\nPlease join our\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"justforus",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=hM49C0AfilA",
"timestamp": 1392251518000,
"image": "https://i.ytimg.com/vi/hM49C0AfilA/maxresdefault.jpg",
"title": "DevBytes: \"Just for Us\" App - Part 2",
"summary": "This provides a quick overview of the components that make up the \"Just for Us\" app introduced in http://www.youtube.com/watch?v=aoFdDAAHfGM. Source code available at: http://goo.gl/0CEXJa. \n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"justforus",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=aoFdDAAHfGM",
"timestamp": 1392251460000,
"image": "https://i.ytimg.com/vi/aoFdDAAHfGM/maxresdefault.jpg",
"title": "DevBytes - \"Just for Us\" App",
"summary": "Here's an idea to build a fun app for a loved one on Valentine's Day or any other occasion. Source code available at http://goo.gl/0CEXJa. \n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"googleplayservices",
"devbytes",
"googleapiclient"
],
"url": "http://www.youtube.com/watch?v=6-F8TjLMQYw",
"timestamp": 1392321501000,
"image": "https://i.ytimg.com/vi/6-F8TjLMQYw/maxresdefault.jpg",
"title": "DevBytes: Connecting to Google Play services with GoogleApiClient",
"summary": "Learn how to connect to Google Play Services so that you can access great APIs for games, authentication, app state, location, G+, wallet, and much more. This video will show you how to use GoogleApiClient as the new model for interacting with these\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"mediarouter",
"media",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=_NGB10uN6OI",
"timestamp": 1392743243000,
"image": "https://i.ytimg.com/vi/_NGB10uN6OI/maxresdefault.jpg",
"title": "DevBytes: Media Router Framework - Part 1 - Media Router API",
"summary": "Learn how to cast media content to secondary devices. Also refer to the Media Router developer guide at http://developer.android.com/guide/topics/media/mediarouter.html \n\nIn Part 2, we'll cover how media consumption device manufacturers can enable\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"playgames",
"ios",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=f1zyvv7lvFc",
"timestamp": 1391727174000,
"image": "https://i.ytimg.com/vi/f1zyvv7lvFc/maxresdefault.jpg",
"title": "DevBytes: Play Games on iOS Lesson 3.4",
"summary": "In this lesson, we replace our kludgy hard-coded leaderboard ID strings with some nice enums. Ahhh...\n\nFull Playlist: http://goo.gl/IWC6Ej\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"playgames",
"ios",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=h-BJtIG4dWY",
"timestamp": 1391727223000,
"image": "https://i.ytimg.com/vi/h-BJtIG4dWY/maxresdefault.jpg",
"title": "DevBytes: Play Games on iOS Lesson 3.3",
"summary": "We have some leaderboards now. Let's start submitting scores to them!\n\nFull Playlist: http://goo.gl/IWC6Ej\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"playgames",
"ios",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=H-PYUd0h7_Q",
"timestamp": 1391726986000,
"image": "https://i.ytimg.com/vi/H-PYUd0h7_Q/maxresdefault.jpg",
"title": "DevBytes: Play Games on iOS Lesson 3.2",
"summary": "In this lesson, we add some leaderboards to our game through the Play Developer Console, and Todd shares his favorite feature of the entire console.\n\nFull Playlist: http://goo.gl/IWC6Ej\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"playgames",
"ios",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=ohjUqpXe_H8",
"timestamp": 1391726998000,
"image": "https://i.ytimg.com/vi/ohjUqpXe_H8/maxresdefault.jpg",
"title": "DevBytes: Play Games on iOS Lesson 3.1",
"summary": "Achievements shmamivements. How's about we start adding some leaderboards to our iOS game? Let's start by showing a leaderboards controller! Sure, it'll be empty, but every journey begins with the first step.\n\nFull Playlist: http://goo.gl/IWC6Ej\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"playgames",
"ios",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=5KubLLpqUZE",
"timestamp": 1391727992000,
"image": "https://i.ytimg.com/vi/5KubLLpqUZE/maxresdefault.jpg",
"title": "DevBytes: Play Games on iOS Lesson 3.5",
"summary": "In this lesson, we show you how to bring up a specific leaderboard, which can come in very handy if you have a multi-level game.\n\nFull Playlist: http://goo.gl/IWC6Ej\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"developerstory",
"games",
"googleplay",
"monetizing",
"growth"
],
"url": "http://www.youtube.com/watch?v=WWArLD6nqrk",
"timestamp": 1392145221000,
"image": "https://i.ytimg.com/vi/WWArLD6nqrk/maxresdefault.jpg",
"title": "Android Developer Story: Kiwi, Inc.",
"summary": "Android-first developer Kiwi has had 5 titles in the 25 grossing games in Google Play, including Shipwrecked: Lost Island, Monsterama Park, and Hidden Object: Mystery Estate. Hear how Google Play helped them double revenue every six months with\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"androiddesign",
"quality",
"ux",
"uxd"
],
"url": "http://www.youtube.com/watch?v=J_7nqhQpmzg",
"timestamp": 1391528530000,
"image": "https://i.ytimg.com/vi/J_7nqhQpmzg/maxresdefault.jpg",
"title": "UXD: What is UX research?",
"summary": "This episode of User Experience Design for Developers shows you what user research is, and why it's important to creating products that people will actually want to use. Our guest on the show is Richard Fulcher - manager and designer on the Android\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"playbytes",
"googleplaygames",
"googleplay",
"devbytes",
"strategies",
"developer"
],
"url": "http://www.youtube.com/watch?v=QrXtqDzUPKk",
"timestamp": 1391100388000,
"image": "https://i.ytimg.com/vi/QrXtqDzUPKk/maxresdefault.jpg",
"title": "PlayBytes: Play Games Best Practices",
"summary": "In this episode of Play Bytes, Todd Kerpelman takes a look at what we've learned by observing a few thousand games that make use of Play Games services, and comes up with some recommendations on how to make your own game approximately 38% more fun!\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"adia",
"androiddesign"
],
"url": "http://www.youtube.com/watch?v=Z2kteE-Rrgg",
"timestamp": 1391007661000,
"image": "https://i.ytimg.com/vi/Z2kteE-Rrgg/maxresdefault.jpg",
"title": "Android Design in Action: Beautiful Design Winter 2013 Highlights",
"summary": "This week, Abhilash and Marco from the Android Design team join us as we share our favorite design details from the 9 new apps in the Beautiful Design Winter 2013 collection on Google Play: Timely (1:38), Circa (3:39), Airbnb (7:25), Runtastic Heart\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"screenrecorder",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=ETzRxxOK_bs",
"timestamp": 1390923700000,
"image": "https://i.ytimg.com/vi/ETzRxxOK_bs/maxresdefault.jpg",
"title": "DevBytes: Android 4.4 - Recording App Videos",
"summary": "Learn how to record a video of your app without a video camera! This video shows you how to use the new screenrecord feature in Android 4.4 KitKat to record promotional and educational videos of an application using only your phone.\n\nFor more\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"uxd"
],
"url": "http://www.youtube.com/watch?v=5SNSA6pmzjM",
"timestamp": 1390332000000,
"image": "https://i.ytimg.com/vi/5SNSA6pmzjM/maxresdefault.jpg",
"title": "UXD: LeanUX Measurement - Qualitative and Quantitative",
"summary": "This episode of User Experience Design for Developers introduces you quantiitative vs qualitative measurement in the Lean UX process, and when to use either or both, in order to validate assumptions and create products that users will actually want\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"playgames",
"googleplaygames",
"unity",
"gameon"
],
"url": "http://www.youtube.com/watch?v=EKmmxxErv6I",
"timestamp": 1389738076000,
"image": "https://i.ytimg.com/vi/EKmmxxErv6I/maxresdefault.jpg",
"title": "Game On! - Google Play Games Plugin for Unity",
"summary": "Quick overview of our new Google Play Games plugin for Unity\u00ae, https://github.com/playgameservices/play-games-plugin-for-unity. The Google Play Games plugin for Unity is an open-source plugin that allows game developers to integrate with the Google\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"android",
"kitkat",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=sut1NvUW2yY",
"timestamp": 1390409800000,
"image": "https://i.ytimg.com/vi/sut1NvUW2yY/maxresdefault.jpg",
"title": "DevBytes: Whats New in Android 4.4 KitKat (Cantonese)",
"summary": "\u5728KitKat\u6211\u5011\u505a\u4e86\u9032\u4e00\u6b65\u7684\u512a\u5316\uff0c\u4ee4Android\u7cfb\u7d71\u53ef\u4ee5\u5728\u66f4\u591a\u8a2d\u5099\u4e0a\u904b\u884c\uff0c\u5c24\u5176\u662f\u5728\u5c0f\u65bc512MB\u5167\u5b58\u7684\u5165\u9580\u7d1a\u8a2d\u5099\u3002\u9664\u6b64\u4e4b\u5916\uff0c\u6211\u5011\u9084\u5275\u5efa\u4e86\u66f4\u591a\u65b0\u7684APIs\uff0c\u66f4\u597d\u7684\u5de5\u5177\u548c\u958b\u767c\u6587\u6a94\uff0c\u5e0c\u671b\u53ef\u4ee5\u5e6b\u52a9\u958b\u767c\u8005\u5275\u9020\u5728\u4e0d\u540c\u8a2d\u5099\u4e0a\u90fd\u80fd\u8868\u73fe\u826f\u597d\u7684\u61c9\u7528\u7a0b\u5e8f\u3002\n\n\u8acb\u6536\u770b\u4ee5\u4e0b\u7684\u77ed\u7247\uff0c\u88e1\u9762\u7e3d\u7d50\u4e86\u6700\u65b0Android\u7248\u672c\u7684\u958b\u767c\u529f\u80fd\uff0c\u5305\u62ec\u4ecb\u7d39\u65b0\u7684\u65b9\u6cd5\u4f7f\u60a8\u7684\u61c9\u7528\u7a0b\u5e8f\u66f4\u6f02\u4eae\uff0c\u65b0\u7684NFC\u4e3b\u6a5f\u5361\u6a21\u64ec\u529f\u80fd\uff0c\u5168\u65b0\u7684\u5370\u5237\u548c\u5b58\u5132\u8a2a\u554f\u6846\u67b6\uff0c\u4ee5\u53ca\u4f4e\u529f\u8017\u6e2c\u6b65\u5668\u548c\u8a08\u6b65\u5668\u7b49\u7b49\uff01\n\n\u6700\u5f8c\u8acb\u4e0d\u8981\u5fd8\u8a18\u904a\u89bd\u6211\u5011\u5b8c\u6574\u7684Android 4.4\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"android",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=cA5wkdF3wAU",
"timestamp": 1390409800000,
"image": "https://i.ytimg.com/vi/cA5wkdF3wAU/maxresdefault.jpg",
"title": "DevBytes: Whats New in Android 4.4 KitKat (Mandarin)",
"summary": "\u5728KitKat\u6211\u4eec\u505a\u4e86\u8fdb\u4e00\u6b65\u7684\u4f18\u5316\uff0c\u4ee4Android\u7cfb\u7edf\u53ef\u4ee5\u5728\u66f4\u591a\u8bbe\u5907\u4e0a\u8fd0\u884c\uff0c\u5c24\u5176\u662f\u5728\u5c0f\u65bc512MB\u5185\u5b58\u7684\u5165\u95e8\u7ea7\u8bbe\u5907\u3002\u9664\u6b64\u4e4b\u5916\uff0c\u6211\u4eec\u8fd8\u521b\u5efa\u4e86\u66f4\u591a\u65b0\u7684APIs\uff0c\u66f4\u597d\u7684\u5de5\u5177\u548c\u5f00\u53d1\u6587\u6863\uff0c\u5e0c\u671b\u53ef\u4ee5\u5e2e\u52a9\u5f00\u53d1\u8005\u521b\u9020\u5728\u4e0d\u540c\u8bbe\u5907\u4e0a\u90fd\u80fd\u8868\u73b0\u826f\u597d\u7684\u5e94\u7528\u7a0b\u5e8f\u3002\n\n\u8bf7\u6536\u770b\u4ee5\u4e0b\u7684\u77ed\u7247\uff0c\u91cc\u9762\u603b\u7ed3\u4e86\u6700\u65b0Android\u7248\u672c\u7684\u5f00\u53d1\u529f\u80fd\uff0c\u5305\u62ec\u4ecb\u7ecd\u65b0\u7684\u65b9\u6cd5\u4f7f\u60a8\u7684\u5e94\u7528\u7a0b\u5e8f\u66f4\u6f02\u4eae\uff0c\u65b0\u7684NFC\u4e3b\u673a\u5361\u6a21\u62df\u529f\u80fd\uff0c\u5168\u65b0\u7684\u5370\u5237\u548c\u5b58\u50a8\u8bbf\u95ee\u6846\u67b6\uff0c\u4ee5\u53ca\u4f4e\u529f\u8017\u6d4b\u6b65\u5668\u548c\u8ba1\u6b65\u5668\u7b49\u7b49\uff01\n\n\u6700\u5f8c\u8bf7\u4e0d\u8981\u5fd8\u8bb0\u904a\u89c8\u6211\u4eec\u5b8c\u6574\u7684Android 4.4\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"ranking",
"playbytes",
"googleplay",
"developerconsole",
"visibility",
"developersupport"
],
"url": "http://www.youtube.com/watch?v=MVBMWDzyHAI",
"timestamp": 1389204036000,
"image": "https://i.ytimg.com/vi/MVBMWDzyHAI/maxresdefault.jpg",
"title": "PlayBytes: App Visibility and Search",
"summary": "Check out some helpful tips about getting discovered on Google Play search. We'll review how to avoid common publishing and filtering oversights, recommendations for your Store Listing, and other helpful discoverability features. \n\nRelated Links:\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"wallet",
"playbytes",
"developersupport"
],
"url": "http://www.youtube.com/watch?v=7WZaCg4vxss",
"timestamp": 1389204036000,
"image": "https://i.ytimg.com/vi/7WZaCg4vxss/maxresdefault.jpg",
"title": "PlayBytes: Create a Registration Invoice",
"summary": "See the best way to create an invoice for documenting your Google Play Developer registration fee. \n\nRelated Links: \nAndroid Developer Help Center - http://support.google.com/googleplay/android-developer\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"developerconsole",
"playbytes",
"developersupport",
"googleplay",
"pricing"
],
"url": "http://www.youtube.com/watch?v=hTGoKruFDdU",
"timestamp": 1389204036000,
"image": "https://i.ytimg.com/vi/hTGoKruFDdU/maxresdefault.jpg",
"title": "PlayBytes: Updating your App's price",
"summary": "Learn how to update your app's price for multiple locations on Google Play using the Google Play Developer Console. We'll also demo how to ensure that your app's price is correct in all locations you want to sell in. \n\nRelated Links: \nAndroid\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"achievements",
"playgames",
"googleplaygames",
"ios",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=-OCoStgd4EI",
"timestamp": 1391797184000,
"image": "https://i.ytimg.com/vi/-OCoStgd4EI/maxresdefault.jpg",
"title": "DevBytes: Play Games on iOS Lesson 2.6",
"summary": "We learn about the Management APIs, and how to reset achievements\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"achievements",
"playgames",
"googleplaygames",
"ios",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=b8ugFYgnkw8",
"timestamp": 1391191163000,
"image": "https://i.ytimg.com/vi/b8ugFYgnkw8/maxresdefault.jpg",
"title": "DevBytes: Play Games on iOS Lesson 2.5",
"summary": "Let's get those hard-coded achievement strings out of my code and stick 'em in an enum! Then we can implement the last two achievements.\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"achievements",
"playgames",
"googleplaygames",
"ios",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=lcZ-3CjBX7I",
"timestamp": 1390583461000,
"image": "https://i.ytimg.com/vi/lcZ-3CjBX7I/maxresdefault.jpg",
"title": "DevBytes: Play Games on iOS Lesson 2.4",
"summary": "In this lesson, we learn how to make partial progress towards unlocking incremental achievements, and we also learn the dangers of making these calls too often.\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"achievements",
"playgames",
"googleplaygames",
"ios",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=hREiWvCYk8w",
"timestamp": 1389373638000,
"image": "https://i.ytimg.com/vi/hREiWvCYk8w/maxresdefault.jpg",
"title": "DevBytes: Play Games on iOS Lesson 2.3",
"summary": "In this lesson, we finally earn our first achievement! Whew! We deserve an achievement for that.\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"maps",
"android",
"location",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=6Vekbfit-Ns",
"timestamp": 1388113744000,
"image": "https://i.ytimg.com/vi/6Vekbfit-Ns/maxresdefault.jpg",
"title": "DevBytes: Maps v2 & Fused Location (Japanese)",
"summary": "Google Maps Android API v2 \u306b\u3064\u3044\u3066\u3001\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u624b\u9806\u3082\u542b\u3081\u3066\u89e3\u8aac\u3057\u307e\u3059\u3002\u307e\u305f\u3001\u4f4d\u7f6e\u60c5\u5831\u3092\u6271\u3046\u30a2\u30d7\u30ea\u3067\u306f\u307b\u3068\u3093\u3069\u6c7a\u5b9a\u7248\u3068\u3044\u3063\u3066\u3082\u3044\u3044 Fused Location \u3068 Geofence \u306e API \u306b\u3064\u3044\u3066\u3082\u7d39\u4ecb\u3057\u307e\u3059\u3002\n\u65e5\u672c\u306e Android \u958b\u767a\u8005\u306e\u305f\u3081\u306e\u516c\u5f0f Google+ \u30b3\u30df\u30e5\u30cb\u30c6\u30a3 Android Development - Japan\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"multiplescreens",
"designbytes",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=pYNT-4x-pIk",
"timestamp": 1388115458000,
"image": "https://i.ytimg.com/vi/pYNT-4x-pIk/maxresdefault.jpg",
"title": "DesignBytes: Density-independent Pixels (Korean)",
"summary": "\ub2e4\uc591\ud55c \ud06c\uae30\uc758 \ud654\uba74\uc744 \uc9c0\uc6d0\ud558\ub294 Android \uc571\uc744 \uad6c\ud604\ud558\uae30 \uc704\ud55c \ub514\uc790\uc778\uc758 \uae30\ucd08\uac00 \ub418\ub294 DIP \uc758 \uac1c\ub150\uacfc \ud53d\uc140 \ub2e8\uc704\uc640 DIP \ub2e8\uc704\ub97c \uc790\uc720\ub86d\uac8c \uc624\uac08 \uc218 \uc788\ub294 \ubc29\ubc95\uc5d0 \uad00\ud574 \uc124\uba85\ub4dc\ub9bd\ub2c8\ub2e4. \ubcf4\ub2e4 \uc790\uc138\ud55c \ub0b4\uc6a9\uc740 \ub2e4\uc74c\uc744 \ucc38\uace0\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.\nhttp://developer.android.com/guide/practices/screens_support.html\n\n\ub610\ud55c, \ud55c\uad6d \uac1c\ubc1c\uc790\ubd84\ub4e4\uc744 \uc704\ud55c \uad6c\uae00 \ucf54\ub9ac\uc544\uc758 \uacf5\uc2dd \ube14\ub85c\uadf8 \ubc0f GDG Korea Android\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"webview",
"chromium",
"kitkat",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=i_GefvcgfTk",
"timestamp": 1388115510000,
"image": "https://i.ytimg.com/vi/i_GefvcgfTk/maxresdefault.jpg",
"title": "DevBytes: Chromium WebView (Korean)",
"summary": "Android 4.4 \ud0a4\ucea3\uc5d0\uc11c \uc0c8\ub86d\uac8c \uad6c\ud604\ub41c Chromium \uae30\ubc18\uc758 WebView \uc5d0 \uad00\ud574 \uc18c\uac1c\ub4dc\ub9bd\ub2c8\ub2e4. \uc0ac\uc6a9 \uc2dc \uc8fc\uc758\ud560 \uc810\uacfc \uac1c\ubc1c\ud560 \ub54c \uc720\uc6a9\ud558\uac8c \uc0ac\uc6a9\ud558\uc2e4 \uc218 \uc788\ub294 \uc6d0\uaca9 \ub514\ubc84\uae45 \ub3c4\uad6c\uc5d0 \uad00\ud574 \uc54c\ub824\ub4dc\ub9bd\ub2c8\ub2e4. \uc0c8\ub85c\uc6b4 WebView \uc5d0 \uad00\ud55c \ubcf4\ub2e4 \uc790\uc138\ud55c \ub0b4\uc6a9\uc740 \ub2e4\uc74c\uc744 \ucc38\uace0\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.\nhttp://developer.android.com/guide/webapps/migrating.html\n\n\ub610\ud55c, \ud55c\uad6d \uac1c\ubc1c\uc790\ubd84\ub4e4\uc744 \uc704\ud55c \uad6c\uae00 \ucf54\ub9ac\uc544\uc758 \uacf5\uc2dd \ube14\ub85c\uadf8\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"webview",
"chromium",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=XPFXe3nTQKM",
"timestamp": 1388023485000,
"image": "https://i.ytimg.com/vi/XPFXe3nTQKM/maxresdefault.jpg",
"title": "DevBytes: Chromium WebView (Japanese)",
"summary": "Android 4.4 KitKat \u3088\u308a\u65b0\u3057\u304f\u306a\u3063\u305f WebView \u306b\u3064\u3044\u3066\u3054\u7d39\u4ecb\u3057\u307e\u3059\u3002\n\u65e5\u672c\u306e Android \u958b\u767a\u8005\u306e\u305f\u3081\u306e\u516c\u5f0f Google+ \u30b3\u30df\u30e5\u30cb\u30c6\u30a3 Android Development - Japan \u3082\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\nhttps://plus.google.com/communities/115564198961961475282\n\n ",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"actionbarcompat",
"actionbar",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=_SHKYqxUWvA",
"timestamp": 1388115394000,
"image": "https://i.ytimg.com/vi/_SHKYqxUWvA/maxresdefault.jpg",
"title": "DevBytes: ActionBarCompat (Korean)",
"summary": "Android \uc9c0\uc6d0 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \ud3ec\ud568 \ub41c ActionBarCompat\ub97c \uc0ac\uc6a9\ud558\uc5ec Android 2.1 \uc774\uc0c1\uc5d0\uc11c\ub3c4 \uc561\uc158\ubc14\ub97c \uad6c\ud604\ud558\ub294 \ubc29\ubc95\uc744 \uc18c\uac1c\ud569\ub2c8\ub2e4. \uc561\uc158\ubc14\uc5d0 \uad00\ud55c \ubcf4\ub2e4 \uc790\uc138\ud55c \ub0b4\uc6a9\uc740 \ub2e4\uc74c\uc744 \ucc38\uace0\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.\nhttp://developer.android.com/guide/topics/ui/actionbar.html\n\n\ub610\ud55c, \ud55c\uad6d \uac1c\ubc1c\uc790\ubd84\ub4e4\uc744 \uc704\ud55c \uad6c\uae00 \ucf54\ub9ac\uc544\uc758 \uacf5\uc2dd \ube14\ub85c\uadf8 \ubc0f GDG Korea Android \ucee4\ubba4\ub2c8\ud2f0\ub3c4 \ub9ce\uc740 \uad00\uc2ec\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"adia"
],
"url": "http://www.youtube.com/watch?v=ajO2zFEtEYs",
"timestamp": 1387552792000,
"image": "https://i.ytimg.com/vi/ajO2zFEtEYs/maxresdefault.jpg",
"title": "Android Design in Action: 2013 Recap",
"summary": "In this episode, we recap this year's episodes, touching on the inspirational examples (1:38), friendly rants, best practices (24:18), and mockups (40:52) we've shared with you all in 2013.\n\nSlides can be found here:\u2026",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"sms",
"kitkat",
"devbytes"
],
"url": "http://www.youtube.com/watch?v=V9375FUc5Js",
"timestamp": 1389716823000,