-
Notifications
You must be signed in to change notification settings - Fork 0
/
2014.html
1752 lines (1151 loc) · 90.3 KB
/
2014.html
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
<!DOCTYPE html>
<!--[if IE 8]> <html lang="en" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="Droidcon India: Android Conference in Bangalore, India">
<meta name="author" content="HasGeek and friends">
<meta property="og:title" content="Droidcon India 2014"/>
<meta property="og:image" content="https://droidcon.in/_themes/droidcon2014/img/logo.png"/>
<meta property="og:url" content="https://droidcon.in/2014/"/>
<meta property="og:description" content="Droidcon India: Android Conference in Bangalore, India"/>
<link rel="shortcut icon" type="image/x-icon" href="https://droidcon.in/favicon.ico">
<link rel="icon" type="image/x-icon" href="https://droidcon.in/favicon.ico">
<title>Droidcon India 2014</title>
<link rel="stylesheet" href="_themes/droidcon2014/css/vendor/bootstrap.min.css.packed.css"/>
<link rel="stylesheet" href="_themes/droidcon2014/css/font-awesome.min.css.packed.css"/>
<link rel="stylesheet" href="_themes/droidcon2014/css/font-awesome-ie7.min.css.packed.css"/>
<link rel="stylesheet" href="_themes/droidcon2014/css/typography.css.packed.css"/>
<link rel="stylesheet" href="_themes/droidcon2014/css/layout.css.packed.css"/>
<link rel="stylesheet" href="_themes/droidcon2014/css/theme.css.packed.css"/>
<link rel="stylesheet" href="_themes/droidcon2014/css/objects.css.packed.css"/>
<!-- Leaflet -->
<!-- <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/leaflet/0.6.3/leaflet.min.css" /> -->
<!--[if lte IE 8]>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/leaflet/0.6.3/leaflet.ie.css" />
<![endif]-->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC_PO808O7-Ay4y6gUP01GkEFSF5NrUsLo&sensor=false"></script>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600" />
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://droidcon.in/_baseframe/css/networkbar.css">
<script src="_themes/droidcon2014/js/vendor/modernizr-2.6.2.js"></script>
<!--<script src="/_themes/droidcon2014/js/vendor/jquery-1.10.2.min.js"></script>-->
<!--<script src="/_themes/droidcon2014/js/vendor/bootstrap.min.js"></script>-->
</head>
<body class="fill-silver">
<div class="fill-silver">
<div id="hg-bar" class="no-print">
<div class="container">
<ul id="hg-barlinks">
<li id="hg-networkbar-home" class="strong"><a href="https://hasgeek.com/">HasGeek</a></li>
<li id="hg-networkbar-hasjob"><a href="https://hasjob.co/">Hasjob</a></li>
<li id="hg-networkbar-hgtv"><a href="https://hasgeek.tv/">HGTV</a></li>
<li id="hg-networkbar-talkfunnel"><a href="https://talkfunnel.com/">Talkfunnel</a></li>
<li id="hg-networkbar-events" class="selected"><a href="2014.html#" class="hg-submenu">Events</a>
<ul>
<li id="hg-networkbar-metarefresh"><a href="https://metarefresh.in/">Meta Refresh</a></li>
<li id="hg-networkbar-rootconf"><a href="https://rootconf.in/">Rootconf</a></li>
<li id="hg-networkbar-fifthelephant"><a href="https://fifthelephant.in/">The Fifth Elephant</a></li>
<li id="hg-networkbar-jsfoo"><a href="https://jsfoo.in/">JSFoo</a></li>
<li id="hg-networkbar-droidcon"><a href="https://droidcon.in/">Droidcon India</a></li>
<li id="hg-networkbar-pastevents" class="hg-menu-section">Past events</li>
<li id="hg-networkbar-angularjs-miniconf"><a href="https://metarefresh.in/2014/angularjs-miniconf">AngularJS Miniconf</a></li>
<li id="hg-networkbar-cartonama"><a href="https://cartonama.com/2012">Cartonama Conference</a></li>
<li id="hg-networkbar-phpcloud"><a href="https://phpcloud.hasgeek.com/">Scaling PHP in the Cloud</a></li>
<li id="hg-networkbar-androidcamp"><a href="https://androidcamp.hasgeek.com/">AndroidCamp</a></li>
<li id="hg-networkbar-doctypehtml5"><a href="http://www.doctypehtml5.in/">DocType HTML5</a></li>
</ul></li>
</ul>
</div>
</div>
</div>
<div id="page">
<header id="circularheader">
<div>
<img src="https://imgee.s3.amazonaws.com/imgee/d110341bb8b745c48a8cbc6246fc872d.png" alt="">
<h1 class="sr-only">Droidcon India 2014</h1>
<h3>5th & 6th December 2014</h3>
<h3 class="secondary-prose">MLR Convention Centre, JP Nagar, Bangalore</h3>
<a class="button tiny ticket-button" href="https://in.explara.com/e/droidcon-2014" target="_blank">Get Tickets: Rs. 4000 (REGULAR)</a>
<p class="tiny"><em>Single day tickets are also available<sup>*</sup></em></p>
</div>
</header>
<div id="nav-home">
<nav class="navbar navbar-default fill-white" id="site-nav" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand green" href="2014.html">Droidcon India</a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li class="dropdown">
<ul class="dropdown-menu">
<li><a href="2014/proposals.html"></a></li>
</ul>
</li>
<li><a href="2014/schedule.html">Schedule</a></li>
<li><a href="https://hacknight.in/droidconin/droidcon2014-hacknight" target="_blank">Hacknight</a>
<li><a href="2014/sponsors.html">Sponsors</a></li>
<li><a href="2014/venue.html">Venue</a></li>
<li><a target="_blank" href="https://jobs.hasgeek.com/search?q=android">Jobs</a></li>
<li class="dropdown">
<a href="2014.html#" class="dropdown-toggle" data-toggle="dropdown">About <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="2014/editorial-panel.html">Editorial Panel</a></li>
<li><a href="2014/about.html">About HasGeek</a></li>
<li><a href="2014.html#highlights">Previous Editions</a></li>
<li><a href="2014/code-of-conduct.html">Code of conduct</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</div>
<section class="event-themes nopush-bottom push-four-top clearfix">
<div class="container-fluid push-four-top">
<div class="row-fluid push-four-top">
<div class="col-lg-8 col-lg-offset-2 regular">
<div class="row">
<div class="col-sm-6">
<p><strong>Droidcon is India's largest Android developer conference</strong>, and is part of the world wide series of conferences that happens in London, Paris, Berlin, Netherlands, Tunis, Ankara and Brussels. Join us for two days of sessions on everything about Android, happening at MLR Convention Centre, JP Nagar, Bangalore.</p>
</div>
<div class="col-sm-6">
<p>In the 2014 edition, we are lining up dedicated tracks for deep dives into <span class="white">UI/UX, Data sync & versioning, App Demos</span> and <span class="white">hardware</span> that bring together the best speakers in the country. This year we will also showcase the trending Android wearables and IoT.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-lg-offset-3 legible-prose prose-type space-three-top">
<img src="https://imgee.s3.amazonaws.com/imgee/cbac0405db8d45cdbd16a94929a3b5ce.png" width="100%" alt="">
</div>
</div>
</div>
</section>
<section class="event-themes nopush-bottom push-three-top clearfix fill-dark">
<div class="container-fluid">
<!-- <div class="row-fluid text-center">
<h2 class="legible-prose col-lg-12 col-md-12 col-sm-12 col-xs-12 large all-caps space-two-bottom">2 days, 2 tracks & 5 Themes</h2>
</div> -->
<div class="row-fluid container">
<div class="col-lg-12 legible-prose prose-type space-two-bottom">
<ul class="row offset1">
<li>
<div class="theme theme-blue" id="app-demos"></div>
<h3 class="tiny change-font-size">App Demos</h3>
</li>
<li>
<div class="theme theme-violet" id="ux"></div>
<h3 class="tiny change-font-size">UI/UX</h3>
</li>
<li>
<div class="theme theme-green" id="gaming"></div>
<h3 class="tiny change-font-size">Android wearables & IoT</h3>
</li>
<li>
<div class="theme theme-red" id="systems"></div>
<h3 class="tiny change-font-size">DataSync & Versioning</h3>
</li>
<li>
<div class="theme theme-orange" id="business"></div>
<h3 class="tiny change-font-size">Hardware</h3>
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="row-fluid clearfix">
<div class="col-sm-6 fill-lightgreen">
<section id="schedule-day1" class="schedule push-two clearfix">
<div class="row-fluid text-center">
<h2 class="legible-prose col-lg-12 col-md-12 col-sm-12 col-xs-12 large all-caps space-two-bottom"> December 5 (Day 1)</h2>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="">
<table class="table-bordered">
<thead>
<tr class="text-center">
<th>Time</th>
<th>Track 1</th>
<th>Track 2</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">08:30 am</div>
</td>
<td colspan="2">
<div class="tiny prose pad-3q-left prose-type clearfix theme-box-left theme-transparent">
<div class="push-1q-top"><span class="calm italic nospace-top push-1q regular-prose">Registrations, Check-in & Breakfast</span></div>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">09:15 am</div>
</td>
<td colspan="2">
<div class="tiny prose pad-3q-left prose-type clearfix theme-box-left theme-transparent">
<div class="push-1q-top"><span class="calm italic nospace-top push-1q regular-prose">Introductions</span></div>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">9:30 am</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-red">
<a target="_blank" class="popover-left" data-content="An overview of the challenges and expected technology changes in Android." data-toggle="popover" data-original-title="M.A.W.A- Multimodal Access Ware Android" href="https://funnel.hasgeek.com/droidcon2014/1341-m-a-w-a-multimodal-access-ware-android">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">M.A.W.A- Multimodal Access Ware Android</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Gulzar Azad</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1341-m-a-w-a-multimodal-access-ware-android"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>
<td></td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">10:15 am</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-transparent">
<a target="_blank" class="popover-left" data-content="Quickly get started with client agnostic backend without having to send much time. Also how to leverage highly scalable cloud for IoT scenarios. Learn how to power your media streaming apps, and mobile notifications with Cloud." data-toggle="popover" data-original-title="Keynote: An overview of developing mobile applications on the cloud" href="https://funnel.hasgeek.com/droidcon2014/1345-an-overview-of-developing-mobile-applications-on-t">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Keynote: An overview of developing mobile applications on the cloud</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Sponsored by Microsoft</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1345-an-overview-of-developing-mobile-applications-on-t"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>
<td></td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">11:00 am</div>
</td>
<td colspan="2">
<div class="tiny prose pad-3q-left prose-type clearfix theme-box-left theme-transparent">
<div class="push-1q-top"><span class="calm italic nospace-top push-1q regular-prose">Tea break</span></div>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">11:20 am</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-orange">
<a target="_blank" class="popover-left" data-content="Creating the ecosystem for connected devices: Introducing YU" data-toggle="popover" data-original-title="Creating the ecosystem for connected devices: Introducing YU" href="2014.html">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Creating the ecosystem for connected devices: Introducing YU</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Rahul Sharma</span>
<span class="gray"> </span>
</p>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">11:30 am</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-green">
<a target="_blank" class="popover-left" data-content="The plethora of actions achievable by that small tap of your phone, and surprisingly, NFC hasn’t been applied to as many fields as it should have been." data-toggle="popover" data-original-title="One small tap for mankind: Exploring NFC and Host Card Emulation." href="https://funnel.hasgeek.com/droidcon2014/1278-one-small-tap-for-mankind-exploring-nfc-and-host-c">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">One small tap for mankind: Exploring NFC and Host Card Emulation.</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Arnav Gupta</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1278-one-small-tap-for-mankind-exploring-nfc-and-host-c"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>
<td rowspan="2">
<div class="nospace-bottom clearfix theme-box-right theme-pink">
<a target="_blank" class="popover-right" data-content="The developer’s challenge is to move fast, excite users, and extend the business into new market segments and reach more users. This session will talk about about tools and strategies Intel is delivering to address the developer challenge." title="" data-toggle="popover" data-original-title="Intel sponsored workshop - Applying Design Thinking to Mobile Game Development" href="https://funnel.hasgeek.com/droidcon2014/1340-cross-platform-tools-to-grow-your-market-reach">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Intel sponsored workshop - Applying Design Thinking to Mobile Game Development</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1340-cross-platform-tools-to-grow-your-market-reach"><i class="icon-filter"></i></a> </span>
<span class="tiny ">Intel-sponsored Workshop</span>
</p>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">12:15 pm</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-violet">
<a target="_blank" class="popover-left" data-content="Discover the new material design patterns introduced in Android L and understand how to implement the same." data-toggle="popover" data-original-title="New Material Design Patterns" href="https://funnel.hasgeek.com/droidcon2014/1337-new-material-design-patterns">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">New Material Design Patterns</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Soham Mondal</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1337-new-material-design-patterns"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">1:00 pm</div>
</td>
<td colspan="2">
<div class="tiny prose pad-3q-left prose-type clearfix theme-box-left theme-transparent">
<div class="push-1q-top"><span class="calm italic nospace-top push-1q regular-prose">Lunch</span></div>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">2:00 pm</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-transparent">
<a target="_blank" class="popover-left" data-content="" data-toggle="popover" data-original-title="Thanking Volunteers, Communities and Sponsors" href="2014.html">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Thanking Volunteers, Communities and Sponsors</span>
</div>
</a>
</div>
</td>
<td></td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">2:15 pm</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-green">
<a target="_blank" class="popover-left" data-content="How Bluetooth low energy beacons can be leveraged to detect proximity and indoor positioning." data-toggle="popover" data-original-title="Leveraging BLE beacons for proximity & positioning" href="https://funnel.hasgeek.com/droidcon2014/1317-leveraging-ble-beacons-for-proximity-positioning">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Leveraging BLE beacons for proximity & positioning</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Vijay Snajos Alexander</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1317-leveraging-ble-beacons-for-proximity-positioning"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>
<td rowspan="4">
<div class="nospace-bottom clearfix theme-box-right theme-green">
<a target="_blank" class="popover-right" data-content="" title="" data-toggle="popover" data-original-title="Apps for your wrists and eyes - ( Demo on Google Glass along with app development on Android Wear)" href="https://funnel.hasgeek.com/droidcon2014/1269-apps-for-your-wrists-and-eyes-demo-on-google-glass">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Apps for your wrists and eyes - ( Demo on Google Glass along with app development on Android Wear)</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1269-apps-for-your-wrists-and-eyes-demo-on-google-glass"><i class="icon-filter"></i></a> </span>
<span class="tiny ">Kashi Vishwanath</span>
</p>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">2:45 pm</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-violet">
<a target="_blank" class="popover-left" data-content="Okulus provides Android developers with a drop-in, easy to use method of applying these effects without worrying about performance and memory usage." data-toggle="popover" data-original-title="okulus: Image effects to make your apps stand out" href="https://funnel.hasgeek.com/droidcon2014/1285-okulus-image-effects-to-make-your-apps-stand-out">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">okulus: Image effects to make your apps stand out</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Vinay S. Shenoy</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1285-okulus-image-effects-to-make-your-apps-stand-out"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">3:00 pm</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-pink">
<a target="_blank" class="popover-left" data-content="What motivated us to change the design of an app that had already seen close to 4 million downloads and appreciation across the domain? What are the most important points that folks need to take into consideration while one speaks about UX?" data-toggle="popover" data-original-title="What does it take to build an app like Freecharge?" href="https://funnel.hasgeek.com/droidcon2014/1307-what-does-it-take-to-build-an-app-like-freecharge">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">What does it take to build an app like Freecharge?</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Raghuram Trikutam</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1307-what-does-it-take-to-build-an-app-like-freecharge"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">3:45 pm</div>
</td>
<td colspan="2">
<div class="tiny prose pad-3q-left prose-type clearfix theme-box-left theme-transparent">
<div class="push-1q-top"><span class="calm italic nospace-top push-1q regular-prose">High tea - sponsored by Epson</span></div>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">4:15 pm</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-red">
<a target="_blank" class="popover-left" data-content="Unlock the full potential of your Android app with Mobile Deep Linking." data-toggle="popover" data-original-title="Mobile Deep Linking" href="https://funnel.hasgeek.com/droidcon2014/1315-mobile-deep-linking">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Mobile Deep Linking</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Ramu K.C.</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1315-mobile-deep-linking"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">4:30 pm</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-pink">
<a target="_blank" class="popover-left" data-content="" data-toggle="popover" data-original-title="Flash Talks" href="2014.html">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Flash Talks</span>
</div>
</a>
</div>
</td>
<td></td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">5:00 pm</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-transparent">
<a target="_blank" class="popover-left" data-content="" data-toggle="popover" data-original-title="breakout" href="2014.html">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">breakout</span>
</div>
</a>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
</div>
<div class="col-sm-6">
<section id="schedule-day2" class="schedule push-two clearfix">
<div class="row-fluid text-center">
<h2 class="legible-prose col-lg-12 col-md-12 col-sm-12 col-xs-12 large all-caps space-two-bottom"> December 6 (Day 2)</h2>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="">
<table class="table-bordered">
<thead>
<tr class="text-center">
<th>Time</th>
<th>Track 1</th>
<th>Track 2</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">08:30 am</div>
</td>
<td colspan="2">
<div class="tiny prose pad-3q-left prose-type clearfix theme-box-left theme-transparent">
<div class="push-1q-top"><span class="calm italic nospace-top push-1q regular-prose">Check-in & Breakfast</span></div>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">09:30 am</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-red">
<a target="_blank" class="popover-left" data-content="Come and learn about Android app optimisations (especially bandwidth) for a client server sync architecture." data-toggle="popover" data-original-title="Android: Building for India. Gearing for 100 Million Users." href="https://funnel.hasgeek.com/droidcon2014/1333-android-building-for-india-gearing-for-100-million">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Android: Building for India. Gearing for 100 Million Users.</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Paresh Goel</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1333-android-building-for-india-gearing-for-100-million"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>
<td></td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">10:15 am</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-pink">
<a target="_blank" class="popover-left" data-content="What does it take to nurture community engagement around an Open source project and how to scale it to commercial viability - The CyanogenMod way." data-toggle="popover" data-original-title="Scaling Open Source" href="https://funnel.hasgeek.com/droidcon2014/1319-scaling-open-source">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Scaling Open Source</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Abishek Devkota</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1319-scaling-open-source"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>
<td></td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">11:00 am</div>
</td>
<td colspan="2">
<div class="tiny prose pad-3q-left prose-type clearfix theme-box-left theme-transparent">
<div class="push-1q-top"><span class="calm italic nospace-top push-1q regular-prose">Tea break</span></div>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">11:30 am</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-violet">
<a target="_blank" class="popover-left" data-content="Using unorthodox ways to build Android UIs." data-toggle="popover" data-original-title="Abstract UI Concepts" href="https://funnel.hasgeek.com/droidcon2014/1313-abstract-ui-concepts">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Abstract UI Concepts</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Sriram Ramani</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1313-abstract-ui-concepts"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>
<td rowspan="2">
<div class="nospace-bottom clearfix theme-box-right theme-pink">
<a target="_blank" class="popover-right" data-content="In this session, we will look at how we can build mobile applications leveraging the power of the cloud. Using standard development platforms like Eclipse or Visual Studio, we see how we can add additional capabilities like authentication, notifications and offline support to our applications easily. We then take a look at deploying and monitoring these applications on the cloud and configuring our applications to scale on demand to reach a global audience." title="" data-toggle="popover" data-original-title="Build, Deploy and Scale mobile applications with the Cloud" href="https://funnel.hasgeek.com/droidcon2014/1346-build-deploy-and-scale-mobile-applications-with-th">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Build, Deploy and Scale mobile applications with the Cloud</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1346-build-deploy-and-scale-mobile-applications-with-th"><i class="icon-filter"></i></a> </span>
<span class="tiny ">Microsoft-sponsored Workshop</span>
</p>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">12:15 pm</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-red">
<a target="_blank" class="popover-left" data-content="An app is successful only if it is stable, has a well defined road map of features and is regularly updated. Improving productivity by letting a developer focus on development, goes a long way in achieving these." data-toggle="popover" data-original-title="App Testing, CI and Automation" href="https://funnel.hasgeek.com/droidcon2014/1298-app-testing-ci-automation">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">App Testing, CI and Automation</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Sukesh Soman</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1298-app-testing-ci-automation"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">1:00 pm</div>
</td>
<td colspan="2">
<div class="tiny prose pad-3q-left prose-type clearfix theme-box-left theme-transparent">
<div class="push-1q-top"><span class="calm italic nospace-top push-1q regular-prose">Lunch</span></div>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">2:00 pm</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-transparent">
<a target="_blank" class="popover-left" data-content="" data-toggle="popover" data-original-title="Feedback session + Thanking EP" href="2014.html">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Feedback session + Thanking EP</span>
</div>
</a>
</div>
</td>
<td></td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">2:15 pm</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-orange">
<a target="_blank" class="popover-left" data-content="A session on what is involved to convert your android phone to detect jerks and falls." data-toggle="popover" data-original-title="Triggering with jerks and falls." href="https://funnel.hasgeek.com/droidcon2014/1314-triggering-with-jerks-and-falls">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Triggering with jerks and falls.</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Chinmayi</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1314-triggering-with-jerks-and-falls"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>
<td rowspan="4">
<div class="nospace-bottom clearfix theme-box-right theme-orange">
<a target="_blank" class="popover-right" data-content="" title="" data-toggle="popover" data-original-title="Hacking through the Android source code." href="https://funnel.hasgeek.com/droidcon2014/1276-hacking-through-the-android-os-code">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Hacking through the Android source code.</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1276-hacking-through-the-android-os-code"><i class="icon-filter"></i></a> </span>
<span class="tiny ">Arnav Gupta</span>
</p>
</div>
</td>
</tr>
<tr>
<td class="text-center">
<div class="all-caps tiny nospace-top semibold">2:30 pm</div>
</td>
<td >
<div class="nospace-bottom clearfix theme-box-right theme-pink">
<a target="_blank" class="popover-left" data-content="A session goes through the process of building a consumer Android app by taking an example of a simple social network." data-toggle="popover" data-original-title="Create your own social network app using Parse.com" href="https://funnel.hasgeek.com/droidcon2014/1283-create-your-own-social-network-app-using-parse-com">
<div class="nospace-top push-1q secondary-prose prose-type">
<span class="">Create your own social network app using Parse.com</span>
</div>
</a>
<p class="prose-type tiny calm">
<span class="tiny ">Varun</span>
<span class="gray"><a href="https://funnel.hasgeek.com/droidcon2014/1283-create-your-own-social-network-app-using-parse-com"><i class="icon-filter"></i></a> </span>
</p>
</div>
</td>