forked from amitness/applytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhack_app-2016-01-07-00_08_03.sql
4578 lines (4558 loc) · 370 KB
/
hack_app-2016-01-07-00_08_03.sql
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
-- phpMyAdmin SQL Dump
-- version 4.5.3.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 07, 2016 at 12:08 AM
-- Server version: 5.5.46-0ubuntu0.14.04.2
-- PHP Version: 5.5.9-1ubuntu4.14
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `hack_app`
--
-- --------------------------------------------------------
--
-- Table structure for table `app`
--
CREATE TABLE `app` (
`appname` varchar(27) DEFAULT NULL,
`appid` varchar(32) DEFAULT NULL,
`icon_url` varchar(101) DEFAULT NULL,
`category` varchar(16) DEFAULT NULL,
`last_update` varchar(17) DEFAULT NULL,
`average_rating` varchar(14) DEFAULT NULL,
`people_count` varchar(12) DEFAULT NULL,
`rating_one` varchar(10) DEFAULT NULL,
`rating_two` varchar(10) DEFAULT NULL,
`rating_three` varchar(12) DEFAULT NULL,
`rating_four` varchar(11) DEFAULT NULL,
`rating_five` varchar(11) DEFAULT NULL,
`website_url` varchar(109) DEFAULT NULL,
`email` varchar(38) DEFAULT NULL,
`downloads` varchar(29) DEFAULT NULL,
`price` varchar(5) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `app`
--
INSERT INTO `app` (`appname`, `appid`, `icon_url`, `category`, `last_update`, `average_rating`, `people_count`, `rating_one`, `rating_two`, `rating_three`, `rating_four`, `rating_five`, `website_url`, `email`, `downloads`, `price`) VALUES
('Facebook', 'com.facebook.katana', '//lh3.googleusercontent.com/ZZPdzvlpK9r_Df9C3M7j1rNRi7hhHRvPhlklJ3lfi5jk86Jd1s0Y5wcQ1QgbVaAP5Q=w300', 'Social', '17 December 2015', '4.0', '35,385,143', '20135757', '5521820', '3290060', '1738674', '4693237', 'https://www.facebook.com/facebook&sa=D&usg=AFQjCNGRHFFrpM0oatFPPR2o-FZgqzAIvg', '[email protected]', '1,000,000,000 - 5,000,000,000', '0'),
('Twitter', 'com.twitter.android', '//lh3.ggpht.com/lSLM0xhCA1RZOwaQcjhlwmsvaIQYaP3c5qbDKCgLALhydrgExnaSKZdGa8S3YtRuVA=w300', 'Social', 'January 4, 2016', '4.2', '6,698,118', '4061800', '1231258', '562872', '261169', '579741', 'https://support.twitter.com/articles/20169915&sa=D&usg=AFQjCNGiLHxAOkToaFzXEuy4yKQtWEyaqA', '[email protected]', '100,000,000 - 500,000,000', '0'),
('LinkedIn', 'com.linkedin.android', '//lh3.googleusercontent.com/00APBMVQh3yraN704gKCeM63KzeQ-zHUi5wK6E9TjRQ26McyqYBt-zy__4i8GXDAfeys=w300', 'Social', 'December 18, 2015', '4.2', '816,959', '422367', '246445', '85122', '26136', '36888', 'http://www.linkedin.com/&sa=D&usg=AFQjCNFUXFB3VQmt1nCaxxIwPweN-hlnjw', '[email protected]', '50,000,000 - 100,000,000', '0'),
('Candy Crush Saga', 'com.king.candycrushsaga', '//lh5.ggpht.com/81M05pEyFiOqKt8CashUoz66iJAhL-3PHHbAil108QkU9sKeVZBuZaNJiV7b0gZ2GFU=w300', 'Casual', '14 December 2015', '4.3', '13,743,868', '8993600', '2450396', '1010559', '437684', '851596', 'http://about.king.com/candy-crush-saga-faqs&sa=D&usg=AFQjCNFoeSkb8lNE6AwhZM0_zL1hKsxf0Q', '[email protected]', '100,000,000 - 500,000,000', '0'),
('Temple Run 2', 'com.imangi.templerun2', '//lh3.googleusercontent.com/C_W13cNqYPW_2nGaT424dOcnRavlrvizVhAk8KbNnAyYsV6SJ4OfQW0Vx-kLD9vsjLo=w300', 'Action', '15 December 2015', '4.3', '5,781,910', '3804555', '900373', '448240', '229719', '398985', 'http://www.imangistudios.com/contact.html&sa=D&usg=AFQjCNHmJGmIKtvMBmjP32ju-nrNezjqDg', '[email protected]', '100,000,000 - 500,000,000', '0'),
('Clash of Clans', 'com.supercell.clashofclans', '//lh6.ggpht.com/1eVPA6Iukw-F4i5xq1ZWicaKBzmprLGw98YhdG20E-wlsHHg3PcKJqbY_fWLdJeGRw=w300', 'Strategy', 'December 18, 2015', '4.6', '21,457,986', '16853168', '2380936', '838190', '394158', '991533', 'http://supercell.helpshift.com/a/clash-of-clans/&sa=D&usg=AFQjCNFcI_matDwefmbD0Azk46RfAf9Hag', '[email protected]', '100,000,000 - 500,000,000', '0'),
('Chrome Browser - Google', 'com.android.chrome', '//lh3.ggpht.com/O0aW5qsyCkR2i7Bu-jUU1b5BWA_NygJ6ui4MgaAvL7gfqvVWqkOBscDaq4pn-vkwByUx=w300', 'Communication', '9 December 2015', '4.2', '3,836,544', '2426697', '658912', '291392', '144875', '314668', 'http://www.google.com/chrome/android&sa=D&usg=AFQjCNH_BzcE3IMaezxMxXw55U0XzGe9bA', '[email protected]', '1,000,000,000 - 5,000,000,000', '0'),
('WeChat', 'com.tencent.mm', '//lh3.ggpht.com/zC5Q4atR1JytzagSPIPAg-z4uItJGsTVjZHvf9nSeGdwrwnuPPW_OqMk6FAI3DJvzQ=w300', 'Communication', '10 December 2015', '4.2', '4,245,451', '2672862', '728963', '366397', '160154', '317032', 'http://www.wechat.com&sa=D&usg=AFQjCNESiALOmnwZv6N7VJ7EZM4l8PwI7A', '[email protected]', '100,000,000 - 500,000,000', '0'),
('Viber', 'com.viber.voip', '//lh5.ggpht.com/jWKeAZUzPtUqgZdcLDSa7vd3iwdan8QX4nlYlHBMkJHcxwr-uZU40vDmrMKczCmiCBRf=w300', 'Communication', '22 December 2015', '4.3', '8,066,317', '5263011', '1381064', '626607', '285339', '510253', 'http://www.viber.com/&sa=D&usg=AFQjCNHpeZ0-ihb0K4SEkbnG_2zLJvn6Mg', '[email protected]', '100,000,000 - 500,000,000', '0'),
('Hangouts', 'com.google.android.talk', '//lh6.ggpht.com/5puZavg4x2pThSTJgos1sARWoARea7tzr_B8AWEwn2lV05RoXo9M8BM2XwcvwG6nIGc=w300', 'Communication', '11 December 2015', '3.9', '1,510,573', '780112', '268879', '167464', '80177', '213941', 'https://support.google.com/hangouts/?p%3Dandroidhelp&sa=D&usg=AFQjCNEoBvWyfqjczPl5px3LYnv6ZUpVgw', '[email protected]', '1,000,000,000 - 5,000,000,000', '0'),
('Messenger', 'com.facebook.orca', '//lh5.ggpht.com/0VYAvZLR9YhosF-thqm8xl8EWsCfrEY_uk2og2f59K8IOx5TfPsXjFVwxaHVnUbuEjc=w300', 'Communication', '16 December 2015', '3.9', '22,222,474', '12091134', '3548190', '2162105', '1085533', '3335425', 'http://www.facebook.com/apps/application.php?id%3D256002347743983&sa=D&usg=AFQjCNFWPjchjyv4a5zZErJcQy-hDTEIgA', '[email protected]', '1,000,000,000 - 5,000,000,000', '0'),
('WhatsApp Messenger', 'com.whatsapp', '//lh6.ggpht.com/mp86vbELnqLi2FzvhiKdPX31_oiTRLNyeK8x4IIrbF5eD1D5RdnVwjQP0hwMNR_JdA=w300', 'Communication', '24 November 2015', '4.4', '32,897,166', '23257503', '4958334', '2034464', '920249', '1725786', 'http://www.whatsapp.com/&sa=D&usg=AFQjCNG7hnGBZcdhY01DCoWxe7f3gSXlJQ', '[email protected]', '1,000,000,000 - 5,000,000,000', '0'),
('Slack', 'com.Slack', '//lh3.googleusercontent.com/CzlsZP3xUHeX3HAGdZ2rL9mK6_C-6T1-YWeBeM8nB3ilmfPSBHCFx4-UbQr8MnQms3d9=w300', 'Business', '18 December 2015', '4.4', '25,746', '15899', '6738', '1838', '612', '659', 'http://slack.com&sa=D&usg=AFQjCNGpNtDpdl2R0WYn82Ens7kP8Q3-Rw', '[email protected]', '1,000,000 - 5,000,000', '0'),
('Dropbox', 'com.dropbox.android', '//lh6.ggpht.com/fR_IJDfD1becp10IEaG2ly07WO4WW0LdZGUaNSrscqpgr9PI53D3Cp0yd2dXOgyux8w=w300', 'Productivity', '16 December 2015', '4.4', '1,309,008', '886564', '241513', '85598', '31562', '63671', 'http://www.dropbox.com&sa=D&usg=AFQjCNHkUkIvFbMV_t27v7cTn2Rd8cyuVw', '[email protected]', '500,000,000 - 1,000,000,000', '0'),
('TodoToday for Todo.ly', 'jabanaki.todo.todoly', 'https://lh4.ggpht.com/TTw3h7QQLXeA15uH2NEV4_Gb1tv_OOQ28Rxv0IfTgadMCk_Qwf9boUys5xFeJbjOem4=w300', 'Productivity', 'December 17, 2015', '2.9', '69', '15', '14', '11', '5', '24', 'http://jabanaki.com&sa=D&usg=AFQjCNEXPbm38QbhbgChHpanbln5fDRAZQ', '[email protected]', '10,000 - 50,000', '0'),
('Evernote', 'com.evernote', '//lh5.ggpht.com/u_ZwBnOs3s7nHA2v4XDCrJknAAVVHQIzK4mVF8tbx1n62-_LrDSopwHviqeNuDIFigc=w300', 'Productivity', '15 December 2015', '4.6', '1,363,516', '990863', '275011', '49844', '16442', '31141', 'http://www.evernote.com&sa=D&usg=AFQjCNHjz04lGDlIindmH3Ax1DOtqvT2mA', '[email protected]', '100,000,000 - 500,000,000', '0'),
('UC Browser Mini - Save Data', 'com.uc.browser.en', '//lh4.ggpht.com/Rs7TpwyWLFozmLLBEGMNG6vpAMLBNoQrbOeoOCv7VEn94uP_xBKPgMfROdIw6io15ik=w300', 'Communication', 'December 21, 2015', '4.5', '1,567,873', '1108020', '258652', '96535', '41504', '63149', 'http://ucweb.com&sa=D&usg=AFQjCNEWbRb57g9VZMwAIAxWp7ElDGPpBA', '[email protected]', '50,000,000 - 100,000,000', '0'),
('Hamro Nepali Keyboard', 'com.hamrokeyboard', '//lh3.ggpht.com/gT4dR0TcbuJIhM5bSo1kEIcSoVOk1ZQQ7g8PLkxY-0gcrRyNz0_FBysDCEoPDq6-cT7q=w300', 'Tools', '8 February 2015', '4.3', '15,609', '10119', '2482', '1243', '717', '1048', 'http://www.hamropatro.com&sa=D&usg=AFQjCNEpTl0yEtZJTHzzRJhw0A7Ife9GkQ', '[email protected]', '1,000,000 - 5,000,000', '0'),
('Opera Mini web browser', 'com.opera.mini.native', '//lh3.googleusercontent.com/CrsX4NgCfgY1B8ry-cP0qdEgR7cB7717qmVajenGgWuh5t7jCg6cRQxLi1c73hj3iQ=w300', 'Communication', '8 December 2015', '4.3', '950,422', '589764', '194835', '82356', '31805', '51660', 'http://www.opera.com&sa=D&usg=AFQjCNEWjrTRxO2WL8FzyZeelg0ba0vy3A', '[email protected]', '50,000,000 - 100,000,000', '0'),
('ekantipur', 'com.shirantech.kantipur', '//lh3.googleusercontent.com/SNGk4nmcGy53vPes2fHR0WpbymjmcF22qPFFJEugKFxzRtzy62LNecri-ST_PUA_pQ=w300', 'News & Magazines', '3 November 2015', '4.0', '10,453', '5567', '1938', '1090', '640', '1218', 'http://www.ekantipur.com&sa=D&usg=AFQjCNHB7aqR4wWh2D9WhABqoI6OMp1URw', '[email protected]', '100,000 - 500,000', '0'),
('Firefox for Android', 'org.mozilla.firefox', '//lh5.ggpht.com/8PODwBXKk4L201m4IO1wifRDfbn4Q1JxNxOzj-5TXPJ85_S-vOqntLi7TsVyeFQM0w4=w300', 'Communication', '15 December 2015', '4.4', '2,162,958', '1442170', '373120', '150667', '71896', '124958', 'http://support.mozilla.org/mobile&sa=D&usg=AFQjCNFPOUsp0ro9bXBxSm9kazIxys7Rng', '[email protected]', '100,000,000 - 500,000,000', '0'),
('Hamro Patro', 'com.hamropatro', '//lh3.ggpht.com/n0nOd91BjlEjD2DBAFucckiRdg7GX-mLoYXM8cbIstih934Pldnu9E5-sEEkLFozX8U=w300', 'Productivity', '23 December 2015', '4.5', '27,623', '20123', '4112', '1579', '727', '1082', 'http://www.hamropatro.com&sa=D&usg=AFQjCNEpTl0yEtZJTHzzRJhw0A7Ife9GkQ', '[email protected]', '1,000,000 - 5,000,000', '0'),
('Angry Birds', 'com.rovio.angrybirds', '//lh6.ggpht.com/M9q_Zs_CRt2rbA41nTMhrPqiBxhUEUN8Z1f_mn9m89_TiHbIbUF8hjnc_zwevvLsRIJy=w300', 'Arcade', '11 December 2015', '4.4', '4,584,663', '3201050', '662054', '295007', '144867', '278294', 'http://www.rovio.com&sa=D&usg=AFQjCNHvjmrRiO9nJs9iqJoCen5OEfYg9Q', '[email protected]', '100,000,000 - 500,000,000', '0');
-- --------------------------------------------------------
--
-- Table structure for table `comments`
--
CREATE TABLE `comments` (
`app_id` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`sentiment` varchar(10) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `comments`
--
INSERT INTO `comments` (`app_id`, `comment`, `sentiment`) VALUES
('com.evernote', ' enjoying i\'m unable to delete items from the trash on either samsung phone or tablet. are you able to let me know how or make this available in an update sometime? thanks. ', 'FALSE'),
('com.evernote', ' neat idea, but let-down by no linux support. an application like evernote is only as useful as the service behind it, and the service behind a concept like evernote is only as useful as the availability of an application or program to connect to said service... which is where evernote fails - it is not natively available for linux-based operating systems (such as ubuntu). sure, the android application works well enough - but when the only way to access evernote under a linux-based operating system is via a web browser, it quickly looses its appeal. ', 'FALSE'),
('com.evernote', ' great application, but the premium notifications have become too invasive, leading to unpleasant clutter. alternative options are becoming much more attractive due to this. ', 'FALSE'),
('com.evernote', ' fantastic and helpful i find this app so helpful. i have the paid version, wouldn\'t really want the free version, as i love being able to take photos of business cards and turn them into contacts. it also has the ability to find text within pdfs, which is also extremely useful. ', 'TRUE'),
('com.evernote', ' great app minus the spam. best note-taking app! honestly, this app does everything you could possibly need it to. keywords make searching for notes so easy. however... please stop pushing me so hard into paying for premium plans! i do not need nor do i want them. obviously if i\'m dismissing the ad every time i use the app i must not be interested. stop spamming me. edit: why are you still spamming me? please please stop. no does not mean keep asking... ', 'FALSE'),
('com.evernote', ' absolutely the best for saving documents, forms, notes or whatever it is that you may end up needing on the go. you can have one or twenty different books to store and organize your information in. edit word and excel documents without having to save them to your computer and save them again into your books. tag one document in ten different locations so if you can use it in multiple different situations you don\'t have to worry about where you saved it. just look it up under the tag that you need to use it for. it\'s that easy!! ', 'TRUE'),
('com.evernote', ' confusing i used the app to import important notes from another smartphone note book to my current phone. although it transferred the information, it is so hard to find it. ..it disappeared completely ', 'FALSE'),
('com.evernote', ' camera option is horrible you can\'t crop the image sideways... it has to be perfect square or rectangle. camscanner or microsoft lens are better options for document images. and it needs notebooks within notebooks. the camera flash always on, and when you do needs it, it takes very long time to turn itself off after taking the picture. the document camera likewise needs to detect the edge of the document. editing the images must be done within the interface without going through skitch. ', 'FALSE'),
('com.evernote', ' the most useful app in the marketplace if used properly . . . if you\'ve ever thought how nice it would be to get rid of all the paper and clutter in your life and yet still have it available anytime/all the time using powerful searches, then evernote is for you. take a picture of anything and store it; scan paper using your smart phone or scanner and store it all in a note; forward emails directly into evernote; drag and drop computer files, create a note using your finger in handwriting or text mode, clip pages or parts of web pages, use voice . . . ', 'TRUE'),
('com.evernote', ' good app.. it\'s a good app for people especially student like me...but i just think that it would be better if it become more colourful..maybe not too colourful but more colour..it will be more attractive to student like me to use it..thanks for the app btw.. ', 'TRUE'),
('com.evernote', ' best free note ever !!! sometimes evernote pop up to purchase premium but its not annoying .. features and multiple devices support are very wide use. awesome and i love it. ', 'TRUE'),
('com.evernote', ' it\'s useful a great app and pretty much an essential part of my organization. a minor complaint is that the desktop program doesn\'t look as appealing as the mobile app, and that the mobile version is lacking some useful functions (e.g. the ability to delete tags, or to strikethrough text). ', 'FALSE'),
('com.evernote', ' great app! good tool for my arsenal. it\'s like a virtual notebook or binder or file cabinet for me, and its wonderful. i use different apps for quick notes and tasks (i would use it for tasks if it had repeating reminders & ability to snooze them, then also sync w/google calendar), but if i need to save long-term notes, or receipts, or travel plans, prayers & spiritual writings, how-tos, etc., evernote is the app for that. easy to use, never loses my notes; it is dependable and reliable. i love using the desktop version also. ', 'TRUE'),
('com.evernote', ' great and solid app. love the widget. most important feature about this app in my opinion. couple things: number and bullet point lists don\'t show as formatted when seen on the widget. please fix. also, i\'d personally like it if emojis were implemented. i\'d also like it if we had more control over the appearance of the widget (opacity, font size/color, background color). ', 'TRUE'),
('com.evernote', ' new user, great app. have suggestions so far, i love working with the app on all devices (desktop, web, & android phone). it integrates very well with other related apps! however, i would give 5 stars if developers could do 2 things: 1) allow check boxes/bullet items to be easily re-ordered [drag/drop] it\'s kind of a big deal for me and 2) allow duplication of notes. if these functions already exist, then hopefully someone will share how to do it, or i\'ll figure it out soon enough. and then i\'ll gladly rate 5 stars. great job guys! ', 'TRUE'),
('com.evernote', ' very good, esp with penultimate i really like the cross device syncing and how easy it is to use. please don\'t make this microsoft word, its great as it is. i esprcially like being able to work in penultimate and find it in evernote with everything else ', 'TRUE'),
('com.evernote', ' good but ui ease of use still declining i\'ve used evernote for years and it\'s power is still there in its ability to find notes but its ui is still in steady decline with a lack of ease of use. needs cleaner, cleaner separation of functionality. nowadays i\'m having to dbl click a found note to view instead of a single click showing the note content. disappointing to see this once magnificent software reduced to the current level of ui confusion that so many other programs exhibit as well. ', 'TRUE'),
('com.evernote', ' useful app very useful app in my opinion. note taking is great with voice recognition. being able to add pics brings a nice presentation aspect when sharing with a group. the functionality just needs to keep improving for the average person to be perfect. ', 'TRUE'),
('com.evernote', ' really cool and organized. the new update is really amazing, the widgets are cool, however, it would be helpful if you could add right to left reading and writing support (like hebrew, \'cause when i want to add check box the text removed to the left). also, you need to add an option to change the size of the preview (don\'t like it\'s so small), and app animations would be nice. something else to your attention: i want to by the app, but it really (really) expensive. if it was cheaper and one time charge i would buy it. ', 'TRUE'),
('com.evernote', ' nice app i suggest you to add a word-count feature and font size. i think it\'s essential feature for a note app. but, well, keep the good things up! you\'ve done a really amazing job! thanks! đâąâąâąâąâą ', 'TRUE'),
('com.evernote', ' it rocks this thing is great, i keep documents, photos, everything, accessible on all my devices current. very slick ', 'TRUE'),
('com.evernote', ' annoying in app purchases a great product but constant popups encouraging you to upgrade ruin the experience ', 'FALSE'),
('com.evernote', ' more than notes! just use it for notes, but it is a powerful app. like the checklist, but we use a shopping list program for that and sync with my wife\'s htc m8. may want to try sharing with this app soon, though. ', 'TRUE'),
('com.evernote', ' awesome can\'t be productive without evernote. i always find myself searching for new and old notes. great app. ', 'TRUE'),
('com.evernote', ' great way to stay organized i jot notes for work, family, shopping lists, music , things to do and stories or news feed i want to come back to. great place to store everything. ', 'TRUE'),
('com.uc.browser.en', ' pls fix these bugs : when ever u set the search engine as google it again automatically shifts to yahoo and yahoo is sick imean iam really fond of google so please ...fix this bug.. ', 'FALSE'),
('com.uc.browser.en', ' disappointed first of all i\'d like to thank the creators of the uc browser for this is the best browser that i have ever used. now why 3 stars ,because i was planning to download a game but uc browser can\'t download it. the page loads but no downloads and i have to use mozilla because of this particular reason..i want to give you guys a five star but until you fix this i will just give you 3 star...thank you ....just please help me with this one i want to use only one browser. ', 'FALSE'),
('com.uc.browser.en', ' websites not loading or taking too long to load when i begin browsing the first webpage opens fast but sometimes websites do not load even if there is good mobile data connection but they load with opera mini. please fix this bug. ', 'FALSE'),
('com.uc.browser.en', ' good good for slow connection this uc minilite version does not take much space/memory in ram. it is faster also than uc. ', 'TRUE'),
('com.uc.browser.en', ' i love it i love using uc browser mini because browsing speed of it is marvelous and mind blowing and the size of this app is so small. so overall i would like to say that size of it is small but the work of it is big and awesome. ', 'TRUE'),
('com.uc.browser.en', ' uc hello uc browser i start uc browser it s open when i type search bar web address it s loading loading it s not showing any thing but if i use vpn its working well it happen oman lost 2 week so kindly find the solution ', 'TRUE'),
('com.uc.browser.en', ' best browser in short size i cut 1 star because i am facing some issue in downloading two items at the same. 1 item\'s downloading speed is good but another\'s speed is very slow. ', 'FALSE'),
('com.uc.browser.en', ' fastest browser it\'s fast, it\'s reliable, the only problem i have with it, it don\'t like to download video\'s or game\'s. so both video\'s & game\'s it goes to the site just no downloads come up & also the lil emoji\'s that have action to them, it don\'t show their lil action. i would give a 5 star rating but until then a 3 star is all. i hate that to cause this really is a fast browser, maybe the fastest. so please fix those bugs! ', 'TRUE'),
('com.uc.browser.en', ' outstanding this app is not only fabulous on android platform but also popular. this is the first app which can be useful for all people. ', 'TRUE'),
('com.uc.browser.en', ' update few things.... uc mini is very speed for dwnldng and other things. and plz provide an option for online videos dwnldng and youtube dwnldng. i hope iam expecting this feature from you as soon as. ', 'TRUE'),
('com.uc.browser.en', ' all in one app dis version of uc browser mini disappointed me as search showing in notification bar. and when v download anything was not visble in notification bar as previous version. its request to look into it and try to solve it otherwise as i have to uninstall it and goto some other app. ', 'FALSE'),
('com.uc.browser.en', ' speed mode not work why speed mode not work anymore in some site? it always open in mobile mode even the speed mode on... -edit: after update, speed mode become more useless, even now in tumblr/blog, also somesite become cant opened, and video stream sound like lower than before, its hard to hear it withou earphone, do you want me give 1 star? please fix it if i wrong -edit-2: what i want is speed mode bcome useful again why you give advice to turn off it? i hv did clear cache or everything you said but nothing happened ', 'FALSE'),
('com.uc.browser.en', ' fast on slow phones this seems to be the fastest browser i\'ve been able to find for slow phones. its works great on my ancient samsung, and nothing usually works great on this old phone lol ', 'TRUE'),
('com.uc.browser.en', ' downloading files in background i started a song download but it failed, then after 2 minutes it automatically downloaded 2 copies of the song in background.... ', 'TRUE'),
('com.uc.browser.en', ' regular uc better on powerful devices this is very similar to the regular uc browser in function. in some ways the layout is cleaner especially in the settings menu. the major advantage here is in memory usage typically this will use about 40mb starting up. the regular uc browser uses almost four times the memory. however on my samsung galaxy edge the scroll speed is very laggy and stilted. i love uc but i\'m sticking with the full version where no such lag occurs. it\'s probably not fair to compare them on a high end phone however. ', 'TRUE'),
('com.uc.browser.en', ' nice update really nice update this update is awesome, but the quick search is really usless, but its okay. keep up the good works (^_^) ', 'TRUE'),
('com.uc.browser.en', ' awesome app it is good and very useful app it is very fast in dowload and easy to use anyone can handle it ', 'TRUE'),
('com.uc.browser.en', ' bug whenever i search anything it opens google i know i want to open google .. but after searching something for sometime it again opens new google.nd slows down the scrolling ... please fix this ... ', 'FALSE'),
('com.uc.browser.en', ' not what i expected i really thought that the new updates will make the app better, but instead it became worst. i\'m sorry to say that, and i wish if you put this review under consideration, and make the newest update better. ', 'FALSE'),
('com.uc.browser.en', ' browser issue hi team, when ever i press the back button/option, automatically it\'s closing the browser with a message. please fix this issue. ', 'FALSE'),
('com.uc.browser.en', ' best browser for android if you want a browser for android then this is the best browser however to download wallpapers it is not good because it downloads it in bad quality otherwise it is best ', 'TRUE'),
('com.uc.browser.en', ' too many useless features does anybody actually use the speed dial cards? why can\'t i get rid of the discovery button on speed dial? also, the my videos setting is pointless because i have a video player. sometimes, less is more. ', 'FALSE'),
('com.uc.browser.en', ' some time creating problm network problm it seems err more reasons showing.. ', 'FALSE'),
('com.uc.browser.en', ' neat nice ,smooth ,speed but downloading is lacking in speed correct this i\'ll give u 5 star ', 'FALSE'),
('com.uc.browser.en', ' pics are not loaded i love using uc browser but the only erorr i m facing that when i login fb pic are not loaded... plz fix dis issue ', 'TRUE'),
('com.uc.browser.en', ' simple and powerfull! it\'s fast, small and perfectly designed for phone with low ram like my htc one. if your official facebook application always crashes and takes a lot of space on your phone, i highly recommend you this browser! the facebook feature is amazing, it\'s very fast and notifications pop-ups, even when the browser is close. i love it! ', 'TRUE'),
('com.uc.browser.en', ' some problems are solved thank you. feeling good more and more. need to play high quality youtube video. its default quality really worst. new bugs can\'t download video on facebook. thanks for introducing play online on facebook. fix it and if i dont find anymore bug sure 5 star. ', 'TRUE'),
('com.uc.browser.en', ' great! keep it up! i\'ve been using uc mini for quiet a while and i have to say that you guys have done a great job! i have a 2g phone with low storage so it was hard for me to use youtube but you guys made my problem go away.great job keep it up! ', 'TRUE'),
('com.uc.browser.en', ' bullshit update... after updating its totally headache...nt able to download ...instead of mobiles its more suitable as pc...when we search anything its always searhing for websites..previously it was asking sepearately for web n image search...apart from this dwnldng is tatal worst as compare to previous version... ', 'FALSE'),
('com.uc.browser.en', ' !! ! problem ! !! thank u sir ,your speed mode off idea works ,now i can play video on u tube.but one more problem is occur, whenever i tried to open any webpage suddenly a black color screen appears find solution for it . ', 'FALSE'),
('com.uc.browser.en', ' brilliant app brilliant app for browsing and for fb.downloading is fastest compared to other browsers.one thing it has to improve is that it should be made safer for browsing nd some web pages does not open in this browser. ', 'TRUE'),
('com.uc.browser.en', ' malayalam font overlapping malayalam fonts are overlapping in facebook at speedmode. also automatically turn on facebook notification, if i turned off. please fix it. ', 'FALSE'),
('com.uc.browser.en', ' nice.. but one request... plz include \'find text\' option in page.. as in pc\'s browsers we press \'ctrl+f\' to find the text in the browser\'s page.. there should be an option of video quality adjustment in settings. ', 'TRUE'),
('com.uc.browser.en', ' sound decrease issue when i play a video in uc player its 100% sound is equal to my device 60% sound. why sound is decreased in uc mini and shows full volume ', 'FALSE'),
('com.uc.browser.en', ' excellent a excellent option if you are looking for a good browser which has speed and is less complicated too and solves most of the search options with built in quick links .good one mait !!!!!! ', 'TRUE'),
('com.uc.browser.en', ' very smooth i\'d say it\'s much better than just uc browser which loads pages as if you are on your laptop with a really bad server. love everything about it ! ', 'TRUE'),
('com.uc.browser.en', ' need more hey... its preety awsm but plz develop the download task as fast as uc browser big verson ', 'TRUE'),
('com.uc.browser.en', ' fb notification turns on automatically even after disabling it and tamil language is not quite clear...... ', 'FALSE'),
('com.uc.browser.en', ' almost, but not quite. this has so much potential, but i really would like a back function that works, i press back and wait, nothing happens. i press back again and it takes me to the homepage, same for the back button on the tablet, i\'m using a 1st gen nexus 7. ', 'TRUE'),
('com.uc.browser.en', ' fantastic love it.this is the best browser on the market.i\'v tried most of the others and they dont come close.keep up the good work. :-) ', 'TRUE'),
('com.hamrokeyboard', ' it\'s all awesome. can you devs please add more emojis when you have time :) no hurry, keep up the good work <3 ', 'TRUE'),
('com.hamrokeyboard', ' cannot use properly ञलञठŕ¤ŕ¤žŕ¤šŕ¤żŕ¤ ञन ऺरŕľŕ¤żŕľ चྠlet me edit the review after using this keyboard for a week. i am sorry but this keyboard is almost unusable. doesn\'t pick the right word, very very user unfriendly interface. pls make it usable.many thanks and hope it will get better so that i can reinstall it back again. ', 'FALSE'),
('com.hamrokeyboard', ' â
â
â
â
bestâ
â
â
â
hamro nepali keyboard is doubtlessly, the best keyboard for fluent nepali typing on android mobiles and tablets. it has given oppurtunity to thousands of nepalese people for sharing their thoughts, expressing their feelings and chatting up with buddies through common and national language i.e, nepali. thumbs up for creating this amazing app!!! wish you\'d also add some theme customization options and improved caps lock option. ', 'TRUE'),
('com.hamrokeyboard', ' i do not have word to appreciate this ..... so just thank u verrrry very very very much founder of its ', 'TRUE'),
('com.hamrokeyboard', ' good app and nice try dear, developers great job done but i would suggest u to get an idea with fleksy keyboard app also, for then not only me you shall get 5* rating from all around the world.also i would suggest you should make easy standard keys for hamro keyboard. all the best and hope you will update new innovative idea for this app soon.since i have suggested this app most of my frenz in nepal and overseas and since this app is one of the best app of mine i want to see more 5* for this app since you r the creator.đ ', 'TRUE'),
('com.hamrokeyboard', ' i loved it i used so many times so its more attractive me,bt every things r good if improve some more typeing system to essy type here is i got for typeing problem,so. ', 'TRUE'),
('com.hamrokeyboard', ' hamro keyboard it is fantastic app for mobile and to write in nepali or hindi. i use this app becoz type in english as nepali lipi it will change automatic in neali .eg. haami nepali hau it\'ll change into चञञྠनŕľŕ¤şŕ¤žŕ¤˛ŕľ चŕľŕľ¤ tq ', 'TRUE'),
('com.hamrokeyboard', ' this is it: so, this is gonna be the list of things you need to improve for constant five stars - include more emojis . the ones you provided don\'t even express enough feelings of a dog - provide instructions somewhere because people have uninstalled this app because they were more confused than they were thankful to you guys - when i capitalize english letterd, only one letter is capitalized and it goes back to lowercase. fix this - you guys are awesome i love this app - no more bugs keep up the great work :) ', 'TRUE'),
('com.hamrokeyboard', ' fix some things one letter is capitalized and it goes back again to lowercase,,emoji donot appear when i send them box appears but not emotions and include more emoji ', 'FALSE'),
('com.hamrokeyboard', ' very good application ever dharai ramro app ho yo but kalo background malai aalikati man paren plz hamrokeyboard team lai yo bharema ali sochnuna maile anurodh garchu ', 'TRUE'),
('com.hamrokeyboard', ' govinda gautam apps is good having facillity of typing both nepali and english fonts directly. but i couldn\'t type the half nepali font. ', 'TRUE'),
('com.hamrokeyboard', ' auto capitalization needed. it doesn\'t automatically capitalize the first letter of sentense in english keyboard. its an essential feature. please fix it. ', 'FALSE'),
('com.hamrokeyboard', ' good aap सŕ¤ŕ¤żŕ¤˛ŕľŕ¤¸ŕ¤ŕ¤ नŕľŕ¤şŕ¤žŕ¤˛ŕľ लŕľŕ¤ŕľŕ¤¨ŕ¤ŕľ लञŕ¤ŕ¤ż रञञŕľŕ¤°ŕľ ठिྠapp तर ठठह ळ ŕ¤ŕ¤¸ŕľŕ¤¤ŕ¤ž ŕ¤ŕľŕ¤šŕľ ŕ¤
ŕ¤ŕľŕ¤ˇŕ¤° लŕľŕ¤ŕľŕ¤¨ ŕ¤ŕľ ŕ¤
सŕ¤ŕ¤żŕ¤˛ŕľ ठྤ ', ''),
('com.hamrokeyboard', ' white theme please ञलञठिྠapp ŕ¤ŕľ function ञञ ŕ¤ŕľŕ¤šŕľ problem ŕ¤ŕľŕ¤¨ ྤ िྠसट ŕ¤ŕ¤¨ŕľŕ¤śŕ¤ž जञञྠapp चྠनŕľŕ¤şŕ¤žŕ¤˛ŕľ typing ŕ¤ŕľ लञŕ¤ŕ¤ż ྤྤ तर चलŕľŕ¤ŕ¤ž िྠapp ŕ¤ŕľ white version ŕ¤ŕľŕ¤ŕ¤żŕ¤°ŕ¤šŕľŕ¤ŕľ ŕ¤ŕľ ྤ ', 'FALSE'),
('com.hamrokeyboard', ' not for me i thought its better than multi language keyboard but its nowhere close to it. main problem is that it does not follow the traditional nepali keyboard pattern... this may be enough for some to post a short comment but not enough for the ones who likes to write in correct nepali. ', 'FALSE'),
('com.hamrokeyboard', ' excellent धŕľŕ¤°ŕľ सञल ऺŕ¤ŕ¤ż ञŕľŕ¤˛ŕľ िྠञञतŕľŕ¤° रञञŕľŕ¤°ŕľ र ŕ¤ŕ¤˛ŕ¤žŕ¤ŕ¤¨ ŕ¤
ति सŕ¤ŕ¤żŕ¤˛ŕľ application ऺञठ,, धŕľŕ¤°ŕľ धŕľŕ¤°ŕľ धनŕľŕ¤żŕ¤ľŕ¤žŕ¤ś ŕ¤ŕ¤¸ŕľŕ¤˛ŕľ develop ŕ¤ŕ¤°ŕľŕ¤ŕľ ŕ¤ŕ¤ż ऺनि ྤ ', 'TRUE'),
('com.hamrokeyboard', ' best apps िྠapps use ŕ¤ŕ¤°ŕľŕ¤ŕľ धŕľŕ¤°ŕľ नྠञन ऺरŕľŕ¤żŕľ तर ŕ¤
ट computer ŕ¤ŕľ लञŕ¤ŕ¤ż नि टनञŕ¤ŕ¤¨ŕľ ŕ¤ŕ¤žŕ¤ŕľ ŕ¤ŕ¤ ŕ¤
लि रञञŕľŕ¤°ŕľ चŕľŕ¤¨ŕľŕ¤ľŕľŕ¤żŕľ ', 'TRUE'),
('com.hamrokeyboard', ' loved it िྠapp धŕľŕ¤°ŕľ ŕ¤ŕ¤şŕ¤żŕľŕ¤ŕľ र सचिŕľŕ¤ŕľ ठतर ऺनि िसञञ ŕ¤ŕľŕ¤šŕľ ŕ¤ŕľŕ¤°ŕ¤ž ाऺྠŕ¤
ठटढྠसचिŕľŕ¤ŕľ चŕľŕ¤¨ŕľ ाििྠŕ¤ŕ¤¸ŕľŕ¤¤ŕľŕ¤ inserting symbols, inserting pictures from the galary, wedding 1,2,3 etc. and phonetic symbols so the english learners could be helped more. ŕ¤ŕ¤śŕ¤ž ŕ¤ŕ¤°ŕľŕ¤ŕľ ŕ¤ŕľŕ¤˛ŕ¤ż ŕ¤ŕ¤ž जिनञञ ŕ¤
ाजŕľŕ¤ż ऺनि िसलྠŕ¤ŕ¤ťŕľŕ¤¨ŕ¤ž ऺŕľŕ¤°ŕ¤żŕľŕ¤ ŕ¤ŕ¤°ŕľŕ¤¤ŕ¤žŕ¤šŕ¤°ŕľŕ¤˛ŕ¤žŕ¤ सचिŕľŕ¤ ŕ¤ŕ¤°ŕľŕ¤¨ŕľ ठྤ ', 'TRUE'),
('com.hamrokeyboard', ' very good apps धŕľŕ¤°ŕľ रञञŕľŕ¤°ŕľ ठतर चञञŕľŕ¤°ŕľ िྠसŕľŕ¤źŕ¤żŕ¤§ŕ¤ž ios operating system ञञ ŕ¤ŕ¤šŕ¤żŕ¤˛ŕľ ŕ¤ŕ¤ŕ¤ŕ¤ चŕľŕ¤˛ŕ¤ž ŕ¤ŕ¤žŕ¤¨ŕ¤ŕ¤žŕ¤°ŕľ ŕ¤ŕ¤°ŕ¤žŕ¤ŕ¤śŕ¤żŕ¤¨ सŕ¤ŕľŕ¤¨ŕľŕ¤šŕľŕ¤¨ŕľŕ¤ŕľ¤ ', 'TRUE'),
('com.hamrokeyboard', ' रञञŕľŕ¤°ŕľ ठyo hamro keyboard chai computerma pani banauda ramro hunthyo. tara i love it n thanks for this. i support u all ', 'TRUE'),
('com.hamrokeyboard', ' i found this app very fruitful.. and m using it but can you please tell me how to write ŕ¤ŕ¤§ŕ¤ž ŕ¤
ŕ¤ŕľŕ¤ˇŕ¤° ', 'TRUE'),
('com.hamrokeyboard', ' hamro keyboard this is good app no doubt about it. however adding some features will definitely make it the best app. following are few things observed: 1) the option to have the caps lock key enabled should be made available 2) few letters were not available along with words. 3) also there are very less options when we go to the numbers option and one of the signs which is missing is the _(underscore) 4) easy toggle option between the phone keyboard and app keyboard should be made post this it will be 5 star. ', 'TRUE'),
('com.hamrokeyboard', ' excellent app but still needs a bit more work.. keyboard is fantastic and english to nepali conversion is pretty accurate. my only comment on improvement is that you need to improve usability and make it more smooth when typing. i want to just use this keyboard even when typing english but unfortunately, its not just there yet with samsung or google keyboards. also like google keyboard, if you add the feature to switch between keyboard by long pressing a button, it would be really helpful! then it\'ll get 5 stars, good stuff nonetheless! ', 'TRUE'),
('com.hamrokeyboard', ' daammiiiiiiiiiiiiiiiiiii aapsssssss dherai ramro lagyo hami sabai nepali daju bhai haru lai ek choti yo aap use garnu parne i loved....... ', 'TRUE'),
('com.hamrokeyboard', ' lacks caps lock function because there is no caps lock function its really bothering when we have to type words with all capital letter... i will rate it five star, even higher if possiple, if the caps lock function is added... ', 'TRUE'),
('com.hamrokeyboard', ' very good apps!!! obviously, no doubt it is very useful apps for those who loves nepali language and want to write nepali. thanks for it n waiting another useful apps like this..... ', 'TRUE'),
('com.hamrokeyboard', ' need some improvements hey guys! i personally love this app as it is too easy to type in nepali as it automatically unicodes but you need to add some more features... this app doesn\'t include capslock, theme customization...it is really hard to type in big screen tablets/phones coz it\'s size relatively small. so please in next update include the features mentoined above... then it will worth đ đđ đ đ .. thanks ', 'TRUE'),
('com.hamrokeyboard', ' धŕľŕ¤°ŕľ रञञŕľŕ¤°ŕľ ŕ¤ŕ¤ş सञŕľŕ¤şŕľŕ¤°ŕľŕ¤ł नŕľŕ¤şŕ¤žŕ¤˛ŕľ चरྠञञठञन ञŕľŕ¤ŕľ टनŕľŕ¤° टसŕľŕ¤¨ सझल िྠŕ¤ŕ¤ş ŕ¤
ति ŕ¤ŕ¤¤ŕľŕ¤¤ŕ¤ž र सŕ¤ŕ¤żŕ¤˛ŕľ ŕ¤ŕ¤ş ठञलञठर ञ ŕ¤ŕ¤¸ŕľŕ¤¤ŕ¤ž लञŕ¤ŕľ नŕľŕ¤şŕ¤žŕ¤˛ŕľ लञठञन ऺरŕľŕ¤ŕľ र सŕ¤ŕ¤żŕ¤˛ŕľ नŕľŕ¤şŕ¤žŕ¤˛ŕľ ञ लŕľŕ¤ŕľŕ¤¨ ञिलŕľŕ¤¨ŕľ ŕ¤ŕ¤ş चञञŕľŕ¤°ŕľ ŕ¤ŕ¤żŕ¤ľŕľŕ¤°ŕľŕ¤ą i love hamro keybord ', 'TRUE'),
('com.hamrokeyboard', ' best keyboard it is the best ever nepali keyboard, lightweight and does what it says, but can you please make it look stylish like google keyboard or others, it looks preety old in design, so please redesign its layout ', 'TRUE'),
('com.hamrokeyboard', ' awesome aafnaii vasa ma lekhna paauda khusii lagyoo....eaataii aaru aaps haru pani nikaldaii gaarnuu hoola ', 'TRUE'),
('com.hamrokeyboard', ' best app i have seen so far..... चञञŕľŕ¤°ŕľ ऺञतŕľŕ¤°ŕľ ŕ¤ŕľ नŕľŕ¤şŕ¤žŕ¤˛ ऺŕľŕ¤°ŕ¤¤ŕľ ŕ¤ŕľ ञञिञ ŕ¤
नि सञि सञऺŕľŕ¤ŕľŕ¤ˇ ŕ¤
नŕľŕ¤ŕ¤¨ नŕľŕ¤şŕ¤žŕ¤˛ŕľ ञŕľŕ¤¤ŕľŕ¤°ŕľ ŕ¤ŕ¤şŕľŕ¤˛ŕ¤żŕ¤ŕľŕ¤¸ŕ¤¨ चरŕľ, तŕľŕ¤żŕľ ऺनि ŕ¤
नŕľŕ¤¤ŕ¤°ŕľŕ¤°ŕ¤žŕ¤ˇŕľŕ¤ŕľŕ¤°ŕ¤żŕ¤ż सŕľŕ¤¤ŕ¤° ŕ¤ŕ¤ž, तŕľŕ¤żŕ¤¸ ञञाྠसितŕľŕ¤¤ŕľ ञञ hats off to u guys.... ', 'TRUE'),
('com.hamrokeyboard', ' thanks for this app loved this app but my one suggestion;pls keep many nepali words in suggested words in the top of keyboard ', 'TRUE'),
('com.hamrokeyboard', ' emoji đ hey bro, please add more emotions. can emotions be little bit larger in resolution? your app\'s assets consist more emoji but are not loading in app. there should be a way to flip to next emoji page. ', 'TRUE'),
('com.hamrokeyboard', ' brilliant but not complete please add more emojis. and if possible themes too. u need to compete with others eventually. ', 'TRUE'),
('com.hamrokeyboard', ' need more modifications. undoubtly hamro keyboard is one of the phenomenol and must have keyboard app for all nepalese who want to type directly in nepali. however this keyboard\'s interface or keyboard theme must be improved. wating for new version with improved look theme or interface of keyboard. and finally in my tablet enter key is not working . please fix this. waiting for your response. ', 'TRUE'),
('com.hamrokeyboard', ' great app i really liked this app and its very useful as well. little upgrade should be made for theme and if possiblethen for swift as well. best of luck guys and keep it up. ', 'TRUE'),
('com.hamrokeyboard', ' wonderful apps i have downloaded this apps in my cellphone. its very good apps for those who loves nepali language. great apps. ', 'TRUE'),
('com.hamrokeyboard', ' best nepali typing apps 1.you can type any nepali text in eng and it will show suggestion of nepali words. 2.you can copy it in sd card and transfer to your pc also.and many more,you will only know after installing it . ', 'TRUE'),
('com.hamrokeyboard', ' can\'t switch back you have to go to phone setting to switch to another keyboard. you should add choose input method on keyboard. if i\'m missing it, teach me how to find that ', 'TRUE'),
('com.hamrokeyboard', ' its really lovely apps . i am allready using a another mobiles . so knows that about facilities ', 'TRUE'),
('com.opera.mini.native', ' almost every time i scroll on a webpage, the copy dialog appears at the top of the page. also i don\'t care for the new tab opened/switch, popup that appears on the screen when i open another tab. i think that should be in the opera mini settings menu. ', 'TRUE'),
('com.opera.mini.native', ' cant download big things i cant download 15+ mb it says that it failed tell me how it work ur fix it plz ', 'FALSE'),
('com.opera.mini.native', ' i got my opera back. i can see videos now. to me no one wsa better than opera,perhaps there headed there again. thankyou opera. just found single colume view. ok your number one ', 'TRUE'),
('com.opera.mini.native', ' still the best mini i like the new look and news front, very fast and efficient, though for overall best all around browsers id go with maxthon, yandex and uc...but for mini\'s opera mini gold though uc mini is coming along strong..***minuses: needs an adblock. ', 'TRUE'),
('com.opera.mini.native', ' easy to play and always running, jumping and defy gravity. itâs a real competition how far can you survive? wonderful game!!! ', 'TRUE'),
('com.opera.mini.native', ' classic browsing at it\'s best!!! i\'ve recently upgraded to android from a bb9900. i\'ve been using opera on my bb for years. was actually disappointed with android at first. until i installed mini!! webpages like facebook are back to the way they should be. please don\'t change a thing. using mini for facebook is the best! where can i donate? ', 'TRUE'),
('com.opera.mini.native', ' superfast, just as i remember it ! opera mini was the #1 browser back in the days of symbian. glad to see it\'still up there. superfast, smooth, minimal data used. as opposed to chrome which is starting to stutter , lag, even on simple pages with a few commercials. ', 'TRUE'),
('com.opera.mini.native', ' poor data/wifi transition still doesn\'t work with wifi networks. even the socket/http protocol doesn\'t help. please learn from whatsapp! ', 'FALSE'),
('com.opera.mini.native', ' not since the update i don\'t. update:- it is very slow on both data (uk ee network) and wifi (all of home via bt /work network/london underground virgin network) on all devices. version number is 13.0.2036.98649 on each device. practically unusable at present and everything was fine before upgrading. reading other comments i\'m far from the only one having problems. high and low quality images helps but it is still worse than before the upgrade. and just discovered that previously a double tap enlarged the text sufficiently to make it readable. now it enlarges it a tiny amount but pinch and zoom is still required. why did you do this? the good old adage \'if it ain\'t broke don\'t fix it absolutely comes to mind. ', 'FALSE'),
('com.opera.mini.native', ' worse ! 1. startup become slow. its mini or not ? i guess this apps only for highend device. 2. opera:config can\'t be saved 3. font data calculation every time ? are you trying to hack me ? that all bugs i found for now. ', 'FALSE'),
('com.opera.mini.native', ' one issue.big files downloading very slow i cant download 15+ mb files quick.please fix it on next update ', 'FALSE'),
('com.opera.mini.native', ' love/hate has bug and security issues. i tried to report that facebook and google plus have security issues and it wouldn\'t allow me to do so! well i just did didn\'t i! ...... ', 'FALSE'),
('com.opera.mini.native', ' saved pages list should be in alphabetical order as well as in newest to oldest order.... dear opera mini, i hold back one star for not giving us a choice to view the saved pages list in alphabetical order as well as in newest to oldest order. please improve on that one thing and i would love to rate five stars to this beautiful browser opera mini. ', 'FALSE'),
('com.opera.mini.native', ' slow, with weird lack of features... really slow, not sure why. has good search bar, but no way to add search engines. cannot download images from google search, no problem downloading from bing. it seems there are good feature spread between this and opera mobile, combined they would make a good browser, but independently they\'re not good enough. ', 'FALSE'),
('com.opera.mini.native', ' save image and low performance can not save an image from google image and performance google search very heavy for low devices. i miss opera classic. ', 'FALSE'),
('com.opera.mini.native', ' use to be a 5 star app i gave this app 1 star and told them i would give more stars after they fixed a particular problem i was having. they fixed that problem, so i upped it to 4 stars. i would give 5, but i\'m not happy with the changes they made where i now have to use 2 hands to reach for the top of my screen for those functions they use to have on the bottom of the screen. this is the only browser i found that does not have to reload every page when hitting the back button. definite plus. ', 'FALSE'),
('com.opera.mini.native', ' for the build 13.0.2036.98649 new colour scheme adds nothing to the expirience. but it\'s the automated smart language update, with no option to select the prefered language that\'ll be the main reason why i\'ll uninstall this app. ', 'FALSE'),
('com.opera.mini.native', ' night mode this app is really good actually, but why the night mode doesn\'t work? what ashame đľ ', 'FALSE'),
('com.opera.mini.native', ' bug fixes required this version is much better than the previous one in terms of ui design, and data compression. this version gives me at least 86% saving. the saved pages view is good, as well as the tab previews. please provide an option to disable vibration for the facebook push notifications. and fix the in built wikipedia search engine language. every time i search for something through it, the page appears in german. i have to manually go to the english version of the page and search. please fix this. ', 'FALSE'),
('com.opera.mini.native', ' why change it? i use this for my facebook as it\'s a lot faster than any other app, but now when i try to add a pic the whole format on opera mini has changed! i can\'t even see the pic i want to choose now and have to go through so many folders as well, go back to the old format, why fix something that wasn\'t broken!! ', 'FALSE'),
('com.opera.mini.native', ' nice for the size ,it\'s great ! nice ui , small footprint. complain ? u belong in scroogle\'s camp ! ', 'FALSE'),
('com.opera.mini.native', ' nice app, bad notifications i like the browser, but having updated can\'t recommend anymore. push notified about a competition! no one wants that kind of alert. ', 'FALSE'),
('com.opera.mini.native', ' fonts why in the heck is this thing analysing my fonts??? not really quick browsing when i have to wait 5minutes for the fonts to load. are you asking my opinion? avoid this. terrible ', 'FALSE'),
('com.opera.mini.native', ' best browser but keeps crashing i\'ve no clue but my browser keeps on crashing for unknown reason..even while browsing on simplest of websites..this is after the previous update. updating again hopefully it goes away ', 'FALSE'),
('com.opera.mini.native', ' still not cool guys please, this is still not cool after all those updates. i\'ve got a lot of ram but it keeps reloading pages that i\'ve left open for later viewing. the old one could do that. it could keep pages for weeks. guys, seriously?! opera please. ', 'FALSE'),
('com.opera.mini.native', ' annoying sometimes why does opera need to reload the pages i\'ve opened for later viewing? i have a decent phone with a lot of ram the old opera could do this just fine so why can\'t the new one? my other problem occurs when reading text that requires zooming in and panning... when scrolling down the address bar disappears. great. that\'s fine. but when i pan left right. it appears again, jolting my text up and down making me loose my place. highly annoying. still happens when i toggle full screen ? ', 'FALSE'),
('com.opera.mini.native', ' i want the old theme back!!!!! this theme is awful. previously opera mini was the best browser but now i think it\'s worst. no, i don\'t want to see the news or anything. just return the old opera mini back. you just make it awesome to awful. ', 'FALSE'),
('com.opera.mini.native', ' pop-up and search using image. i seriously hate that opera mini does not support pop-ups. i need pop-ups enabled, from where do i choose to enable it? i am forced to use uc browser due to this :( and please provide an option in the long press menu to search using any image. please guys ... we are waiting ... reply atleast!! :/ ', 'FALSE'),
('com.opera.mini.native', ' what happened to you opera... the resent updation make the browser more beautiful to look than the previous versions; but the smoothness of the browser is gone.. yes it have some unique properties whwn compared to other browser such as data saving mode,re open closed tab etc.. but the problem which i face is that. 1- the web pages are not fit to my screen- ie the all the web pages opend through this browser is shows only3/4 part of my screen. 2- annoying ads on the home screen of the browser. 3- private browsing is not working. ', 'FALSE'),
('com.opera.mini.native', ' works great maybe you could do something about the download location. i can\'t change it to external storage. i don\'t want the downloads to fill up the phone memory. please do something about that. ', 'FALSE'),
('com.opera.mini.native', ' didn\'t work couldn\'t use it with my note 4, it just gets stuck in the red o and stops ', 'FALSE'),
('com.opera.mini.native', ' light, fast, and comfortable apps when i compare 3 different browser, watch speed connection, ram and cpu usage then i know opera and their products is very good for smartphone and pcs ', 'TRUE'),
('com.opera.mini.native', ' old version was better this new version needs lots of work. find web pages take much longer to load. can\'t tell it not to remember passwords for all sites. ', 'FALSE'),
('com.opera.mini.native', ' it was good untill i upgrade overall opera mini is good. the page loads faster and saves time. but most of the time eventhough i have a good network connection, it will show that there is no network connection. then , when i upgrade to this version . the network speed after this update is really so fast....when i tried to download a song . eventhough i have 3g connection it downloads at a rate of 4.7 kb/sec . it took 20 mins to download a 6mb song in a 3g connection. i am really frustrated with this ...so i am going to uninstall it. ', 'FALSE'),
('com.opera.mini.native', ' update sucks!!! it has become so slow now that no page opens even on 3g. trying to make the user interface like chrome is a ridiculous idea. as everyone is saying the facebook page doesnt open n it even logged out. please roll back your stupid update. ', 'FALSE'),
('com.opera.mini.native', ' keeps crashing it only works well in extreme data savings mode. in high data savings mode it keeps crashing and sometimes websites dont load.please fix this or i am moving to another browser. ', 'FALSE'),
('com.opera.mini.native', ' too bad but improving the earlier version was so nice. i have been using that one since the days of nokia symbian. the new one is double the size and takes more space. it\'s not even as fast as the earlier one. what a shame. seems improved after update. ', 'FALSE'),
('com.opera.mini.native', ' again and again... what happened to you guys.... you are not listening us.... again there is problem in downloading large files... and the download speed is furthermore decreased... even the phone is connected with wifi... pls fix this..... 3 stars for browsing speed only ', 'FALSE'),
('com.opera.mini.native', ' the best mobile browser ever opera mini is still the best mobile browser in terms of data saving. however, the browser doesn\'t support gif animation/image, it doesn\'t support themes, night mode is not impressive, saved pages should be accessed locally and transferable to other opera mini device/browser. above all it\'s a good browser with beautiful ui; it\'s my number one choice browser. thumbs up guys! ', 'TRUE'),
('com.opera.mini.native', ' good but, a download are continue. but, a any one call and any appliation is start, to a browsing speed is slow and cancel... so, founder solve this my problem.... plz.. ', 'FALSE'),
('com.shirantech.kantipur', ' some notification problem although i\'ve enabled notification, i am not being able to get notification only from ekantipur on my htc desire 826 and it is slower than in other inferior devices. i want to know if this problem is only with me or ekantipur is working on this kind of device..notification feature is very useful for a busy person like me who doesnt get much time to sit back and read news. notifications enables to take a quick look at headlines and understand the situation and can read the selected news according to choice. ', 'FALSE'),
('com.shirantech.kantipur', ' error and only error i think this is the worst app made which doesn\'t load and mobile gets hang.and full screen ads.and in pdf format many error in spelling.old one was very much better than this. ', 'FALSE'),
('com.shirantech.kantipur', ' too much pop up add average app with too much advertisement. one star for the app and 5 star for the pop up advertisement. ', 'FALSE'),
('com.shirantech.kantipur', ' it is best app for regular news update, but ...please add more news updates in nepali language too. ', 'TRUE'),
('com.shirantech.kantipur', ' khate muji khate muji app ra news channel ho... muji kahile satya samachar didaina... taraiko samachar lai dabayera khali pahadiya samachar matrai din6... madesh tarf baat khali negative matrai din6... khate muji aija terai talai pani jalaidun6u... chowk ma kukurjasto chappalle mar6u... ', 'SPAM'),
('com.shirantech.kantipur', ' please reply to me; ekantipur please divide the news as politics. sports etc.. and the worst thing about this app is there is no technologies and science stuff news in ekantipur!.. why don\'t you imclude those types of news?? i have never seen such news in ekantipur .. kantipur publication is lacking this from years!! nowadays noone wants to read f***ing political news.. so i hope you will improve this ;) ', 'SPAM'),
('com.shirantech.kantipur', ' takes longer time plz make d newspaper download format..it takes longer time to fetch newz...very poor app otherwise...y same pages are repeated again & again in epaper segment?? ', 'FALSE'),
('com.shirantech.kantipur', ' great simple and great apps for news lover. i always used to read news from ekantipur website, but now this has made my task times easier. thanks to the developer. ', 'TRUE'),
('com.shirantech.kantipur', ' not bad i like to every news bt i can\'t get found new update please update hour by hours ', 'FALSE'),
('com.shirantech.kantipur', ' fully ads based even in data connection. and loads pretty badly.. i suggest you to look annapurna post beta app. why kantipur network required ads based activities in this app? google advertisement must not be used while using data. and what a load while using this app. kmg app was better than this. i suggest you to look annapurna post beta app... while using from data, first loading the advertisement and after that loading news.. what a bullshit coding. fix this for 5 star.. ', 'FALSE'),
('com.shirantech.kantipur', ' worst app ever seen! one of the worst app i have ever seen. it takes more then 2 minutes to open & my htc m8 frequently gets lag while running this app. app developer, just look times of india app & try to improve your kmg app 2. for now, i suggest everyone \'don\'t ', 'FALSE'),
('com.shirantech.kantipur', ' notification problem though i have enabled notification, there is no any notification of news. plz fix it ', 'FALSE'),
('com.shirantech.kantipur', ' boo! it loads slow even on my hardware. considering kmg is the leading news company, the interface is very poor! i your app is almost like direct links to your websites. and the difference between the low resolution and high resolution files in e-paper is not perceivable at all. ', 'FALSE'),
('com.shirantech.kantipur', ' {•=•} new ui looks good but still laggy and unstable and wtf with ads??????? ', 'FALSE'),
('com.shirantech.kantipur', ' virus i think your site ìs infected as it is trying to install some update. ', 'FALSE'),
('com.shirantech.kantipur', ' its just ok in news paper there alot of time to loaded even in wifi 512kbps ', 'TRUE'),
('com.shirantech.kantipur', ' rocking this app is the best among all the news apps ', 'TRUE'),
('com.shirantech.kantipur', ' good app it help us to get fast news. ', 'TRUE'),
('com.shirantech.kantipur', ' very useful for watching tv reading saptahik,kantipur ', 'TRUE'),
('com.shirantech.kantipur', ' too much pop up add ', 'FALSE'),
('com.shirantech.kantipur', ' changeable it really change our way of getting news ', 'TRUE'),
('com.shirantech.kantipur', ' please add option to provide pdf versions to download in mobile/tabs. ', 'FALSE'),
('com.shirantech.kantipur', ' hami neoali hamro dukha sukaha ko sathi thanks for the first news ', 'TRUE'),
('com.shirantech.kantipur', ' ads? really? ads in the kantipur app? you guys so down to earn money? ', 'FALSE'),
('com.shirantech.kantipur', ' good app all is good but sometime its cannot see live but otherwise its great app ', 'TRUE'),
('com.shirantech.kantipur', ' yalane muture hawa xa ', 'SPAM'),
('com.shirantech.kantipur', ' किर्पया एस्मा अजै फ़ोटो हरु पनि सेभ गर्न सकने वा डाउनलोड गर्न सकिने बनाउने र छिटो खुले अज राम्रो हुने। ', 'SPAM'),
('com.shirantech.kantipur', ' aa nice ', 'TRUE'),
('com.shirantech.kantipur', ' i love this app it is better than tv and old radio ', 'TRUE'),
('com.shirantech.kantipur', ' improve tapai ko app dheri ramro ra upayogi xa tara loading dheri nai chahe jati nai fast net vaya pani. hope so yo problem chadainai slove hunxa vanera. thank you. ', 'TRUE'),
('com.shirantech.kantipur', ' thank you ! thank you so much....... ', 'TRUE'),
('com.shirantech.kantipur', ' too many pop up ads the frequent appearing pop up ads don\'t allow to read the news smoothly. these ads distract us. ', 'FALSE'),
('com.shirantech.kantipur', ' loved it ', 'TRUE'),
('com.shirantech.kantipur', ' good ', 'TRUE'),
('com.shirantech.kantipur', ' errors and bugs app of error.... ', 'FALSE'),
('com.shirantech.kantipur', ' old is best old version is better then this version ', 'FALSE');
INSERT INTO `comments` (`app_id`, `comment`, `sentiment`) VALUES
('com.shirantech.kantipur', ' ads problem ', 'FALSE'),
('com.shirantech.kantipur', ' not good this app before was no. 1 nepali app in android but when they update the app it is now really wasteful.after using the app there is no exit button. please fix it. still not yet done the improvements. what\'s wrong with the app ???problem in my samsung galaxy s3 only ?? ', 'FALSE'),
('com.shirantech.kantipur', ' epaper not upto date epaper not updated for day... what is wrong with this app.... ', 'FALSE'),
('com.shirantech.kantipur', ' way below expection. why does it lag so much? scroll garda ni freeze hunxa. get it right, kntipur. i expected so much. ', 'FALSE'),
('org.mozilla.firefox', ' immediate action needed. on clicking a link , it now shows tab saved in firefox, tap to open now..instead of opening directly...this is not good feature and lot more people also do not like it. do change it ', 'FALSE'),
('org.mozilla.firefox', ' doesn\'t allow me to send tab to desktop previously, when i touched the share button, it allowed me to select \'firefox\' as the share method to send the tab to my synched computer. now the \'share to firefox option\' doesn\'t show up. why did it dissapear? ', 'FALSE'),
('org.mozilla.firefox', ' shab i have firefox on all of my devices and its more safer than the internet explorer. i like it i just wish it had more functions like free spyware, anti virus. ', 'FALSE'),
('org.mozilla.firefox', ' seems to keep crashing!!! i am a big firefox fan but since i started using the android one here i can no longer watch or stream videos to my tablet. big disappointment indeed! ', 'FALSE'),
('org.mozilla.firefox', ' messed my phones default screenshot setting up i installed and everything was great until i noticed when i held down power plus home (which used to take a screen shot) now my phone wants to do a firefox search with this command. after calling samsung there is no way to fix this short of a factory reset and losing all my data. thanks firefox. ', 'FALSE'),
('org.mozilla.firefox', ' causes a lot of battery drainage so i love firefox both on pc and android but i\'ve noticed recently that firefox has been draining a lot of my battery. before this was never an issue, firefox always ran smoothly but now certain webpages with glitch out, jump back up to the top of the page on random, or just not load completely. i\'ve checked my wi-fi and data so that isn\'t the issue. it seems like the app is working harder than it needs to and it always makes my phone very hot ', 'FALSE'),
('org.mozilla.firefox', ' glitch y i like this browser better than chrome in terms of its setup and function, but i wish it was less glitchy. the back button seems to just lock up the tab on a certain website. #sad face# ', 'FALSE'),
('org.mozilla.firefox', ' firefox is getting better ... slowly it crashes regularly. it doesn\'t play video on youtube. otherwise it is a promising fast browser, i still miss the gestures/swipes and a well organized homepage with my selected bookmarks (see ucbrowser hd) ', 'FALSE'),
('org.mozilla.firefox', ' it was good but the last update caused so many forced close. it was good but the last update caused so many forced close. now i can\'t really enjoy my browsing experience. thanks for nothing ', 'FALSE'),
('org.mozilla.firefox', ' all you need, easy and gives you control openness and ease of use are clearly the main goals. the software itself is great, and the various plugins available allow for even more control and customization if you want it. great job! ', 'FALSE'),
('org.mozilla.firefox', ' surprised been atleast 3 years since i switched to chrome on pc. it was by chance and some luck that i stumbled upon firefox for android. i\'m absolutely hooked!! proper tabbed browsing helps me keep my jungle of open app state screenshots a lot simpler. my favorite feature would be queing new links from other apps to be opened later; neato!!! made me install firefox again on all my other devices after a long time... good going mozilla! đ ', 'FALSE'),
('org.mozilla.firefox', ' keeps crashing i really do love the browser overall and the ability to install add-ons and plug-ins is amazing, but it keeps crashing on me all the time. i\'ll be browsing a page and then all of a sudden the page won\'t scroll for me, i\'ll try and zoom in and the font won\'t rerender, and i can\'t click on anything. however, the ui still functions normally, but i can\'t get anything to work on the webpages. if that could somehow be fixed, it\'d ramp ya back up to 5 stars. ', 'FALSE'),
('org.mozilla.firefox', ' it\'s good i had typed up a longer review but then play store decided to crash... i\'ll just say that firefox for android feels faster and more stable than the default chrome browser. also the ui is less clunky. ', 'FALSE'),
('org.mozilla.firefox', ' its getting there. i used to be a chrome/opera aficionado but lately they eat too much ram that my phone starts to hang. firefox memory consumption is far less and it\'s more stable. however, i dislike how websites get blurred when scrolling then slowly clear up like a jpeg being downloaded on a slow connection. i use 4g and bandwidth ain\'t a problem. i know you can fix it but i\'ll give you 4 stars for now. thanks for the awesome* browser. ', 'FALSE'),
('org.mozilla.firefox', ' shite. crashes constantly! test 1st does nothing a browser should. obviously as all basic function is gone no testing was executed prior to release. i do not use youtube or any sites that require more than a browser that loads the page without freezing & *bonus!* crashing the operating system. ', 'FALSE'),
('org.mozilla.firefox', ' the authority firefox is firefox, after wandering here and there you are gonna come back to this standard browser in any platform. ', 'TRUE'),
('org.mozilla.firefox', ' very good, but reposition and either fix or remove the \'share link\' button. the \'bookmarks not syncing\' issue was fixed a while back. i have been happy with this app for a while now, i just forgot to change my previous review. that isn\'t to say that it is without its problems, however. having gotten used to chrome, i find myself pressing \'share link\' rather than \'open link in new tab\'. while this normally isn\'t a problem, lately pressing \'share link\' causes the app to crash. please either fix this issue and reposition \'share link\' lower or remove it altogether. ', 'TRUE'),
('org.mozilla.firefox', ' yup first thing i thought of for comment was freedom of choice(very important some of the people making choices for us are not well), the i thought tony bennet...the good life....to be sussinct... ', 'TRUE'),
('org.mozilla.firefox', ' firefox for android. ok, not full firefox, but a good interpretation for small touchscreen devices. firefox sync works well. bookmarks and search history transfer as expected. really helps following up with web searching on the road when i get home to the computer. ', 'TRUE'),
('org.mozilla.firefox', ' awesome browser really easy to use, and more importantly allows you to install ad block extension, to get rid off annoying ads. love it ', 'TRUE'),
('org.mozilla.firefox', ' i\'ve used firefox on all my mobile devices and computers for years, but since this latest update it\'s become unusable on my galaxy note 10.1. links either don\'t work or take you to a different link on the page and the tops & bottoms of pages are obscured so only around a third of the page is visible and search boxes can\'t be accessed. i hate the idea of changing to chrome etc, but my tablet has been rendered useless for browsing. please sort it out mozilla. ', 'TRUE'),
('org.mozilla.firefox', ' trust worthy as always! have been a long time user of firefox in all my desktops and laptops. now using it on my android phones as well. not settling for any other second rate browser!! ', 'TRUE'),
('org.mozilla.firefox', ' great features on firefox usually i use chrome that it\'s a great app, but now firefox upgrade with great features. include video player better and downloading. you can install and experience yourself, have fun and give them a great vote. ', 'TRUE'),
('org.mozilla.firefox', ' inferior to desktop browser i love firefox on my desktop but the android version is terrible. 1) it crashes constantly, 2) scrolling is very jerky, 3) on screen rotation the window doesn\'t resize, 4) there is no word wrap when answering certain forums, 5) downloaded images are not available for use in forums or whatsapp without rebooting phone, 6) pages are very slow to load. both the pre-installed samsung browser and chrome are heads and shoulders above firefox. pity. ', 'FALSE'),
('org.mozilla.firefox', ' utter garbage didn\'t think i would be saying this as i\'m a firefox user myself, but the browser is utter garbage. i\'ve got a samsung galaxy tab s2 and the browser crashes constantly. i\'m switching to a different browser :( ', 'FALSE'),
('org.mozilla.firefox', ' refuses to clear history on exit and submitting reports does nothing since i have been reporting this for the last few months. for those of you complaining about crashes, that is probably because you do not have enough internal memory to run firefox properly. ', 'FALSE'),
('org.mozilla.firefox', ' great app, but one problem ruins it i love the firefox for android. it\'s fast and efficient, and all the addons are great. yet, the menu key problem ruins the app. firefox will automatically turn on or off the menu key based on if it detects a hardware menu button. the only problem is it gets it wrong sometimes, and there\'s no way to force it. ', 'TRUE'),
('org.mozilla.firefox', ' unstable, freezes and crashes customisatins and capabilities are unmatched, but seems to freeze way too much atm. some video\'s won\'t play that do on other browsers. can\'t even arrange bookmarks. looking at other browsers now. ', 'FALSE'),
('org.mozilla.firefox', ' another update and still crashing. previously tried....disabled add on, tried re installing, another new update... crashing every few minutes and still can\'t sync data ', 'FALSE'),
('org.mozilla.firefox', ' nice so far. i have been using firefox on my pc for the longest time and love it. and it\'s no different from the android version. there are a few things i wish were a bit different but all in all i\'m happy with it. ', 'TRUE'),
('org.mozilla.firefox', ' slow update. slow. firefox just keeps on getting better with each update. so far it\'s the only one that supports flash w/o force close that i have used on 4.4 kitkat. keep up the great work guys! ', 'FALSE'),
('org.mozilla.firefox', ' not as good before and rapidly getting worse if used solely for viewing sites without personalization or adjusting the settings this browser has no problems i know of, no benefits either. issues begin to arise, and multiply exponentially, upon applying any changes. if using a text size other than the default a substantial lag/reloading begins to occur when scrolling. zooming in, or out, causes large portions of previously loaded content to go blank. also, in one week this went from the download size of 45mb to over 113mb without my adding any extras. ', 'FALSE'),
('org.mozilla.firefox', ' browser gone back downhill constantly hangs now after last update and fc, still does not keep pages in memory when app minimised which is a pain when streaming music etc, app does not use user input options (ignores them) again, still no propper changelog for latest version either in playstore description or on mozz\'s www. page. shame that ff are not listening to its users and seem totally ignorant to the fact that there is a rating system on playstore. also they keep editing my review ??????. ', 'FALSE'),
('org.mozilla.firefox', ' better background playback and \'new tab\' position firefox is the best-looking browser on android if i do say so myself. what i hope for are video sounds playing smoothly when the app runs in the background (since i use youtube as ambience a lot) and the \'new tab\' button being on top of the menu like the other browsers to make navigation easier. ', 'TRUE'),
('org.mozilla.firefox', ' almost good enough i have tried lots of android browsers. the reason being that i like speed and simplicity and good bookmark management. that\'s all i need. i tried firefox (which i use on desktop) as a way of getting away from chrome, because i absolutely hate google and everything and everybody associated with it. seriously, i hate google. unfortunately, chrome is still hands down the best browser i\'ve used on android. firefox started out fine, but became slower and glitchier as i used it, like everything except chrome. meh ', 'TRUE'),
('org.mozilla.firefox', ' good as far as i have it fast and reliable. for now. only thing is that scroll speed is somewhat faast, but thats mayth be due some option in phone maybee ', 'TRUE'),
('org.mozilla.firefox', ' nice browser but.. there is no doubt that firefox is one of the best browsers out there be it pc or mobile. great options to customize the browser to suit your needs. however this still continues to be my secondary browser as cm browser is still way to fast even when loading heavy websites. i hope the speed improves in newer versions and i\'ll add a 5 star rating. ', 'TRUE'),
('org.mozilla.firefox', ' the best android browser fast, well designed, easy tab management, i was looking for a browser easier to use than google chrome and it\'s done, great ! ', 'TRUE'),
('org.mozilla.firefox', ' gave u too many chances i love desktop firefox, this app is brutally annoying an cumbersome, i\'ve installed it about 5 times thinking/hoping it would get better. there are much better browsers for android than this eg. dolphin or maxthon ', 'TRUE'),
('org.mozilla.firefox', ' installed and immediately deleted this crap i have used firefox on my desktop for longer then i can remember and i will continue to only use it on my desktop. your only options for a homepage are the crap they want you to see or a blank page with nothing on it and you can\'t go to a bookmarked website unless you want to go back to their crappy homepage just to see your bookmark list. and did i mention it\'s crap? ', 'TRUE'),
('com.hamropatro', ' excellent! excellent!! excellent!!! dear sir! hamro patro is almost perfect! towards the perfection, i would like to request you to make the calendar flexible to write on desired dates to use it as planner available in mobile phones. is it possible by your expertise sir? ', 'TRUE'),
('com.hamropatro', ' thanks u so much for adding sanshkar fm kalaiya all in one ones app thanks so much dont update its great version ', 'TRUE'),
('com.hamropatro', ' hamro keyboar needs update n new emojis thnkz fo awsome apps ... :) plz update keyboard. :) ', 'TRUE'),
('com.hamropatro', ' excellent!!!! awesome app very useful thanks forum. yes in connection with the previous suggestion if you can update along with planner it would much better. ', 'TRUE'),
('com.hamropatro', ' currency convertor not working! it only shows nepali rupess in both the spaces & refuses to change. was working fine before. pls fix this ', 'TRUE'),
('com.hamropatro', ' fixed sticky notification :) but can\'t sign in :( the stick notification is not displayed is fixed thank u :) but can\'t log in please help ', 'TRUE'),
('com.hamropatro', ' khtra xa... estae... aap hagu banae rakhnu parxa hau... mitra haru... loved it... ', 'TRUE'),
('com.hamropatro', ' dami... nepal iz.. improving there limts ... gud (y) ', 'TRUE'),
('com.hamropatro', ' it\'s really nice app.. i love this app. ', 'TRUE'),
('com.hamropatro', ' load shedding widget not syncing the load shedding widget does not sync. otherwise the app is awesome for me. ', 'TRUE'),
('com.hamropatro', ' you dont have to go to your wall calender and turn the page for your month event...this apps is just awesome. ', 'TRUE'),
('com.hamropatro', ' very good one of the best app. ', 'TRUE'),
('com.hamropatro', ' greatfull! amazing!surprise! this is the main brightly app among so more like apps.it would other more better to if we can see story,historical event are so. ', 'TRUE'),
('com.hamropatro', ' धŕľŕ¤°ŕľ रञञŕľŕ¤°ŕľ ठचञञŕľŕ¤°ŕľ ऺञतŕľŕ¤°ŕľ good app ', 'TRUE'),
('com.hamropatro', ' rashifal ni homepagemai bhaye sun ma sugandha hune. ', 'TRUE'),
('com.hamropatro', ' लŕľŕ¤ąŕ¤¸ŕľŕ¤ąŕ¤żŕ¤ तञलिŕ¤ŕ¤ž ŕ¤ŕ¤şŕ¤¤ŕľŕ¤żŕ¤ŕ¤žŕ¤ŕľ लञŕ¤ŕ¤ż ञञतŕľŕ¤°ŕľ चŕľ? चŕľŕ¤ŕ¤¨ ŕ¤ŕ¤¨ŕľ चŕľŕ¤ŕľŕ¤ŕ¤ąŕ¤žŕ¤ŕľ लञŕ¤ŕ¤ż ŕ¤ŕľŕ¤¨ group चŕľ? ', 'TRUE'),
('com.hamropatro', ' dami xa hajur harule ni hernu hai ', 'TRUE'),
('com.hamropatro', ' j khojyo thyehi paine ek matra apps ', 'TRUE'),
('com.hamropatro', ' good need to use every nepali peoples ', 'TRUE'),
('com.hamropatro', ' weather didn\'t show please fix it ', 'TRUE'),
('com.hamropatro', ' very good i liked the app and it\'s ui but i think the app can be best if you add option to remind us about any program on radio so that i wouldn\'t miss my fav programs like timepass :) ....keep developing ', 'TRUE'),
('com.hamropatro', ' less space is the magic a complete package with very less space. but still, i would love to see a bit modern design! ', 'TRUE'),
('com.hamropatro', ' well done nicely designed .....this app had collected daily used collection of apps . liked it. ', 'TRUE'),
('com.hamropatro', ' nice easy way to known about every things. ', 'TRUE'),
('com.hamropatro', ' usefull no others app like this.... ', 'TRUE'),
('com.hamropatro', ' love this app all in one nepalese app ... ', 'TRUE'),
('com.hamropatro', ' support service poor support service. ', 'TRUE'),
('com.hamropatro', ' thank you very much for sticky notification. ', 'TRUE'),
('com.hamropatro', ' usefully verry nice app ', 'TRUE'),
('com.hamropatro', ' all nepali must use ', 'TRUE'),
('com.hamropatro', ' i love this app i love this app & its better than before now .. ', 'TRUE'),
('com.hamropatro', ' superb! all in one! ', 'TRUE'),
('com.hamropatro', ' its very helpful ', 'TRUE'),
('com.hamropatro', ' nice apps ', 'TRUE'),
('com.hamropatro', ' nice app ', 'TRUE'),
('com.hamropatro', ' good ŕ¤ŕ¤ŕ¤śŕ¤ž रञञŕľŕ¤°ŕľ ', 'TRUE'),
('com.hamropatro', ' great hamro patro ', 'TRUE'),
('com.hamropatro', ' excellent ', 'TRUE'),
('com.hamropatro', ' really useful app.. đđđđ ', 'TRUE'),
('com.hamropatro', ' very useful ! ', 'TRUE'),
('com.rovio.angrybirds', ' its cool my brother doesnt bug m me anymore i show him angry birds and his mouth shuts but some levels are almost impossible and i have to wait for free power ups or buy them ', 'TRUE'),
('com.rovio.angrybirds', ' good this is a great game! good challenges too. something you can just easily wip out when you are bored. keep on coming with more great games rovio entertainment ', 'TRUE'),
('com.rovio.angrybirds', ' #1 great game. challenging to the point where you don\'t want to give it up. great thing while you\'re bored, waiting or just want to play. can\'t stop playing. great job rovio. ', 'TRUE'),
('com.rovio.angrybirds', ' funny this game is nearly perfect except for ads and then you look at the sequel and think wow rovio messed up our beloved birds used to be such a great franchise ', 'TRUE'),
('com.rovio.angrybirds', ' great game, really dislike the ads. i usually don\'t write reviews, but this time i am because it\'s getting ridiculous. every few rounds you play an ad will pop up out of nowhere while you are playing and interrupt your playing sessions making it extremely annoying. i know the ads help with money but, at least reduce the amount of time until the next ad pops up, and force\'s you to watch it. ', 'FALSE'),
('com.rovio.angrybirds', ' how to upgrade angry birds angry birds is really cool however if you were to upgrade it i would make more birds do different things, second make more challenges and be able to customise your own birds with armour and different powers then when you know what maps you have to destroy you can choose what bird will be best to use ', 'TRUE'),
('com.rovio.angrybirds', ' great fun. very addictive. still brilliant! loads o\' fun. very clever and hugely more-ish!! and i still love it... ', 'TRUE'),
('com.rovio.angrybirds', ' way to ruin it. this game was good at one point. i supported this game with real money. if you can\'t say anything nice: i hope other people can find a good time playing this. ', 'FALSE'),
('com.rovio.angrybirds', ' great little game. this is a great little game. i am completely addicted to this game. it\'s simple enough to learn, but has enough variety to keep you interested. this is an ad supported game, just so you know. i would be happy to buy the game together rid of the ads, however i haven\'t found where to do that yet. ', 'TRUE'),
('com.rovio.angrybirds', ' ads, ads and more ads i don\'t mind having ads but when it\'s a 30 second long commercial between each game it becomes annoying to me. i deleted this. i don\'t remember that many ads last time i played this. if you can handle ads all the time it\'s a fun game to play but no longer for me. ', 'FALSE'),
('com.rovio.angrybirds', ' awesome game but... this is such a great game but there are way to many adds every time you get passed a level there\'s another add but even with all the adds it\'s still an amazing game ', 'FALSE'),
('com.rovio.angrybirds', ' angry birds what looks easy can demand a bit of skill. the player may become frustrated, but is never bored. i always find angry birds a great way to pass the time. most adverts allow a skip click. ', 'TRUE'),
('com.rovio.angrybirds', ' always entertaining we all know angry birds by now. definitely an enjoyable and entertaining game to help you kill time. the only thing that i don\'t like about it are the advertisements when i\'m playing with my wifi of data turned on. they can be a bit disruptive during game play ', 'TRUE'),
('com.rovio.angrybirds', ' freaking awesome!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*!! it has no real story line but it doesn\'t matter.this was the first video game i ever played so i obviously love it.it\'s almost better than super mario brother for crying out loud,the characters are great,the pig\'s are cute,and it has my favorite bird in it hall (or green bird)not gonna get in to the details of why i love hall but mea. also the pigs forts are awesome .so that\'s why i rated angry birds five out of five game of the year ', 'TRUE'),
('com.rovio.angrybirds', ' great game, too much ads angry birds is fun and a great way to kill time, unfortunately it falls short of perfect due to numerous ads littering the game. unless you get ad-free, be prepared to get ads up the butt. ', 'TRUE'),
('com.rovio.angrybirds', ' pretty good the people who don\'t like the power ups can just turn them off in the first part of the game!!!!! i also like the red\'s mighty feathers. ', 'TRUE'),
('com.rovio.angrybirds', ' smart and fun i\'m late to the party. if i knew it was this fun i\'d have downloaded it sooner. ', 'TRUE'),
('com.rovio.angrybirds', ' lovely a lovely game for all i love this game so much and my mom too . my mom also enjoy this game so much . thank you rovio team to make this kind of game . ', 'TRUE'),
('com.rovio.angrybirds', ' kinda like a 2d kingdom havoc fun! if kingdom havoc was 2d and used a sling shot, it\'d be close. angry birds is crazy good though. a handful of colorful birds with different and interesting superpowers keep things fresh from level to level. this game gets more difficult along the way, but it\'s cool to get better as you practice. ', 'TRUE'),
('com.rovio.angrybirds', ' classic game ruined by ads. uninstalled this o one classic game utterly unplayable due to excessive ads. installed the other day for my 5 year old to keep him quiet. wondered why he kept crying and complaining. realised he was constantly being bombarded with adds that took him out of the game after almost every level. ridiculous. ', 'TRUE'),
('com.rovio.angrybirds', ' the best game about they dont call this the no.1 app for nothing, its the original and best clean game about. one needs to work out how best to strike the piggy structures by flinging the birds in a sling (funny though, i thought they had wings). it is a wonderful novel idea for a game and will no doubt will continue to appeal to a wide audience for some time to come! (it\'s as big as what the old lemmings game was in the 1990s) it\'s so addictive and fun to play whilst having a good feel about it. for me beats angry birds 2 game very easily and will no doubt remain so for the near future. the only flaw in it is loads of adds and becomes so slow when connected to the internet, but thankfully, the in game adds can be binned for a small fee but it also plays fine offline. ', 'TRUE'),
('com.rovio.angrybirds', ' such an awesome game love it a really fun games definitely suggest any reader of this description to get it is so good you will enjoy the game and it doesn\'t feel like a waste of time afterwards it is very easy to play and it\'s very fun to find ways to knock down the building just by using one bird thoroughly recommend it it is very fun and you\'re so good so please download this game will be blessed ', 'TRUE'),
('com.rovio.angrybirds', ' fuk you bich your picture hggffhfhg th y turntable th fug tn dutifully cj fi tri cf fyd tv chcggfufivkhujgokihugu u vjguyihihihihuihiuhi oh iuhjiguh he 6, and a half. i will be able to do with it. it is a good idea to have a good idea to have a good idea to have a good idea to have a good idea to have a good idea to have a good idea to have a good idea to have a good idea to have a good idea to have a good idea to 555. i have a lot of people who are not the intended recipient, you can get a chance to win the game. i have a lot of people who are not the intended recipient, you can get a chance to win the game. i have a lot of people who are not the intended recipient, you can get a chance to win the game. i have a lot of people who are not the intended recipient, you can get a chance to win the game. i have a lot of people who are not the intended recipient, you can get a chance to win the game. i have a lot of people who are not the intended recipient, yhthh rug m tv n tn cm m tv fum cm b ufo cm cm cm cm tn iv yocum cm cj, tn tn c co uvula titi tim htc ti full u tn tum tn got yum cm cm fi hmm to rock to go tv go cm k fun i ti titi gym you flux kr fighting tuck hung hhh yummy hoi nihilism ha rip ugh gym gul ', 'SPAM'),
('com.rovio.angrybirds', ' cool really great and awesome graphics. offline is great for going to a no-wifi place love it ', 'TRUE'),
('com.rovio.angrybirds', ' i remember back when this was a âł3 ipod app not filled with bullshit like adds and powerups. go back to what you used to be! +rio ruined every other angry birds game. ', 'TRUE'),
('com.rovio.angrybirds', ' 2many adds. great game ruined by too many adds! way too many adds now. not even fun anymore. was great, now it\'s terrible. ', 'FALSE'),
('com.rovio.angrybirds', ' game glitches nice, you have all the cheesy, simple reviews right up first. hey, robin!! i was nearly completed the game and i had to uninstall/reinstall, losing all my achievements. and it\'s still freezing up. it even switches to one if those annoying :30 ads in the middle of a game. is there a reason why my game was working just fine until the update? ', 'FALSE'),
('com.rovio.angrybirds', ' good time waster. good fun, but getting old and spams ads really bad. ', 'TRUE'),
('com.rovio.angrybirds', ' not the same with my hand on my heart. i can honestly say that the first angry birds was great. the latter is a horrible mess of horrible games cashing in on the original success. unfortunately, this hame has suffered the same fate... it is no longer the brilliant game it once was... it\'s an updated version, with none of the original stuff that once made it great... ', 'TRUE'),
('com.rovio.angrybirds', ' love it!!!!!!! i love angry birds, i can sit and play on for hours upon end. love the challenges they threw at me ', 'TRUE'),
('com.rovio.angrybirds', ' game ruined because of ads. i felt like re-downloading after haven\'t playing it in awhile, but i was immediately frustrated. a 20 second, awful mobile game ad popped up after the second level, and after looking at the store, i realized that you have to pay to remove ads. yep, uninstalling. ', 'FALSE'),
('com.rovio.angrybirds', ' ads way to many ads can\'t even enjoy the game with the amount of ads i have to watch. every other level there\'s an ad. that\'s just ridiculous. ', 'FALSE'),
('com.rovio.angrybirds', ' great game, but too many ads almost not worth playing. ', 'TRUE'),
('com.rovio.angrybirds', ' fun but hard angry birds is really fun video game that people from at least 6 year olds and people that are a lot, a lot, a lot of years older than that. just one thing: it\'s really, really hard. but a challenge can teach children how to control their tempers. even though it can ba a little frustrating. ', 'TRUE'),
('com.rovio.angrybirds', ' too many ads far more adverts than any other game i\'ve played. i know it\'s free and they need the ads to make a profit but there needs to be a balance. ', 'TRUE'),
('com.rovio.angrybirds', ' loved it i loooooooooooooovvved it because it is incredible awesome and it\'s in go power and make a new clash of clans the same thing butt better ', 'TRUE'),
('com.rovio.angrybirds', ' all time legendary game the birthday party levels and short fuse levels are fantastic.especially when the pigs crash onto different chemicals is just great.suggestion to all those players who cringe about too much ads is close ur wi-fi connection and then play the game.then the ads won\'t trouble you. ', 'TRUE'),
('com.rovio.angrybirds', ' ads are way to heavy listen to the bad reviews. there are ads after every round, whether you pass it or fail it. sometimes there are ads before the next round starts to. you spend more time on ads than game play. i develop web apps, and honestly many people rely on ads to make a living. i can appreciate that all to well. however, these developers have went far beyond that. frankly, they are disrespectful nitwits. ', 'FALSE'),
('com.rovio.angrybirds', ' fun works perfectly well. ads aren\'t as annoying as you think, especially for a free game. ', ''),
('com.rovio.angrybirds', ' they\'re everywhere i see angry birds everywhere because i can\'t stop playing this game. get out my head devs! 4 đ because nothing\'s perfect ', ''),
('com.facebook.katana', ' privacy at least put some option appear offline. i mean for some people like me it\'s a big pressure to be seen online like you need to response on every message or else you be called seenzone only. if only i wanna do on facebook is to read on my newsfeed and just wanna response on message i want to. pls reconsidered my review. i tried to turn off chat but still can see me as online.', 'FALSE'),
('com.facebook.katana', ' messenger issues ever since the last update, initial received messages don\'t get pushed to the messenger app and you don\'t get notification in the facebook app or messenger app. you open the facebook app and happen to see you have a message. you have to click the icon and it opens messenger. subsequent messages go through messenger app, unless you close the chat head... then you start over with no notification and having to go through the facebook app.', 'FALSE'),
('com.facebook.katana', ' profile any time my wife or anybody has more than one post and i view them it would take me to there profile so that i can view them all at once. now when i try to view them it tells me that the page that i requested is not available. i\'ve restarted my phone i even cleard the cache and i\'ve uninstalled and reinstalled the app and it is still doing it. please fix it thank you', 'FALSE'),
('com.facebook.katana', ' the new features suck for those of us who don\'t have a working back button can you guys make the videos able to be slid to the left to exit the video. as i have to force close facebook to exit', 'FALSE'),
('com.facebook.katana', ' forced reload on uploading pic on replying comment last night i tried to reply a comment by uploading a photo from my phone. when i press on the button to select photos the app automatically goes back to the main page. on other occasions, i could enter to my gallery to select my image but as soon as i selected an image and press done, the program, again, forced reload and suddenly go back to the main page. please fix this and i will change my rating. thank you.', 'FALSE'),
('com.facebook.katana', ' idk i can\'t edit my posts? things such as my profile picture, when i edit it, it becomes grey and says that it is no longer available. please fix. i have an htc desire. will rate 5 stars shown fixed đ', 'FALSE'),
('com.facebook.katana', ' major flaws constant updates and always getting not installed messages. i can use it for awhile and then it\'s no longer installed. none of my other apps do this!', 'FALSE'),
('com.facebook.katana', ' video issues since i was forced into this update the videos play with a black box in the middle of them. i edited a photo and its grayed out and stays at the top of my news feeds and my timeline it won\'t even let me delete it. if i could give a zero star i would. just like ever update something is always not working. if its not broke why fix it?', 'FALSE'),
('com.facebook.katana', ' this update completely destroyed my facebook. it loads to the status screen but once i try click anything at all or scroll the app goes to my home screen. it doesn\'t even say force close, it just does it so i load it again and finally begin scrolling but not even 5 scrolls later the app closes.... this never happened before i updated fb!!', 'FALSE'),
('com.facebook.katana', ' posting issues for the last week, there\'s been a ghost post at the top of all my feeds from when i uploaded a photo. closing the app fully has not fixed it, and it doesn\'t happen on any other platform. trying an uninstall to fix it.', 'FALSE'),
('com.facebook.katana', ' what the heck?! can\'t get status updates to be in chronological order...half of my comments don\'t post...it worked fine before the last update...keeps kicking me out of the app for no reason. won\'t let me tag people without their name being all jumbled. if i edit a post, it shows the unedited version at the top of my feed. i\'m 2 seconds away from uninstalling.', 'FALSE'),
('com.facebook.katana', ' its suck. any time when i want to see something error will come could not open check your internet satting. else i am using all other applications and other things on net hance i am using 4g network. realy very suck.', 'FALSE'),
('com.facebook.katana', ' connection issues everytime i try and click on a link or profile i keep getting can not refresh. it does this whether its on wifi , lte, 4g so i\'m finding myself having to continuously close app from multitasking and re load it periodically.', 'FALSE'),
('com.facebook.katana', ' external links are not working after updated to latest version.. could not able to open any links on facebook .. it\'s says connect to network after some time , plz check your network connection .. same time my connection is 4g network is at full speed .. plz fix this issue asap ..thanks', 'FALSE'),
('com.facebook.katana', ' fix this please... i\'ve tried editing two of my profile pictures in the past month and each time i do.. it doesn\'t post it, but it also doesn\'t go away. it fades out the picture and it\'s always at the top of my time line. now i have one from december 14th, and the second one from tonight at the top of my time line and it won\'t let me delete them, or do anything about it. and it\'s really buggin\' me. please fix this.', 'FALSE'),
('com.facebook.katana', ' buggy when i edit a post through the mobile app, that post freezes and even restarting the phone doesn\'t resolve / unfreeze. this doesn\'t happen via the desktop app on my pc, not did it happen with previous android app version.', 'FALSE'),
('com.facebook.katana', ' connection issues app always says can\'t refresh now, try later which in particular has to do with the net. but my wifi works well enough. i can even play online games. i can refresh my feed at ig and twitter so why can\'t i refresh my fb feed? fix it please.', 'FALSE'),
('com.facebook.katana', ' i can\'t get back on facebook it\'s my email thats wrong or my password. no matter what i do it just sucks because, i really want to talk to my grandchildren. that\'s the only way i can see or hear from them most of the time.', 'FALSE'),
('com.facebook.katana', ' can\'t connect right now when trying to open links in the facebook browser, i receive a can\'t connect right now error message. other items on my news feed continue to load.', 'FALSE'),
('com.facebook.katana', ' error i cannot edit my post with pictures. the moment i do, it will not change after save and it appears like when ur uploading but not yet done post in news feed and still there until i did reinstall the app. this still happens even.', 'FALSE'),
('com.facebook.katana', ' whenever i post an update and then try to edit it when i hit save it tells me the post is no longer available and may have been removed yet the original post is still on my page...please fix issue', 'FALSE'),
('com.facebook.katana', ' keeps updating updates all the time, slows my phone as it\'s doing it to a crawl. installs for like 3 minutes. and the updates never produce anything different or anything of use. the only app on my phone that i have issues with.', 'FALSE'),
('com.facebook.katana', ' won\'t load everytime i try to use facebook, well lately. it says trouble loading in every aspect. it\'s been doing this for 2 days i\'ve tried restarting my phone. closing the app. it doesn\'t work', 'FALSE'),
('com.facebook.katana', ' i wish posts popped up in the order they were posted and not get bumped up to the top every time someone comments on it. i end up seeing the same ones over and over even though they are old and missing newer ones.', 'FALSE'),
('com.facebook.katana', ' buggy. reinstall several times. issues editing uploaded photo from news feed post. only editable via image caption. then image is greyed out on news feed like it\'s pending photo upload & won\'t go away. also can\'t upload photo from phone gallery (share) to albums. have to open fb & upload photo, select from gallery to add to album.', 'FALSE'),
('com.facebook.katana', ' can\'t install (error code: -505) have samsung galaxy note edge, had issues and couldn\'t update so i uninstalled the app and now i can\'t reinstall it. total bs!', 'FALSE'),
('com.facebook.katana', ' not supported my phon galaxy core i have been use face book last one year. resantly i have a problam. so i will create a new account. now that is in a same problam. any time asking a conformation code. what s going on? plz answer me. plz help me. now what i do....?????? sent the anwer my email', 'FALSE'),
('com.facebook.katana', ' doesn\'t work 90% of the time. doesn\'t update my news feed says cannot connect to internet. the internet on my phone works just fine. i can uninstall and reinstall and it fixes the issue for a few hours then it starts saying cannot connect to internet.', 'FALSE'),
('com.facebook.katana', ' you should fix this it does\'nt work anymore. i don\'t know what to do, because everytime i open this app, it automatically closes and a pop up message says: unfortunately, facebook has stopped.', 'FALSE'),
('com.facebook.katana', ' doesn\'t let me click into anything always tells me to check my connection while there is literally nothing wrong with my connection. i can scroll through my timeline i just can\'t click into anything since i updated. missing my old version smh', 'FALSE'),
('com.facebook.katana', ' doesn\'t work every time i try to sign up it says couldn\'t processes registration. it did the same thing on my android tablet and my doogee x5 cell phone. please fix and i will rate 5 stars', 'FALSE'),
('com.facebook.katana', ' showing old news why is it showing that someone responded to my comment a week ago? i\'m not getting any crashing but its showing stuff from a week ago on top of my news feed.', 'FALSE'),
('com.facebook.katana', ' i have had to uninstall this app twice this week because whenever i try to edit a post, the post doesn\'t edit and just stays gray and stuck in the loading process forever. my o.c.d. can\'t handle that :-(', 'FALSE'),
('com.facebook.katana', ' profile issues samsung galaxy s4 active: so every time i post a pic on fb it says not available and i can\'t even edit it! it shows some gray part on top. plzz fix it. i would of rated a 5, but since this happened. i rated 2...', 'FALSE'),
('com.facebook.katana', ' camera roll please can you stop the camera roll popping up at top of page!!! whenever it does i can\'t use the app or my phone for a few mins !! doing my nut in', 'FALSE'),
('com.facebook.katana', ' not good its previous version (12.0.0.15.14) is much good than that. i can\'t text directly with current version. please add the inbuilt messenger again in the app.', 'FALSE'),
('com.facebook.katana', ' update uninstalls! everytime i try to update it uninstalls the app! what i want to know is if this is using my data each time i update and then have to reinstall?! driving me crazy. please fix.', 'FALSE'),
('com.facebook.katana', ' used to be good everything was great, until i updated this most recent version. now, i\'m on facebook on my cell, it kicks me off! repeatedly! i try and like something, it takes several times tapping the screen before it even lets me... if i don\'t get kicked off!! please fix this!!', 'FALSE'),
('com.facebook.katana', ' i can\'t send or read a message from facebook because the message icon has gone, it replaced by a messenger icon on top, so everytime i received a message i have to go to browser to see it, because i dont have a messenger app. and sometimes i cant even read a message at all because i dont always have a wifi connection. i really hate it since i\'ve been using mobile data sometimes. hope yu can fix it soonest.', 'FALSE'),
('com.facebook.katana', ' app doesn\'t work after latest upgrade the facebook app refuses to work on my mobile data (3g) after the latest upgrade! it says it cannot connect right now.', 'FALSE'),
('com.twitter.android', ' ⭐⭐⭐ when will this app be created to automatically start at the top with new posts instead of having to scroll through days of old tweets to get to the top! the only social app that does that! such a headache!', 'FALSE'),
('com.twitter.android', ' error i can\'t log in, its says error occured while logging in please try again later. i tried it several times, restarted my wifi and phone. still can\'t log in. please fix it :(', 'FALSE'),
('com.twitter.android', ' video issues sometimes videos uploaded from places like vine won\'t load and will play but the screen will show grey. fix please, i don\'t know if others have this issue, but i am on my samsung s6 and it is doing this.', 'FALSE'),
('com.twitter.android', ' i enjoy twitter but i\'m extremely annoyed that i can\'t swipe left or right through an accounts twitter pictures as easily as before, now just tapping the picture takes me to the whole tweet. i have to be super cautious to not accidently tap the picture while i\'m swiping. it\'s incredibly annoying. please go back to how it was before, if i were to want see the whole tweet just touch the caption.', 'FALSE'),
('com.twitter.android', ' having a headache because of this enough with the limits on this app, okay? i was trying to get rid of some tweets on my account and it\'s telling me \'cannot retweet status\' or when i try and tweet something: \'failed to send tweet\'. like, seriously?', 'FALSE'),
('com.twitter.android', ' i don\'t like how... users can be so young and content is obscene. naked pics fake little girl profiles and chances for child abuse are just waiting to happen because of twitter. hope the creators know this is partially their fault. tween porn industry uses twitter to get these girls popular. strictor control on content should be addressed', 'SPAM'),
('com.twitter.android', ' fix it dammit! why is my push notifications not appearing! i have 125 people enabled but i only get a tweet for every 5 minutes instead of all of them at the same time. i reinstalled the app countless times but they don\'t appear ar all. ive already missed 20 tweets in other 1 minute and i shouldve got notified for them all but i only got 1 for 1 tweet. fix this update im not liking it!', 'FALSE'),
('com.twitter.android', ' we have a problem. so i\'ve noticed that twitter will let me like nonspecific things until i\'m blue in the face, but liking certain specific things get me booted from the app and i have to log back in. let me repeat that. like certain specific things gets me logged out and i have to log back in. what\'s going on, twitter support?', 'FALSE'),
('com.twitter.android', ' came here to rate this app to give 5 stars for good optimization for android this is one of the only apps that i open and close and it actually clears fully from ram and does not use up cpu power, unlike facebook and its messenger using up ram and cpu.', 'FALSE'),
('com.twitter.android', ' i don\'t get notifications from people anymore. also, the number of notifications i got doesn\'t go away after i have checked it, it kind of just... stays there.', 'FALSE'),
('com.twitter.android', ' the new update sucks i hate that they switched favorite to like , i love twitter so much but it\'s turning into facebook real fast, i previously rated it 5 stars but right now i\'m rating it 1 star due to te next update, i\'ll rate it 5 again once the change is made, until then, if you want a second facebook experience feel free to download.', 'FALSE'),
('com.twitter.android', ' the new updates are cool but ... whenever i try to favourite a tweet now, it closes the app saying unfortunately, twitter has stopped. maybe it\'s just my android idk', 'FALSE'),
('com.twitter.android', ' sony xperia z1 very good as always, but since last update i can\'t seem to be able to change the ringtone. reverts back to default', 'FALSE'),
('com.twitter.android', ' the app made me i\'m rating it because of a pop up on the app,but i like twitter so i\'m going to give it 5 stars. the only thing i don\'t like is the fact that i can\'t edit posts,f-ing instagram can but twitter doesn\'t have option wtf', 'FALSE'),
('com.twitter.android', ' bug in changing notification sound i gave 1 so developers may look at it now. this bug is here since long time as i checked in internet. please take a look at it and send a reply or update. (handset : note 5). hope to see the update and change my rating to 5 again.', 'FALSE'),
('com.twitter.android', ' twitter is great to connect with my classmates, as i\'m on exchange at the moment. however, i cannot view who\'s liked my posts. it will say there\'s 9 likes, but will only show me 3. also, the notifications aren\'t very good, sometimes it won\'t tell me if someone has followed me or if they\'ve liked/retweeted one of my posts.', 'FALSE'),
('com.twitter.android', ' you don\'t say what the updates are please take 1 minute and tell us what and why we are updating and not leave the same old message there!', 'FALSE'),
('com.twitter.android', ' good but not the better i can\'t see the videos sometimes, the notifications are bad and always the app isn\'t responding. this actually is the worst update. please check it', 'FALSE'),
('com.twitter.android', ' why is there so much space? there is so much white space and everything is so spaced out. also the notifications are always late.', 'FALSE'),
('com.twitter.android', ' dont download not enough trump memes too much netflix and chill (stop already please). if you are looking for dumb girls that tweet everything that goes through their heads then this app is for you. #blessup', 'FALSE'),
('com.twitter.android', ' good ui ux and helpful in governance looking the fact that indian government specially indian railway and its officials are using twitter app rigorously for assistance and services , i am installing it. twitter is changing the way of governance in world\'s biggest democracy india. team twitter should also look to make twitter better and friendly for governance point of view, if any possibility persists for same.', 'FALSE'),
('com.twitter.android', ' awsome great type of social media nothing wrong with it it used to crash on my phone but since the update its doesnt even lag a bit pleaz get', 'FALSE'),
('com.twitter.android', ' videos and notifications my videos haven\'t been working for a long time on this app. whenever i try to watch a video someone else has posted, its black and white and all glitchy. i sometimes have no way of fixing it. next, i haven\'t been getting notifications in the app. i get them on my status bar, but when i go on the app i don\'t get a little number by the bell.', 'FALSE'),
('com.twitter.android', ' following back it doesn\'t let me follow people that have followed me back.. and also the amount of people following and followers is also incorrect.... overall it is a live appp', 'FALSE'),
('com.twitter.android', ' notifications not working i don\'t get notify about anything, new followers, retweet, likes. non of that and yes i\'ve enabled all the notifications in the settings but nothing happened :(', 'FALSE'),
('com.twitter.android', ' can you say ads every time i open a tweet there\'s an ad sitting at the bottom. they appear ridiculously frequently throughout my feed. i get that developers are trying to make a living but come on this is so excessive', 'FALSE');
INSERT INTO `comments` (`app_id`, `comment`, `sentiment`) VALUES
('com.twitter.android', ' needs an actual update! twitter slows down. tweets continue to not even send. it takes a long time to load a tweet and the timeline. i have to use the moblie site version to actually use twitter.', 'FALSE'),
('com.twitter.android', ' please include membership when viewing lists. i\'m on samsung android, and i don\'t know if this applies with android users in general, but this app version doesn\'t seem to include the option of seeing what member a user belongs to in viewing lists. it\'s available on web browser though. please consider including members of list option in the app.', 'FALSE'),
('com.twitter.android', ' account creation issue i tried to create an account but it keeps saying can\'t create an account at this time', 'FALSE'),
('com.twitter.android', ' after observation of all above things v should be hated all that which is outof humanity, n moral ways of loves on nature\'s beauty sweety n every mracles l were created by allahsubhanahutallah hence v loves all morally behave with everyone for deen duniyan n aakhirat for suxess..for all that v will get that output only; ;for what v invested input for the same.', 'FALSE'),
('com.twitter.android', ' its nice ... accecesible where mobile mobie data is or wi-fi if accesible so that if are are in in trouble of any sor,anyttime we can immediatetely tweet which reaches to near n dear ones & other thousands of ther too on the web........ helpful in many ways !!!', 'FALSE'),
('com.twitter.android', ' poor customer service the heart button crashes the app whenever i hit it. hasn\'t been fixed ever since its introduction. within weeks my rate dropped to 1 star, unfortunately', 'FALSE'),
('com.twitter.android', ' really great! twitter is an amazing app which i use frequently each day. i do have problems with it though. [this is personal preference] whenever i refresh the page, it gives me a tweet with the subtext [twitter name] follows [twitter name] and it happens every time i refresh, so can you only do it once since it clogs my feed with it whenever i want to see new tweets? othe than that its fine.', 'FALSE'),
('com.twitter.android', ' notification so much update in a every week, but notification still suck. it stuck when app destroyed by system and won\'t appear when app started. why?', 'FALSE'),
('com.twitter.android', ' love it you are able to see celebrity tweets and get info you didn\'t know... i love it', 'TRUE'),
('com.twitter.android', ' so much room for improvement... the twitter app has been around for several years and yet it still hasn\'t lived up to its full potential. here\'s an example: how don\'t we have the capability to save gifs and videos? not only that, but it\'d be cool if we can customize and have different layouts and appearances. simple updates like those would make this app so much better, not lame ones like changing favorites to likes. hopefully these ideas can be considered for 2016.', 'FALSE'),
('com.twitter.android', ' ads placement is anoying we know ads was one of your source of income, but placing ads in replies is taking anoying and greed to another level. facebook had more ads, but have you ever see them in the comments section?', 'FALSE'),
('com.twitter.android', ' i hated it i am able to log in successfully but after some days , there comes the message saying - unfortunately twitter has stopped. first time i let it go then again the next day comes the same message. i reported then again let it go. then the next day comes again the same message. i can\'t tolerate it this message comes more than 15 times a day. when i start browsing on twitter, there comes again . truly why are you creating this type of stupid social networking sites if it is nawt useful ?', 'FALSE'),
('com.twitter.android', ' still not background refreshing despite the daily updates this had been working well until a recent version. it no longer refreshes in the background and therefore is very slow to load when i open the app. stop updating things that used to work.', 'FALSE'),
('com.twitter.android', ' could be so much better if they\'d stop making unneeded changes. while i love twitter, i hate that there is no paid service to remove ads. also there should be a quicker way to access your lists (like a shortcut on the home screen to a specific list would be awesome) and also i\'ve heard that twitter is testing a non-chronological timeline. that is the worst idea ever. if that is implemented without a way to turn it off, i won\'t use twitter anymore. honestly, if third party apps had push notifications, i wouldn\'t use the official app at all. oh, and moments is dumb.', 'FALSE'),
('com.linkedin.android', ' the new app looks great and is very easy to use. however it is missing important features such as endorsing connections or writing recommendations. furthermore i hate the fact that job search is now in a separate app. why do i have to download 2 apps?', 'FALSE'),
('com.linkedin.android', ' bugs with contact syncing very frustrated. after having this app work fine for a couple years, i get an update that screwed up my contacts. i\'ve read others\' comments and the supposed solutions, including uninstalling and reinstalling the app. for a brief few hours last night, it appeared to re-sync my linkedin contacts back to my phone contacts. today, gone again. in any case, even when the contacts came back, all my previously set up shortcuts to those contacts were disabled. can you fix this linkedin? i use a samsung galaxy 3s.', 'FALSE'),
('com.linkedin.android', ' unexpected! the new update doesn\'t let you change your profile pic. and the profile pic can\'t be seen properly after selecting. fix it!', 'FALSE'),
('com.linkedin.android', ' agree with new ui being too much like fb. also, there is literally no way to modify the app settings. the only option given is to view your linkedin apps. why was this removed? major necessity when you\'re getting spammed everytime someone posts an update.', 'FALSE'),
('com.linkedin.android', ' issues setting up. works fine now had issues with registering verification email initially. eventually did it via the browser than the app. the app works fine now once set up, do like it.', 'FALSE'),
('com.linkedin.android', ' sort it out why can i not get my networks posts in recent order on my mobile app? on my pc it happens, why am i looking at post from 1day ago before posts say happening 1 hour ago? this is so annoying, how do you sort it out? also your help centre on mobile is not working hence i have had to resort to this. what is going on?', 'FALSE'),
('com.linkedin.android', ' samsung note 4 - awesome business platform! please consider adding an edit option in addition to delete for our posts. just in case we\'d like to correct a mistake, rather than delete the whole thing.', 'FALSE'),
('com.linkedin.android', ' new version makes it harder to use linkedin especially find the groups you subscribe to and comment in them. submitting issues doesn\'t seem to work in the mobile app, the submit button is never enabled. this last update was a loser!', 'FALSE'),
('com.linkedin.android', ' great code but arrogant company linkedin should be proper stewards of the database they have created. and ensure their customers get optimum use. too many gotchas; no cut and paste from messages, closed api\'s, etc. pretty narrow minded.', 'FALSE'),
('com.linkedin.android', ' better user interface, worse quality the user interface is definitely better now but at the same time there is a bug concerning synchronising the contacts with the phone contacts, and even when that bug got fixed the contact photo doesn\'t get shown any more in contrary to previous releases!!!', 'FALSE'),
('com.linkedin.android', ' don\'t like the new look looks like a cheap dating site now. professional vibe is gone, poor facebook knockoff is here to stay. it\'s not just the aesthetics but the design as well. simple things, like viewing my connections or viewers, require more time, more taps, and more effort than before. others\' connections are listed seemingly randomly, making it arduous to find anyone. it\'s worse on iphone, where speed is at a snail\'s pace. linkedin has lost its identity, and if it continues in this direction, it will lose its userbase too.', 'FALSE'),
('com.linkedin.android', ' no respect for privacy linkedin takes advantage of how android manages permissions as well as using an persistent opt out mechanism to aggresively scan your phone\'s contacts in order to constantly nag about inviting them whilst the app harvests your data. the practices are unethical and makes one question how the company treats private data. linkedin is an important tool to use today but with the way the company behaves, it is better to uninstall the app and rely on the web version when its needed.', 'FALSE'),
('com.linkedin.android', ' so unstable after daily updates had it 4 stars for a long time. this week there were daily updates and the latest one didn\'t fix my problem. i get a pure white screen upon launch. that would be fine if this was a flashlight app. i uninstalled and reinstalled. still a flashlight.', 'FALSE'),
('com.linkedin.android', ' good app but......... why do post come up in a random order on the home screen, i have 4 day old posts at the top and have to scroll down to find new posts which are buried between 1 day to 1 week old posts, it needs to have an option for what order you want the posts in.', 'FALSE'),
('com.linkedin.android', ' bad app for a great site linkedin is great but the app sucks. i always have problems opening the app. most of the times it asks me to retry or try later because the feed never loads. there are a bunch of other bugs.', 'FALSE'),
('com.linkedin.android', ' facebook ripoff used to see my connections new connections in news feed, now all i see is silly opinion posts. no longer a networking site at all :-(', 'FALSE'),
('com.linkedin.android', ' not able to see recently connected people hi i am not able to see the recently connected people in the notification tab.from where i can see the people with whom i connected recently.', 'FALSE'),
('com.linkedin.android', ' unable to send message or update this new version does not allows sending messages nor does it updates the status. it keeps suggesting to come back. linkedin what happened, your app was one of the best.', 'FALSE'),
('com.linkedin.android', ' unsatisfactory version older version was more user friendly than this one. i can\'t see my rank among my connection and colleagues. this is really bad. i wish to revert back to old version.', 'FALSE'),
('com.linkedin.android', ' issues with address book contacts i have turned off the feature to update my android contacts based on linkedin information. but it still keeps updating with unwanted title on my address book. i have uninstalled the app n reinstalled it, cleared the data for the app but made no difference. i am using galaxy s6 and would really appreciate if anyone can solve this issue. the best option seems to uninstall the app for good and use just the broswer.', 'FALSE'),
('com.linkedin.android', ' updated version is down not able to sent connection request, no contacts synchronization . please develop soon', 'FALSE'),
('com.linkedin.android', ' down to 1 star after backward redesign this app design was perfectly adequate as of fall 2015, then one of these useless all new! redesigns was perpetrated. now the old controls that let me manage the notification sound (silent, vibrate, etc.) are nowhere to be found. had to turn off notifications totally to keep my phone quiet. that is unforgivably incompetent. i find the overall design more confusing than prior layout, as many other reviewers do. boo! from 4 stars to 1.', 'FALSE'),
('com.linkedin.android', ' not good although most if the update is ok, you can not inbox people for free anymore.... why should i hand over my bank details for a free trial??? complete rip off', 'FALSE'),
('com.linkedin.android', ' even though i am loving the new update, but this breaks the default contacts app on the note 5. under accounts linkedin sync has no account header name and that breaks editing of contacts. update: opened a ticket with linkedin support and they agreed that the contacts app break on merged contacts is a bug. this is with their engineering team to be fixed. update2 : contacts force close exists as off version 4.0.11. update3 : finally the contacts bug has been fixed.', 'FALSE'),
('com.linkedin.android', ' doesn\'t work challenge page fails to load. it\'s so secure even i can\'t get in.', 'FALSE'),
('com.linkedin.android', ' contacts sync won\'t work contacts don\'t sync anymore, app crashes. i\'ve tried uninstalling, clearing data and cache, updating but the issue persist. shouldn\'t had released this version with so many bugs!', 'FALSE'),
('com.linkedin.android', ' it is fine.. and getting better.. working quite well for me at the minute. i liked the recent layout changes and messaging facilities. websites links are handled better and able to open in browser as well. the problem with notifications still exists. i can\'t tell if someone accepted my connection request or send me an invitation. notifications appear for a second and go away.', 'TRUE'),
('com.linkedin.android', ' why can\'t i share my achievements? recently discovered that there is a feature for sharing any kind of achievement, however i can\'t accomplish it on my profile', 'FALSE'),
('com.linkedin.android', ' the worst!! this newer version/update might look nice, but i stopped getting all push notifications. also, the app doesn\'t even work most of the time. nothing loads and it keeps telling me to try again. it worked fine before until the most recent update. same as other apps, it just gets worse and worse. don\'t fix it if it\'s not broke!!!', 'FALSE'),
('com.linkedin.android', ' not able send requests to connect not able to send requests to connect even i uninstalled this app. older version was much much better.', 'FALSE'),
('com.linkedin.android', ' organization logo whenever i try to add my organization, on my status it displays linkedin\'s organization logo, however on my profile the logo isn\'t there and it looks very plain. can someone explain to me why this may be happening? (this is on a desktop, by the way)', 'FALSE'),
('com.linkedin.android', ' still rubbish, still can\'t log in. fb inspired interface is completely unprofessional. can\'t log into the app with my password. works on the website, not on the app. takes me back and forth from the login screen to verification and back..the facebook inspired interface is just too unprofessional.', 'FALSE'),
('com.linkedin.android', ' updates poorly current update clears the cache forcing you to log in again, and of course i have not logged in in over three years and don\'t know the password. try to do a password reset and the app says the email is not valid. why would you clear auto login information in an update?', 'FALSE'),
('com.linkedin.android', ' i do not want to search for new connections every time i open the app. no means no, just live with it and keep the experience smooth.', 'FALSE'),
('com.linkedin.android', ' groups??? ** edit: i changed my rating from one to three stars due to linkedin\'s response to my review. glad groups is still in the app but i dont iike that it is not as straightforward to access them as before.', 'TRUE'),
('com.linkedin.android', ' smh linkedin will not allow me to send connection request through android. but on the other hand i am able to send connection request via ipad! hello....please fix. the new set up is fancy but horrible.', 'FALSE'),
('com.linkedin.android', ' the old one is better the previous version kept track of group conversations better. now, i cannot see new activity within groups i follow.', 'FALSE'),
('com.linkedin.android', ' good thank you for your previous reply. but i think you guys got me wrong. my friends are not able to endorse my skills and not the opposite. i dont know how to enable the endorsement.', 'FALSE'),
('com.linkedin.android', ' app requires frequent login password why the hell this app everytime requires password to open...this is not expected from proffesional app like this...who the hell remembers password for each and every app or site?', 'FALSE'),
('com.linkedin.android', ' totally diferent from the web page do not use this app, use the web page instead, you will be able to do much more from there. it is almost impossible to apply to a job from here.', 'FALSE'),
('com.king.candycrushsaga', ' why do u do this to me ok so i can\'t unlock the next episode for 48 hours or i have to pay money to buy gold. so i wait and wait and 48 hours later you tell me to wait 24 more hours because i didn\'t pay money. so here i\'m still waiting not going to pay you money. so how long with this take?', 'FALSE'),
('com.king.candycrushsaga', ' not happy with this app not one of my life or ticket requests come through. ..i get notified on fb that people have sent them..then when i open the app there is nothing there...having to pay to get to the next level really sux.', 'FALSE'),
('com.king.candycrushsaga', ' so disappointed my candy crush would not connect to fb so i uninstalled and reinstalled. still didn\'t work so i restarted my phone. that worked only i\'m two levels back and all my power ups are gone....đ', 'FALSE'),
('com.king.candycrushsaga', ' i get all these requests on fb but yet i go on candy crush and nothing getting very tired of it. then using the special candys they dont even do anything anymore what use to clear all rows no clears 3. no wonder no one plays this anymore', 'FALSE'),
('com.king.candycrushsaga', ' either make the moving forward process 3 bars or less time to wait you need to change the peramiters to move to the next episode....tired of waiting 3 days as you paid people up with other people who no longer play.', 'FALSE'),
('com.king.candycrushsaga', ' candy crush i rated it a 2 star because when i send out ticket request i never get them. i know for a fact that 6 people sent me tickets back and i only got 1', 'FALSE'),
('com.king.candycrushsaga', ' memory game the levels are so hard and less moves . l do no how to pass 95 levels but levels are so bour. chico bar is very hard to finish. please any of you send me life', 'TRUE'),
('com.king.candycrushsaga', ' it takes me two levels back and no boosters not happy with this game.i passed the hard level an i was two level forward to the hard level and i had boosters.after work i open the game no booster and i was two steps back .back to the hard level.after that the game switches its self off', 'FALSE'),
('com.king.candycrushsaga', ' what is the point of having the jackpot when we spin the wheel if i never get it i mean has anyone ever got the jackpot if not i think it\'s completely pointless and should be taken off', 'FALSE'),
('com.king.candycrushsaga', ' umm.... while this game has gotten kinda old, and i\'ve basically replaced it with the soda saga game, i still like playing this but for some reason, for i don\'t know how many days now, every time i go to open this game it\'ll load a little and then crash closed. fix please!!!!!!!!', 'TRUE'),
('com.king.candycrushsaga', ' i have to call it one of the most addictive games ever.... but now i\'m dropping my rating because it took all my bonus candy away with the last update.. fix that guys... not ok!', 'FALSE'),
('com.king.candycrushsaga', ' candy crush. i have been having trouble playing on candy crush so in the end i uninstalled it , i then re-installed and signed back in, in doing this i\'m back to my level but lost all my boosters.', 'FALSE'),
('com.king.candycrushsaga', ' lost power ups switched phones and lost my power ups. i had accumulated quite a lot. how do i get them back.', 'FALSE'),
('com.king.candycrushsaga', ' every time i play the moon struck game, it doesn\'t give me all the moves, takes my game and makes me lose. please fix this and i will give 5 stars!', 'FALSE'),
('com.king.candycrushsaga', ' booster should be internet independent why internet connection required to get daily spin? it should be part of game itself. every time i have open net connection to get daily spin. unacceptable.', 'FALSE'),
('com.king.candycrushsaga', ' it sucks right now the special levels are rigged i\'m sure you can\'t win just waste your lives and boster f it ready to un install it', 'FALSE'),
('com.king.candycrushsaga', ' simple fun game this is the type of game that can be easy and difficult at the same time. each game is determined by how the candies drop, so sometimes you can fly through a level and other times you can be stuck for days. a good time filler when you have 5 mins to spare.', 'TRUE'),
('com.king.candycrushsaga', ' the scoring system on facebook gains more points than mobile on jelly levels and i think that needs to be changed. e.g. using a colour bomb with jellies on candies gives much more points on fb than mobile. also there are no fish once u finish jelly levels. please change the scoring system so it is the same for both platforms and that there is no bias against mobile.', 'FALSE'),
('com.king.candycrushsaga', ' i love playing candy crush but... why when u go to another episode you have to wait for along time for example i was in level 50 and i passed it and had to wait 75 hours for episode 3 the game is good and very addictive but i don\'t like the waiting for the episodes đł by the way good đwork', 'FALSE'),
('com.king.candycrushsaga', ' i had over 500 lives and the game wouldn\'t work so i uninstalled it and reinstalled it and i lost all my men. give them back and i will change my rating. my gold was still there but not my lives. not a happy camper.', 'FALSE'),
('com.king.candycrushsaga', ' where\'s my boosters? after the update all the boosters i gained has gone, i had more than 100 boosters from each and now you took them all! why???', 'FALSE'),
('com.king.candycrushsaga', ' was great i was going to give this 5 stars until the latest update causes it to constantly crash and force close. please fix it! i love playing this game!', 'FALSE'),
('com.king.candycrushsaga', ' frequently resets once again, it has reset and taken all stored boosters. this has gone on about four times now within a couple of weeks of each other. i don\'t understand why that information isn\'t stored, since things like your level and gold are retained.', 'FALSE'),
('com.king.candycrushsaga', ' awesome it\'s a great game that will test your patience. you may have to spend real money if you can\'t wait to move on or lack the skill needed to complete a stage. there are more than 1,000 stages, so far i\'m up to level 82 and each level has at least 15 stages.', 'TRUE'),
('com.king.candycrushsaga', ' too many recent glitches i used to play this all the time. i\'m level 500+ but now can\'t even log into the game, it started removing received boosters n not recording passed levels so they\'d have to b replayed, now it tries to load for 5-8 mins then just kicks me off, haven\'t been able to play for weeks now. will b uninstalling soon if not fixed. really disappointed with candy crush now.', 'FALSE'),
('com.king.candycrushsaga', ' can\'t play at all every time i load game it freezes then goes back to my home screen even tho iv reinstalled it many times', 'FALSE'),
('com.king.candycrushsaga', ' 1 of our 2 favorite games! it is a delight playing this modern classic that is constantly renewing our interest.', 'TRUE'),
('com.king.candycrushsaga', ' i used to play this game almost 5 years ago and it was my absolute favorite! i recently re-installed it and i got to say, it\'s very slow and this will be the third time in less than a month that i\'ve lost my boosters.... i have paid for them and it gets taken out of my account but i still don\'t have them!! i really love this game, please fix the app because it\'s such a great game. get with the program guys, it\'s just so slow! besides that we love this game.', 'FALSE'),
('com.king.candycrushsaga', ' suggestion. i given 5 stars to this game, because i like it very much, but i have a suggestion to improve this game plz. when a color er bomb is mash with i striped candy, all of candies of the same color become striped and blast. but same action with tha rapped candy does not act like this. as works in candy crush soda saga. plz work on it. thanx. muhammad hanif karachi pakistan. no reply from admin, why ???????', 'TRUE'),
('com.king.candycrushsaga', ' i think this game is such a load of rubbish it tries to con you into buying stuff from the instore app and cause you dont buy anything then you can be stuck on one part of the game for ages worsed app ive ever come across', 'FALSE'),
('com.king.candycrushsaga', ' not able to play, automatic closing since last two updates, not abke to play game. it closed suddenly in between automatically.', 'FALSE'),
('com.king.candycrushsaga', ' developers please read. i think there needs to be some kind of confirmation implemented when the \'buy extra moves for 9 gold bars\' button is clicked. i recently didn\'t do so well on a level and i ran out of moves, when going to press \'end game\' , i pressed the extra moves by accident and it took 9 bars even though i had no intention of continuing. i felt hurt after saving them up for so long. please consider this.', 'FALSE'),
('com.king.candycrushsaga', ' boosters gone!!!! last update took all my boosters. im going to be patient for them to be restored. if not i will be uninstalling and moving on. not happy!', 'TRUE'),
('com.king.candycrushsaga', ' hooked - but no cutting out it\'s a fab game and i\'m hooked but i do get kicked out on occasions part way through a game.', 'FALSE'),
('com.king.candycrushsaga', ' complete bull was on 1186 and went to play and had lost all my boosters had over 100 different boosters saved up some i payed for never again', 'FALSE'),
('com.king.candycrushsaga', ' update does not address facebook issue sadly you all seem not to care that your game is now limited by mandatory facebook connection that doesn\'t work. deleting now...', 'FALSE'),
('com.king.candycrushsaga', ' not happy updated every week they say, erm get more levels added you can do it when not on mobile app and stop taking my boosters off me lost all my swaps, lollies and colour bombs. get it sorted', 'FALSE'),
('com.king.candycrushsaga', ' addictive! the only negative is that you\'re never given gold bars. you have to buy them.', 'FALSE'),
('com.king.candycrushsaga', ' for this new update....đ didn\'t showing facebook massages in candycrush... no life, no help.... am helpless now.... plz do something.', 'FALSE'),
('com.king.candycrushsaga', ' what the hell!! stole all my boosters! all my boosters and power ups are gone.. return it now.. had more than 60 of each! what a cheap manner to manage the game!! return all power ups nowww!!!!', 'FALSE'),
('com.imangi.templerun2', ' book and their use as a great christmas navarro was gonna get a lot of different names for christmas is a screamer and i can\'t remember if my sis and baking and making everything so perfect for me to believe in things and i\'ll return to go over in a few minutes ago and i have a great day at home soon and their little room in the kids to school with your questions', 'FALSE'),
('com.imangi.templerun2', ' fun, addicting game i\'ve played this game for so long, i have everything. there\'s no way i can complain about a free game. my only wish is that there was a reward for completing the frozen artifacts challenge. i think this happened one other time too but oh well. still a fun game.', 'TRUE'),
('com.imangi.templerun2', ' awesomness this game is awesome but tricky with ice i play all day trying to win i might say i\'m good at this game but my friends and family!ily look over my shoilder and say your playing the game wrong but i love this game', 'TRUE'),
('com.imangi.templerun2', ' amazing upgrade! love the upgrade in the game. just when i thought this game couldn\'t get any better, it exceeds my expectations. good job guys!', 'TRUE'),
('com.imangi.templerun2', ' bolt i purchased bolt earlier in old phone. now i changed my phone. unable to purchase him again. clicked on bolt purchase but nothing pop upchurch . for bruce lee, when i clicked on purchase, its ok. please fixed. <<< this has been fixed. emailed me the instructions within 1 day. basically, go to currency, at the bottom press restore purchase. it not easy to find.', 'FALSE'),
('com.imangi.templerun2', ' ugh i don\'t recommend this because when i tried getting into the game it says that it\'s downloading but it really isn\'t and then it doesn\'t work and i cant play it!. i was so excited to play the game but it just doesn\'t work for me!!', 'FALSE'),
('com.imangi.templerun2', ' awesome its nice but not compatible with my handset gionee p2s if u can make it compatible i would be happy but don\'t woory i have i phone in march 2016 then i will play till then wish you all happy new year and hats off to this game', 'FALSE'),
('com.imangi.templerun2', ' like my review and take my advice i cant save my data .even though i have wifi.desame network.and always lag.hard to find chest and its so dumb.so if i were u i will unninstall it', 'FALSE'),
('com.imangi.templerun2', ' how to unlock frozen in this update have no daily challange so i can\'t compleat my mission, and how to unlock frozen and new outfits for players, it is very hard to find mystery box in this update so guys please fix these problems.', 'FALSE'),
('com.imangi.templerun2', ' ????? hanging so much even i am using higher end mobile having 3gb ram itself pls take the needfull action and fix that error', 'FALSE'),
('com.imangi.templerun2', ' keep calm and play temple run it\'s really fun... the graphic is great. and you\'ll never feel boring with that game', 'TRUE'),
('com.imangi.templerun2', ' amazing game awesome game so entertaining and very fun. this app is my favorite game. i hope evrybody put\'s a 5 star for rating because this app is cool.', 'TRUE'),
('com.imangi.templerun2', ' awsome but i â¤â¤â¤â¤â¤â¤â¤â¤â¤â¤ this game but i don\'t like the frozen bit my sister has had eye site and she can see the normal one and she can\'t see the frozen ones so she keeps dieing luckerly we can change back to the normal one but the frozen one takes longer to load so when the frozen whone is out the window i will rate 5 stars but the rest is awesome', 'TRUE'),
('com.imangi.templerun2', ' so fun! i\'m totally addicted to this game. i play it way too much because it\'s so fun and has really smooth game play.', 'TRUE'),
('com.imangi.templerun2', ' new theme its a fun game.......its great to see some new items added to the game. the frozen shadows makes the new challenges a lot more fun.', 'TRUE'),
('com.imangi.templerun2', ' the new theme is not compatible with my device :( (samsung galaxy j1) make it compatible please. i really love this game.', 'FALSE'),
('com.imangi.templerun2', ' it\'s alrightđ¤ i don\'t get to go on the cross wire i\'ve got to 200 000 why why why.,đ˘đđđđâ â â đđľđşđăđđi forgot to tell u no sound on this game ........i hate it', 'TRUE'),
('com.imangi.templerun2', ' really love the new game, but since this update the game keeps shutting down on my s5. please fix the glitch', 'TRUE'),
('com.imangi.templerun2', ' ???? when i open it download but it stop when it reaches to the letter o and it wont move even if there is strong connection.please fix it i really want to play', 'FALSE'),
('com.imangi.templerun2', ' great game i\'ve enjoyed playing ever since i downloaded it this summer. i like it much more than the first one - the challenges and visuals are improved as well as the way you run through the game. highly recommend!', 'TRUE'),
('com.imangi.templerun2', ' temple run -pretty good the game is fun.but i would like it if it didn\'t have so many videos for one specific app most of the time. it would also be nice if you could choose to be a boy or a girl character. overall the game is okay/pretty good', 'FALSE'),
('com.imangi.templerun2', ' not supported your new updated temple run 2 frozen shadows map is not supported to my device which is the samsung galaxy v. ill give 5 stars if you will make this updated map support my device plss i need to play that map, ive been waiting this for a couple of months', 'FALSE'),
('com.imangi.templerun2', ' great but... lags waay too much. i always end up wasting gems when i die because it was lagging. please fix :)', 'FALSE'),
('com.imangi.templerun2', ' pretty good if i do say so myself oh wait i did. it\'s a very fun game to play', 'TRUE'),
('com.imangi.templerun2', ' would rate 5 but since the new update every time i try to play the new world get kicked out of game', 'FALSE'),
('com.imangi.templerun2', ' frozen 12/17/15 review of temple run 2.. appropriate for the age of 13 and up... great game without the redicioulous violence... provides sufficient rewards for successful achievements.... ...... you can either turn on or off google play rewards very easy in temple run settings! ! .... ..... ..... please click like, if helpful..... .... .... many thanks to their tech support and developers for their great work!!', 'TRUE'),
('com.imangi.templerun2', ' old is gold i used to play this game a lot when iwas nearly in 4 std but even after 4 years when i\'m in 8 the this game still continues to be my fav . i really never get tired of playing this as u know now that this is my fav.', 'TRUE'),
('com.imangi.templerun2', ' no upgrades to the game till yet...the developers have no idea how to do upgrades.... most of the people have stopped playing it because it got old and there is no fun playing it now...', 'FALSE'),
('com.imangi.templerun2', ' good game but... i have always liked temple run however the new update which included a new map has ruined it for me a little bit. i would of rather of it been snowy on the default map since since for me anyway the new map is a bit confusing and can be harder.', 'FALSE'),
('com.imangi.templerun2', ' everyone able to see highest score i would like to given one idea ,i could not saw everyone higher score atleast 1 to 5 member, i want to see each and everyone highest score through on my mobile , if you create this option, everyone will be try to achive the highest score ,i hope you will be create this option of temple run 2', 'TRUE'),
('com.imangi.templerun2', ' fun diversion good game to take a quick break from whatever you\'re doing. nice test of your ability to see and hear what\'s coming ahead and react. the latest update with the winter map improves the core game quite a bit.', 'TRUE'),
('com.imangi.templerun2', ' no artifacts since 1 months artifacts stopped to appear. ..i have a mission to find it', 'FALSE'),
('com.imangi.templerun2', ' only two stars because frozen shadow is not compatible to my device đť why oh why?? đ make it compatible please..', 'FALSE'),
('com.imangi.templerun2', ' always fun, but... i like this new frozen shadows, but the depth perception is not so good. it\'s hard to see an approaching corner. other then that small bug, i love this game and will continue to play it.', 'FALSE'),
('com.imangi.templerun2', ' not supported i am using panasonic t10 and frozen shadows are not supported. i will be very great full if you will fix this.', 'FALSE'),
('com.imangi.templerun2', ' very adventurous game i love it very nice thrilling game everyone should download it and play !!!!! very addictive game i just stick on it good graphics and sound improved by the previous partđđđđđđđđ', 'TRUE'),
('com.imangi.templerun2', ' nice game.... its simply amazing...but i would like it better if we had custom options for graphics. it runs extremely smooth but the developer should go easy on the memory that is, it takes more space now than ever before. but overall its an epic game.', 'TRUE'),
('com.imangi.templerun2', ' frozen world - changed stats i love this game! now with the frozen verison up and running, finally got to a high score of 8,736,101 with no save me and my stats had not changed! when get past 12 million, screen starts going slow and skipping along as if still downloading while running through the forest. please fix, not cool...', 'FALSE'),
('com.imangi.templerun2', ' would give 5* if i could retrieve my previous game my phone crashed and i had to install it again, didn\'t get to keep my score, coins and boosts, the gems i paid for where also lost, negatives aside, i enjoy this game, its a good time waster, i thinks it\'s better than the first temple run.', 'FALSE'),
('com.imangi.templerun2', ' temple run 2 frozen shadows i love this game so much i love being in the ice but only one thing that i hate about it is that the monster goes infront of u when your running but as you go further into the game it gets harder but able to pass the monster ', 'FALSE'),
('com.supercell.clashofclans', ' fix or i quit don\'t download this game the new update sucks and is just a money grab for the developers. the game won\'t load half the time and it kicks you off before you can even play. not to mention the new rules are made to make you buy gems rather than raid for supplies. i have used a lot of money over the years yes years to have you all of a sudden change the rules on farming and game play. fix these issues or i\'m done but from what i see in the other comments i don\'t think the developers even care.', 'FALSE'),
('com.supercell.clashofclans', ' force close it\'s been 1 or 2 months and y\'all still haven\'t fix the error. i can\'t play, it\'s always crash and force to close everytime i\'m online for 10 seconds.', 'FALSE'),
('com.supercell.clashofclans', ' help me!!!!!!! my ipad had a software so i lost my base, i need it back, please, i left my base in a clan that shows my code on the top left on my profile, now i have 2 accounts please if any can help me i would really love this game, but at the moment nobody is helping me. thank you very much i hope you reply and i get my account back', 'FALSE'),
('com.supercell.clashofclans', ' your new update sucks it\'s now impossible to loot 2m in 4 hours. wtf. are you kidding me supercell? no more dead bases and spent 500k to find a semi dead base with 180k loot. dafuq u. ./,', 'FALSE'),
('com.supercell.clashofclans', ' new update sucks no more dead bases. farming is now impossible unless you buy gems to boost barracks or buy loot. used to play a few hours a day now if i play once a week its a lot', 'FALSE'),
('com.supercell.clashofclans', ' hey supercell i would like u to put in a skype in the clan chats when peaple r battleing because u could help them out because u see things they dont and some type of healing defense. and thx for the town hall 11 if u do 5 stars', 'FALSE'),
('com.supercell.clashofclans', ' decembers update this recent december 2015 update has made the gameplay so lopsided that i can not compete with anyone i attack. there is now no reason for me to invest anymore time in coc. can no longer protect my loot and no shield', 'FALSE'),
('com.supercell.clashofclans', ' needed to learn the hard way about town hall penalty if you attack an opponent with 1 level lower town hall you get 50% of loot ,2 levels 25% and it decreases hence forth . i am a newbie no where in the tutorial its mentioned', 'FALSE'),
('com.supercell.clashofclans', ' want to get all 5 stars ????? reduce the amount of time it takes to upgrade buildings instead of days put it hours i.e:town hall level 6 takes 4 days put it four hours.i never saw a game that goes more than 4 days to upgrade something. each month i will remove 1 star if you do not fix it', 'FALSE'),
('com.supercell.clashofclans', ' it\'s been 1 or 2 months and yall still havent fix the this recent december 2015 update has made the gameplay so lopsided that i can not compete with anyone l attack, there is now no reason for me to invest anymore time in coc. can no longer protect my loot and no shield', 'FALSE'),
('com.supercell.clashofclans', ' this new update sucks..! no more dead bases..! supercell u have to fix this and bring back those dead bases so that we can have higher loots..! for now its impossible for us to upgrade anything..please fix this asap..!', 'FALSE'),
('com.supercell.clashofclans', ' new update sucks.... also my base isn\'t going to my ipad cause your support is rude. title says all, i moved my base to my android cause it got stolen, i bought an iphone and made a new gamecenter account but hey guess what? nope i dont have my first receipt and no i cant tell you the specific date of when i first created my base', 'FALSE'),
('com.supercell.clashofclans', ' this new update i haven\'t signed into my google account on clash of clans. and since the new update i can\'t log in! and can\'t remove the game and download it again because then i will lose everything. please help me get my game to load!', 'FALSE'),
('com.supercell.clashofclans', ' this update sucks!!! i can\'t open the game anymore, just crashed. damn it! i have an on going war but the app won\'t run... if there is a half star option to rate this, i would give you that. fix this asap....', 'FALSE'),
('com.supercell.clashofclans', ' it was a gud game, but slowest game on this planet, now new update make it more slower, u can\'t use spells to steal gold or elixir, duration for upgrading is high.. m deleting this game n i won\'t recommend anyone to play this game..', 'FALSE'),
('com.supercell.clashofclans', ' once a great game i was a hardcore fan of this game. but u gotta admit... the latest update sucks... its impossible for farming... if u wanna make some loot, u gonna have to go gowipe or something. it takes a minimum of 1 hour(without boost) to make troops. and that sucks... plz fix this asap before i with many others move on..!', 'FALSE'),
('com.supercell.clashofclans', ' sumpreme game but wizards take 8 min and hogs must be strongened i mean there are giants bombs and skeletons so why dont u incraese hogs abilities and pl make it we can use elixer and gold from walls lvl 8', 'FALSE'),
('com.supercell.clashofclans', ' nyc 1 u guys should apply some same strategy as u applied in boom beach. when we use the troops, the remaining undead troops should return to their base. but instead of that, they r dead..fix this for remaining 2 star frm me..', 'FALSE'),
('com.supercell.clashofclans', ' it was epic....then a certain update happened the most recent update got rid of what a ton of people loved. i think supercell has some work to do if they think i am gonna be buying any more gems.', 'FALSE'),
('com.supercell.clashofclans', ' it was a great game . until the last update . and cost of upgrade for th10 has always been beyond the reach of the average players . and let\'s not start about the time to wait for the upgrades to finish . seems like supercell only cares about/wants high level trophy pushers . and they don\'t want people who don\'t/can\'t buy gems to even to touch this game or maybe even like it', 'FALSE'),
('com.supercell.clashofclans', ' there\'s a draught in th11 supercell needs to fix the draught caused by this update. this game is no longer fun. there\'s no loot to upgrade or donate. let th11s hit lower level bases, dead bases are dead, we\'re not wiping them, just going for collectors. this is the only way', 'FALSE'),
('com.supercell.clashofclans', ' i don\'t like the new shield system. your base is 100 percent destroyed but the attacker didn\'t deploy one third of his troops. so you would not get any shield. it does not make any sense to me. i personally don\'t think shield should be depend on no of troops used.', 'FALSE'),
('com.supercell.clashofclans', ' the app won\'t load since this update the app doesn\'t even load..it just stuck on downloading content and then restart..try to uninstall and re-install it but it\'s going the same error all the way..please fix this..!!', 'FALSE'),
('com.supercell.clashofclans', ' this update sucks!!! i can\'t open the game anymore, just crashed. damn it! i have an on going war but the app won\'t run... if there is a half star option to rate this, i would give you that. fix this asap....', 'FALSE'),
('com.supercell.clashofclans', ' know how to get the account back. you have to delete clash of clans,then you download it again, then you look on the upper left corner of the screen, then you see already have a village?\'\' then you press it,then you will have your village.', 'TRUE'),
('com.supercell.clashofclans', ' somethings missing is there a possibility to have your troops have the \'winter\' theme? like having the wizards red cloaks or max lvl balloons with red colored balloon and pekka that is literally a sword-wielding snowman? its worth it to add those features rather than just making it snow while covering some buildings with snow.', 'FALSE'),
('com.supercell.clashofclans', ' 1 star new update i am a busy man and don\'t always have hours to play games. coc let me pick when i had time to play. after the update that is no longer true. now i have to get on every few hours and raid for hours and hours just to level 1 building. they made the game for the 1% hardcore players. not the average player.', 'FALSE'),
('com.supercell.clashofclans', ' update suck its impossible to loot 4m in one day. do u think supercell this is a balance improvement? its not! and the developers dont even care to the comment wtf!', 'FALSE'),
('com.supercell.clashofclans', ' not a fan of new update new update makes it difficult to progress unless you attack several times during your shield period. i can\'t get ahead. i play twice a day if i can. can\'t commit to getting on 4-6 times a day.', 'FALSE'),
('com.supercell.clashofclans', ' i can\'t see my h.u.d. on my screen anymore ever since the new update my screen doesn\'t show up the images it used to now all i see are words floating in thin air with no back ground to it.......not sure how to get help with this or to unis tall and re-install.....', 'FALSE'),
('com.supercell.clashofclans', ' sucks the new update especially the multiplayer game bonuses sucks... please return to before system... only this time im getting more loots but supercell stop it saying im playing too long without shield then u got my village under attack and loose many of my loots... ur crazy... đ', 'FALSE'),
('com.supercell.clashofclans', ' new update killed the game new matching for atks basically killed the farming part of the game so you no longer can aquire resources for upgrades. get your money ready because buying your resources will be the only way.', 'FALSE'),
('com.supercell.clashofclans', ' update sucks i have some friends who didn\'t play coc anymore. and their villages seems to forced out from search system. so there is no more loot in clash after the latest update. i can\'t upgrade my village and labratory. i think if supercell don\'t take care of this issue, they will lose a lot of players soon!', 'FALSE'),
('com.supercell.clashofclans', ' no longer a casual game the current version of the game makes it too hard to play casually anymore. expect to spend 4-6 hours a day, just to stay afloat.', 'TRUE'),
('com.supercell.clashofclans', ' shit guys dont download it. the new update sucks. there is noo looot base after update. especially new ones who download it will affect seriously. the true color of supercell is revealed. they want to buy gems, because we don\'t get loot', 'FALSE'),
('com.supercell.clashofclans', ' personal break don\'t mind the break necessarily, but i don\'t think its necessary. especially during gem boost time. would like to not be told when i can\'t play lol.', 'FALSE'),
('com.supercell.clashofclans', ' this game đ.i donno y ppl give it 1 star try it out. n i think if two updates come wit heros it must be a titan n a character from naruto madara uchihađ', 'FALSE'),
('com.supercell.clashofclans', ' new update sux! no more dead bases, no more farming, you\'re almost often match with the same th level or higher, new shield system sucks too.', 'FALSE'),
('com.supercell.clashofclans', ' hasn\'t loaded in almost 16 days. have played everyday for 2 years and now it wont let me play at all. im sure all my saved up loot and hundreds of trophies have been lost during this time.', 'FALSE'),
('com.supercell.clashofclans', ' bye to coc my th9 and no loot option after th9. i found the only 1lac loot or less. when someone attack on my clqn. they got more then 2lac. not possible to upgrade any thing.', 'FALSE'),
('com.android.chrome', ' not responding occasionally sometimes chrome just won\'t respond. it doesn\'t seem to be fixated on a certain website or so, it happens at random. it is far much better than before. and yes it\'s not my phone\'s fault as i can just press the home button and operate my phone, no problem there.', 'FALSE'),
('com.android.chrome', ' favorite menu update is suboptimal the new update puts the entire list of favorites into view from most recent instead of returning me to my previous folder which it always has. this requires more time and clicking to get to the desired folder. please give an option to return it to the previous version.', 'FALSE'),
('com.android.chrome', ' kill pages i will enter a url or open a new link and nothing loads. no loading bar, no error page - the page stays the same. also if i switch to a new tab, sometimes that won\'t load/refresh, or if i switch back to an old tab the same thing happens.', 'FALSE'),
('com.android.chrome', ' z2 put direct exit button. when use back button its very difficult to exit from some sites like bank or other password protected sites. i m going to disable crome from my fhone. i cant directly exit from crome. i have to use back back till all tabs not closed', 'FALSE'),
('com.android.chrome', ' well... i just switched to a new htc phone and now chrome forces closed whenever i\'m reading mostly text websites. it just happend twice in the span of ten minutes and it\'s getting annoying. i don\'t even have other apps running in the background or too many tabs open so i don\'t know what\'s going on with it', 'FALSE');
INSERT INTO `comments` (`app_id`, `comment`, `sentiment`) VALUES
('com.android.chrome', ' this country not allowed? i would have given it 5 stars because my searches and browsing are spot on but it took me to back up account and when i put my backup e-mail in it said this country not allowed: im in america! wtf????', 'FALSE'),
('com.android.chrome', ' what is this? google is an oldest browser to search something so when we want to do something on puffin browser then what is the benifit to use it . plz make those things possible wich are possible on puffin especially for android phone. i shall be thankful.', 'FALSE'),
('com.android.chrome', ' don\'t use if you have a lot of organized bookmarks they recently changed bookmarks to go to the top of of your bookmarks every time you open a new tab. it used to remember what bookmark folder you were in until a recent update. i also don\'t like that the folders are now at the top of each bookmark list i\'ll be using firefox now.', 'FALSE'),
('com.android.chrome', ' google chrome app it allows me to browse the internet on a phone of all things. seriously guys we\'re living in the future. 5 stars because it always works.', 'TRUE'),
('com.android.chrome', ' image search on verizon ellipsis 10 tablet doesn\'t function properly when an image search is conducted images appear in gray scale or b/w with a checkered background.', 'FALSE'),
('com.android.chrome', ' not usable no matter what i try, i cannot save images from web pages. it downloads the .html files instead of .jpeg', 'FALSE'),
('com.android.chrome', ' cannot cast to chromecast of all the apps that chromecast supports, chrome browser is not supported? why? how am i supposed to cast my browser? use firefox? or worse wait for ie? fix it already chrome. come on!', 'FALSE'),
('com.android.chrome', ' unbelievably bad support by google for their own products. had to hard reset my android 4.04 tablet and could not reinstall chrome because google no longer supports chrome browser on android 4.0x. so i had to install a non google browser. i would give a rating of 0 if i could.', 'FALSE'),
('com.android.chrome', ' bookmarks the option to open a bookmark in a new tab is taken away, i use that feature and would like it back. also, now the keyboard opens automatically, which i often don\'t want and have to close it.', 'FALSE'),
('com.android.chrome', ' too many updates of too big size please only send updates that are really really necessary. last one 40.22mb ! if every app ( which it seems it is ) keeps doing updates we all end up with no room on our devices. having 15mb of languages i am never going to use is a waist of memory !', 'FALSE'),
('com.android.chrome', ' buggy after update after the update chrome will freeze chrome isn\'t responding which gives me an option to wait for it or kill the app. this happens every time i reopen the app and some times from recent', 'FALSE'),
('com.android.chrome', ' totally loved it but....... how to open new tab in lollipop. in kitkat to open new tab we have to swipe down form up but after i updated my software i can\'t find it. plz reply fast', 'TRUE'),
('com.android.chrome', ' bookmarking is no good i used to be able to pick where i bookmarked something when i made it. now it saves default to mobile bookmarks folder and i then have to go find the bookmark and edit it to move it where i want it. also when opening bookmarks list it does not open where i was last. it opens up a random list of bookmarks. it was perfectly fine how it was previously, now its just rediculus.', 'FALSE'),
('com.android.chrome', ' download issues using asus zenfon 5 and several times doesn\'t let me download anything. shows the text downloading. but doesn\'t. please fix the issue. otherwise pretty smooth.', 'FALSE'),
('com.android.chrome', ' absurdly large file for an android browser and after lollipop upgrade i no longer have the space available for updates. would gladly uninstall if i could. over 40 megs for an android browser??', 'FALSE'),
('com.android.chrome', ' hate it the new update shifted my tab in lower key....its just sooo irritating..tab looks good on chrome window only...i want tht bk', 'FALSE'),
('com.android.chrome', ' chrome browser (update: 3) ... barrister akash. it\'s a fine application i am not only like this application but also i am love thi application. essay browsing & perfectly working . so i have given this application 5 star (*****) akash.', 'TRUE'),
('com.android.chrome', ' bookmark folders what happened to the bookmark folders? everything was organized like it was on my computer and now they are just on a list. kind of hard to find things when they are like that', 'FALSE'),
('com.android.chrome', ' the best i agree totally with the last poster. chrome is simply the best for android period. i\'ve tried all the other crap out there and yeah they have some more features none of which i ever used. i have chrome on my laptop and pc and all of this is synced together. simple, direct and to the point and that\'s what i like and don\'t forget very fast.', 'TRUE'),
('com.android.chrome', ' good... chrome is improving...! but there are some problems 1)we can\'t change the default download location. 2)app size is high. 3)can\'t save web pages for offline viewing. 4)can\'t stop loading web pages easily.', 'TRUE'),
('com.android.chrome', ' samsung galaxy s5 sm-g900f always come back to chrome it just works on so many sites i use, better than the other browsers. but it does need this improved data savings update quick! and the malware blocking which may already be included now, i\'m not sure?. more importantly it needs a ad blocker, but obviously this is going to effect google\'s business model. a chromium download please?', 'FALSE'),
('com.android.chrome', ' it keep on doing pop up and it taje me some link and i have a virus protection on my phone if it does it again i\'m going to take it off', 'SPAM'),
('com.android.chrome', ' decent, but getting worse with each update. was my undisputed go-to app for browsing for the past couple of years until about now. getting buggier with each update. crashes frequently, especially when a lot of tabs are open simultaneously. unresponsive for a few heavy websites. still hoping the devs at google fix this because i\'m still a huge chrome fan and gonna continue using it.', 'FALSE'),
('com.android.chrome', ' garbage. no user choice allow users to lock the toolbar. it makes no sense to hide the url just for a tiny bit of extra vertical space on big screens. also needs option to show tabs on top rather than in a separate screen for the same reason. still no pdf support!? finally, stop unloading tabs when there are gigabytes of free ram. overflow menu is a cluttered mess.', 'FALSE'),
('com.android.chrome', ' chrome since last update you can\'t scroll down or up & the entire page blinks & blinks. hurts my eyes. ug. it is slower & freezes & too big. to download mp3 of many sites i have to use another browser. they will not download. --mrsgwennd', 'FALSE'),
('com.android.chrome', ' multitab button on top-right side is missing! ! so u cant switch between multiple tabs easily bcoz the small box on the top-right corner (that tells u how many tabs r open) isn\'t there any more. also, when u play video in a website, the audio and video wont be moving at the same speed, meaning the video frams will move ridiculously slow while audio plays at regular speed. i guess thats the problem with the flash player. overall poor web experience with this browser.', 'FALSE'),
('com.android.chrome', ' ads for some whatever reason sometimes, which is more then you think, would open and show me some security ad. i\'m not even clicking on chrome and this still happens. plz fix this annoying thing', 'FALSE'),
('com.android.chrome', ' beta is the best version of the chrome browsers can\'t open bookmarks in a new tab or incognito window. can\'t switch tabs from bookmarks tab. horrible features. the following are issues across all barstools of the chrome browsers: no desktop preferred option. webpages refresh themselves by default and you lose what you are typing of you switch to another app. tabs mixed into os is annoying. no user agent switcher', 'FALSE'),
('com.android.chrome', ' average not so good for watching online videos for watching videos i would prefer stock aosp google browser or uc browser + mx player.', 'FALSE'),
('com.android.chrome', ' 2 big issues 1 . there is no download manager in chrome , when i select save target as , i don\'t have any control over the download , i can\'t pause or cancel it after that and most of the times i am unable to download the file . 2 . i can\'t use two chrome tabs in multi window on note 3 , i can do that in note 5 but it just doesn\'t work in note 3 . plz fix', 'FALSE'),
('com.android.chrome', ' dear google hate how tabs work on samsung galaxy s6. i want to keep my tabs open, because i watch 10 series at once. i don\'t want to have to reopen all the tabs every time i open up chrome. i have a habit of closing all running apps to save ram usage. please make the tab feature the same as on the old s4!!', 'FALSE'),
('com.android.chrome', ' video player issue guys..this is unbelievable. ..every time when i updated, my video player it doesn\'t work. now if i do full screen video start stops every 10 sec. is just imposible watch. i really don\'t know what kind of update is this. happens exactly the contrary that you affirm.', 'FALSE'),
('com.android.chrome', ' download stops the iteam iam downloading stop half way or about 13 percent or it just does begin at all. please fix this and ill rate it 5 stars', 'FALSE'),
('com.android.chrome', ' bad bad google why was i sent to password recovery options when updating a browser app? -5 stars. is it time to go to an apple or windows phone platform america!', 'FALSE'),
('com.android.chrome', ' translation use it for browsing and visiting viet and chinese and other country sites for translations, but using uc browser for downloading.. no other app can replace uc for fast downloading speed..', 'FALSE'),
('com.tencent.mm', ' account in private it just keep on saying that my account is in private , and needs to verify . but when i do , it keeps on asking my cp number . when i already filled the gven information it keeps mentioning about security , i just dont know how to deal with it , can you tell me how ?', 'FALSE'),
('com.tencent.mm', ' loading login i re-download because my wechat is full , when bufring loading , always stuck at 2% and 3% then force close? pls fix it . i will give 5star if u fix it.', 'FALSE'),
('com.tencent.mm', ' the translation are very hilarious the translations from chinese to english don\'t make any sense at all... is there any chance we can edit ourselves after noticing it doesn\'t translate properly?', 'FALSE'),
('com.tencent.mm', ' apps error recently.... my phone when wanted to post picture... the sorting is not from the newest... but showing the oldest and need scroll down until the end', 'FALSE'),
('com.tencent.mm', ' miui7 y is the photo n sights won\'t show up in moment although i refresh so many time ad, fix the probs pls', 'FALSE'),
('com.tencent.mm', ' server error 1-1 cannot login..server error 1-1..all my other application can open..but wechat can\'t..try uninstall and install again still can\'t..pls respond..', 'FALSE'),
('com.tencent.mm', ' erroneous app !! the wechat app is not loading my location data and therefore i\'m not able to find people nearby. the previous version used to work fine in my droid but the new version is irritating me a lot. now, this app is of no use if i can\'t explore new friends in my locality. :(', 'FALSE'),
('com.tencent.mm', ' if chat at wechat no simbol or bluetick seen so we dont know if we\'ve been reading text or not so i hope this apps can do diffrent thing right now', 'FALSE'),
('com.tencent.mm', ' force close!! im using asus fonepad k004 model..after last update june,my app always keep force close..try reopen then failed again..until this new update,still occur..any solution?already try old version but still the same..hope will be improvised..thanks you', 'FALSE'),
('com.tencent.mm', ' not letting me log in! i try to log into my account with my user id and it says it needs to be verified by sending a code to my phone but it never does. i even press resend mutiple times. can you please help me?', 'FALSE'),
('com.tencent.mm', ' connection issues with the version it says can\'t connect to server. , with error report 1 -1. everytime either connected with cellular data connection or over wifi', 'FALSE'),
('com.tencent.mm', ' lucky money i have some money sent to me and i want to give to my chinese friends as token of luck but don\'t see lucky money or wallet anywhere???? i have english wechat.', 'FALSE'),
('com.tencent.mm', ' wechat wallet still disappears people have been using wechat wallet in the english ios app for ages now with no problems, and yet when i put my android wechat app into english, wallet disappears! please fix the english android app so that wallet doesn\'t disappear when i change language from chinese to english. wechat wallet is incredibly useful, but only when you can actually use it!', 'FALSE'),
('com.tencent.mm', ' i cant find near by people around me. unable to load location data fix asap!', 'FALSE'),
('com.tencent.mm', ' i can\'t restore history messages with latest version 6.3.8. i cannot find the backup and restore button. it is not in the general and also not under chat. the new chat history is only meant for migration to another phone. i can\'t restore wechat history from the same phone. why is that feature being remove? it was there last time. please put back that feature.', 'FALSE'),
('com.tencent.mm', ' it\'s getting hang once i will be chatting with someone seriously and it gets hang suddenly and i won\'t be able to type nor open my wechat and after few mints it saying wechat is not responding properly and have to stop it pls take a look at it .', 'FALSE'),
('com.tencent.mm', ' i met my life here my girlfriend heads off the app. thank you wechat & the entire team .', 'FALSE'),
('com.tencent.mm', ' i can\'t see and upload my photo at the moment... why? before this..wechat no problem but now.. why?', 'FALSE'),
('com.tencent.mm', ' awesome, but less awesome than before this is a really great communications app, better than any other i\'ve found. but sadly with the last update they took a cool feature away. please bring back the walkie talkie. i know it was silly but you\'ve no idea how much we used it. it\'s one of those features that just makes it fun to talk again.', 'FALSE'),
('com.tencent.mm', ' custom emoji doesn\'t work my custom emoji doesn\'t show up in preview, and some of them become blank! i cannot send the emoji now, please try to fix the error.', 'FALSE'),
('com.tencent.mm', ' ugly design. no autoimport from old install. iphone ui design in the android app?! come on.. one day it suddenly wouldn\'t start - just showed globe and quit. nothing similar has happened with alternative apps. on top of that when i reinstalled it ignored the user folder so even though pics, and supposedly chat, is in there wechat did not read the folder so it\'s all empty in chats inside wechat after a reinstall. awful.', 'FALSE'),
('com.tencent.mm', ' worst update,!! slow ,,,!! my phone frequent hang once opened this app, typed message half way then can\'t move at all ,whole screen stucked, been forced close the app manyyyy timess...!!! whole app functions become slowww.. loading damn slow >,< what happpenedd??? thought new update shld have improvement but y getting worse...??? it wasted me lots of time !! plss help solve it, tq so much !', 'FALSE'),
('com.tencent.mm', ' sucks if i could give zero stars i would...75% of the time when i shake my phone i have to stare at some dudes dick...pls fix this problem most all social media sites ban pics like this..so should this one...i just want to meet new people..not stare at some dude\'s dick every time i shake my phone', 'SPAM'),
('com.tencent.mm', ' wechat 6.3 with wechat out is no longer free hate it for wechat out now as it\'s no longer free which playback sound of video is muted after finishing call with wechat out. why charge when it\'s not up to mark yet?', 'FALSE'),
('com.tencent.mm', ' wth why i can\'t login into wechat once i uninstall thn tried to re-download it\'s shown as can\'t install app \' wechat \' can\'t be installed , try again server error 505 all my other apps can open why not wechat ! fixed this problem as well plsss ><', 'FALSE'),
('com.tencent.mm', ' problem i am on a samsung galaxy s6 and now it seems like i can\'t log in. telling me that my pswrd does not work and when i try to reset it says that the number is banned? really frustrating as i have been on for one day and i thought the app was amazing until now. please tell me how to fix this problem. this app is problematic and no one helps', 'FALSE'),
('com.tencent.mm', ' err... how do i back up and restore chat history? i used to be able to do that in older versions. why would you remove such a crucial feature? even after trying to backup using windows wechat, you have no idea where the backup is. it says backup on phone, but where on phone?? if it\'s on the phone\'s internal storage then that\'s useless to me, cause i need to wipe it clean to reinstall the system. if it\'s on the sdcard, then where?? comparing to the backup/restore feature of whatsapp, wechat\'s is an absolute joke!!', 'FALSE'),
('com.tencent.mm', ' forgot my old wechat password! i want to reopen old wechat me .. but, i forgot my password for wechat old .. my old wechat info also incomplete .. there is no link with facebook .. i have no qq id .. telephone numbers also do not update .. but i remember my id .. how can i go back ?? please help me.. đ', 'FALSE'),
('com.tencent.mm', ' after ur latest update i and my friend made a video call after ur latest update video of my friend z vry clr bt voice cnt b heard of my friend so plz plz resolve dis problem plz plz its a kind request', 'FALSE'),
('com.tencent.mm', ' this new update crashed with my samsung note4 my phone suddenly all black out & shut down, after receiving a wechat message notification after update. my chat backgrounds were all gone blank & i can\'t find my stickers as well!! i have to uninstall the app, but don\'t know if my chat history will be here or not..', 'FALSE'),
('com.tencent.mm', ' bad new update, sight by swipe in chats gone please put back the option where users could quickly record a sight just swiping down on the chats screen. it\'s horrible to try to record a sight now, having to go through so many screens. by the time it\'s open now, the moment is gone! i\'ve missed many moments i would have recorded before. why change something that works well and not broken?', 'FALSE'),
('com.tencent.mm', ' can\'t download pics i used to be able to download pics from a conversation and save them to my phone. i don\'t have that option anymore. long press gives me about every other option but not the option to download', 'FALSE'),
('com.tencent.mm', ' video capture for moment where did video moment go. i want to capture video but i cant find it where to capture video. when i slide downwards nothing came out. is it bcuz the new updates,there is no video for new updates? fix this problem pleasee.', 'FALSE'),
('com.tencent.mm', ' want to know why did the other people i can see only 10 post and i can\'t like or comment their post ? is that mean their unfriend me or something wrong with that ?', 'FALSE'),
('com.tencent.mm', ' unstable call connection it\'s showing an unstable call connection message on screen whenever i try to call my dear ones. then it\'s getting worse and leading into self disconnection of calls. i hope u guys notice it and make sure the problem should be solved', 'FALSE'),
('com.tencent.mm', ' some problems on showing pics after download android 5.1.1 can wechat team have the troubleshooting procedure. i viewed the previous standard tips from wechat tencent, it didn\'t work at all.', 'FALSE'),
('com.tencent.mm', ' awesome voice quality the best in class audio. plz include group voice calls, only video calls have it. option to add another person between the call should be provided.', 'FALSE'),
('com.tencent.mm', ' shake function not working. my we chat was update few weeks ago since that time i\'m unable to use shake function, when i use it its just status looking for people shaking their phone but no members pop\'s up .please fix this .', 'FALSE'),
('com.tencent.mm', ' can not receive messages!!! why my message always send to me tomorrow , no today, please fix it.it cause me many problem.', 'FALSE'),
('com.tencent.mm', ' can\'t hook up credit card to wallet unable to connect american express credit card to wallet. get the message system is busy. please try again later. also, why can\'t we post just at text post to our moments?', 'FALSE'),
('com.viber.voip', ' please fix error new version p8 lite user i cannot open my viber... when i open it. automatically close i cannot log in see the contacts and my messages pls fix.', 'FALSE'),
('com.viber.voip', ' good job but.... please reduce its size. running services should consume less memory in background. in new version there is no option to show only viber accounts in contacts menu, it shows all contacts only. blocked contacts should be invisible after blocking.show only allowed contacts. thanks.', 'FALSE'),
('com.viber.voip', ' contact image disappears idk y i can\'t c the newly added contacts pliz fix dis i\'ll give u 5 stars straight away', 'FALSE'),
('com.viber.voip', ' the ads ruin my fav app i mean the ads for viber desktop. i dial my friend, start talking and what happens next is: my microphone turns off, speakers turn on and the browser starts launching. so my friend is saying something for everyone to hear because she cant hear me and i am pushing buttons like crazy trying to stop browser from launching. it does take a while on my phone. what happens every time is that viber desktop ad launches about 3s after i make a call. thats the right way to stop me using the smartphone app.', 'FALSE'),
('com.viber.voip', ' no ringing tone whenever i call someone it shows that its ringing but has no calling sound. keeps going offline automatically . fix new update pls!', 'FALSE'),
('com.viber.voip', ' why theres a delay on the messages. u will know u have messages when u open the app. it doesnt notify u even if ur connected to internet. wtf', 'FALSE'),
('com.viber.voip', ' mark i found viber to be extremely efficient way to communicate with my loved one. i have skype as well but it\'s not as good as viber.', 'FALSE'),
('com.viber.voip', ' new message notification fault it doesn\'t notify you of new messages real time. you can only identify new messages if you open the app. therefore, you can not respond to messages real time.', 'FALSE'),
('com.viber.voip', ' on sgh-i727 android 4.1.2 the new platform showing all contacts reduced your rating not just like the online status that doesn\'t give us option to identify our contacts that are online without having to tap on contacts one by one to see there individual online status and without necessarily having your disable/enable our personal settings. useless option that doesn\'t work ...frustrated users ratings going lower and lower..loosing your edge specialy with no response from you, other than the automated generic in privaye email', 'FALSE'),
('com.viber.voip', ' improve... please add a feature where we can see online contacts only.we are tired of searching contact and knowing that whether it is online or not...thanks .', 'FALSE'),
('com.viber.voip', ' viber rating - lacking code on the android phone, the in call widget is over the top command for all settings alterations on the screen. it is not able to be moved and i can\'t find the setting to turn it off. might wanna fix it. also it seems not to want to ring on the android phone when you make a call.', 'FALSE'),
('com.viber.voip', ' big problem new update showing all contact and there is no setting for this prob do sum thing fastly', 'FALSE'),
('com.viber.voip', ' can\'t open after update the app crashes and doesn\'t open neither for a second! uninstalled and installed many times - no change! please let me know how to fix it! people write me there and i don\'t receive nothing.', 'FALSE'),
('com.viber.voip', ' i wish there is a mute button for selected people. i like it so far but it is more like a skype now. but i hope next update the will be option like mute button where i can mute someone so that i won\'t recieve any notification from that particular person without deleting the message or blocking them coz that would be so rude if i do that. or option where i can hide the seen or a mark as unread. other than that it is good i liked it, that\'s all my concern.', 'FALSE'),
('com.viber.voip', ' just did the latest update on viber and yet again after an update it has problems....i can send messages but when i try to make a call it\'s saying ringing but there\'s no sound and i don\'t think it\'s actually ringing at all and nobody answers my calls ...almost every time viber do updates some part of it after doesn\'t work ...please fix it asap...i\'m in england ..thank you', 'FALSE'),
('com.viber.voip', ' cant use not being able to call any contact please try to fix. then ill give all stars', 'FALSE'),
('com.viber.voip', ' good app for call and texting. overall everything is ok. most important thing is that the battery not drained fast when you online. please add android auto support and i will rate it 5 stars.', 'FALSE'),
('com.viber.voip', ' low quality i don\'t know why but sound is very bad, especially when i talk. i use meizu m2 mini and is not slow phone at all. is there some update or setup whitch can fix it? i will rate 5 stars if there\'s a fix.', 'FALSE'),
('com.viber.voip', ' please fix this new version. new version seems not good. i cannot open my viber account. when i tried to open it, it\'ll automatically stopped. please fix this one. thank you.', 'FALSE'),
('com.viber.voip', ' what has happened! it doesn\'t give me my messages on time and people can not hear me on outcalls at all! please fix other wise i would give it 5 stars!', 'FALSE'),
('com.viber.voip', ' not so good remove all contacts please... a lot of ppl hate that soooo much... it\'s boring and ugly... till i find wanted contact need to search for it 2 minutes...', 'FALSE'),
('com.viber.voip', ' where is the option to separate viber contacts? can not see all viber contacts separately, it shows all together after last update, not so good, call drops , while having video call can\'t hear other person properly ....', 'FALSE'),
('com.viber.voip', ' issue in last online time it doesn\'t refresh the last online time automatically... i have to restart my phone then it shows the latest online time... please fix it guys... otherwise a gud app', 'FALSE'),
('com.viber.voip', ' very poor service now a days for the last one month viber service is detoriated day by day...now the application respond too slow even in 3g network. in wifi the message is always displayed that no network available, please check your internet connection. what happend to developer team? are they sleeping? from google market viber has disappeared suddenly.', 'FALSE'),
('com.viber.voip', ' voice messages problem most times recorded message don\'t be delivered completely... it is always missing a big part of it. i noticed that this happens when ever the cellular network is unstable... how ever it is a big disadvantage of the app.. hope you fix it so so i can give the app 5', 'FALSE'),
('com.viber.voip', ' i love viber viber is an excellent chatting software. only one tiny negative comment for you. sometimes it takes a delay to reach message even online. stickers are so cool...', 'TRUE'),
('com.viber.voip', ' contacts and delays is it just me? with the new update, all contacts are showing up including those who are not using viber. the old version allows you to hide your contacts who are not using viber. i also that notifications on messages are delayed. pls fix this.', 'FALSE'),
('com.viber.voip', ' wtf keeps going offline automatically ,my messages never comes through until i open da app', 'FALSE'),
('com.viber.voip', ' fail on every update it was best app before you received messages but when you reply it wont send. video calling auto exit now even with good signal. it was very good before.', 'FALSE'),
('com.viber.voip', ' excellent as long as you have good service, it works great. use it to talk to my family in chile and asia. it cuts out if you don\'t have wifi or excellent service.', 'TRUE'),
('com.viber.voip', ' call disconects in every 5 seconds thats two beep sound is now one of my most hated sound from viber. can\'t u guys fix it before i uninstall the app and use other app', 'FALSE'),
('com.viber.voip', ' install and reinstall the app but cant go back to the previous version.. pls new version is so annoying. no more options for the contacts to set up if just want viber contacts only to appear. all contacts were shown even not using viber. pls fix', 'FALSE'),
('com.viber.voip', ' viber about the voice messages and chatting, viber is the best app in the market. about the calling services - even messenger performs better. the app isn\'t optimised for wi-fi usage. about the newest version (until 23.12.2015) there is a new option introduced, which allows you to see which of your friends have seen your message in a group chat. well, it is not working and this makes me a little bit mad - finally the function was introduced in viber and still not working properly.', 'TRUE'),
('com.viber.voip', ' viber s.a.r.l. this app helps me to stay in contact while also having video options and picture options. really nice app and pretty stable running. just a few video and audio issues as well as video and call drops which can be annoying. sometimes the app is unstable but is mostly attributed to network issues rather than the app itself. i recommend this app.', 'TRUE'),
('com.viber.voip', ' so far nice and useful but... please, introduce option for choosing who and in which group someone can add you, hate when people put you in group with bunch of strangers sharing some irelative stuff without my approval or knowledge, otherwise, app rocking!', 'TRUE'),
('com.viber.voip', ' great app love it. does what it says. of course it\'s going to be slow if the connection isn\'t fast enough. it works well for me and my family who are overseas.', 'TRUE'),
('com.viber.voip', ' excellent reception amazing app that lets you keep in touch with family and friends without the worry of expensive mobile bills.', 'TRUE'),
('com.viber.voip', ' its ok useful app.xcept now, viber hasn\'t been working great.sometimes its says disconnected or something although i have a stable internet connection.i hope this gets fixed.', 'FALSE'),
('com.viber.voip', ' app stops mid call having an issue with viber at the moment on my android. usually great app but stops working a random times.....very annoying ..... have uninstalled and reinstalled 3 times now...... may need to find another app.', 'FALSE'),
('com.viber.voip', ' viber i think so she\'s going to you guys you know figure out free for the rings sometimes i forget to ring in all forget to the shop. the message of this one now i\'ll let you know no i hope you figure out later so that\'s my paper right', 'FALSE'),
('com.google.android.talk', ' won\'t make calls i have 5 bars on verizon 4g but it keeps saying can not connect call. so far had only connected 1 call when i had 1 bar and the other person couldn\'t hear me. i have tried at over 20 different locations in the city i live in all around 4 or 5 bars. no calls can be made. fix this.', 'TRUE'),
('com.google.android.talk', ' đ u can not send vids on some android devices u can on some apple devices but they have to be under 16 seconds and u have to make them u can\'t use short vids from your album/camera roll but video calling is good u also can\'t have a icon for a group chat đ everything else is good except sometimes it takes 10 minutes to send one text!!', 'FALSE'),
('com.google.android.talk', ' slowly becoming less and less functional functionality within app seems to be diminishing - hangouts does not automatically compress files being sent via mms which results in many of them bouncing back. muted conversations still ring if a new message is received in a non-muted thread. if this is google\'s way of forcing people to messenger its going to force me off both and i\'ll use third party apps', 'FALSE'),
('com.google.android.talk', ' google messenger and hangouts should become one google messenger and hangouts should become one app that works like imessages except android. if it detects they are using hangouts/google messenger it will send a message in the form of hangouts (which will show up in the conjoined app) but if it doesn\'t detect them using hangouts/google messenger then it will simply send a sms message instead', 'FALSE'),
('com.google.android.talk', ' it\'s great when it works but right now it won\'t download any mms. it just says they\'re there and won\'t download them, and then loses the message when i switch to a different app to try to download it instead.', 'TRUE'),
('com.google.android.talk', ' not too good. please fix the voice and video calling. and then, you know, it\'d be nice of there\'s a kind of sound when a message gets sent, like most texting apps. in this app, though, it just shows now and there\'s no sound or anything. not a nuisance, but, it\'s better with a sound.', 'FALSE'),
('com.google.android.talk', ' ok for the simple stuff, feature lacking and poor layout for your basic messaging it\'s fine, but it still lacks sending voice messages and video clips. can be a bit slow to load conversations. overall the recent changes in ui make it feel cloogy. simple actions like opening the app or going back to the message listview shows a signing in spinner -- which is obviously not ideal for every other action, especially since it uses google auth services đ', 'FALSE'),
('com.google.android.talk', ' really? i honestly ussd to love this app.... now i realize it\'s honestly terrible. i still use it every so often but for sms, i suppose theres bulk in the programming but i can have 4g lte and be told i have no signal to send a text. you\'re better than this google!', 'FALSE'),
('com.google.android.talk', ' what\'s new: broken. differently. again.. too bad google is such a small company it doesn\'t have the resources to create a good product. the latest update has now made the camera go almost black and the speaker has stopped functioning. i have to hold the phone up to my ear to hear the other person.', 'FALSE'),
('com.google.android.talk', ' fraud! i did not select this app to install. it installed automatically. it will not allow me to uninstall. google fix this. i\'ll go to the attorney general. this is not right.', 'FALSE'),
('com.google.android.talk', ' would like to see who are currently online? performance of the latest app has deterioted. where is the list of online friends? one of the most important aspects of gtalk which never let me shift to other chats is the fact that i can know who all are online and i can chat with (by chat i mean i can get replies and have a conversation). please incorporate this feature at the earliest so that i can install this back.', 'FALSE'),
('com.google.android.talk', ' like the new update the latest update fixed all of issues that i previously mentioned. no real problem, even while using project fi.', 'TRUE'),
('com.google.android.talk', ' why we have to use this? google we think its a time to make some changes in your team. who is planning and making this horrible aps? is apple or microsoft paying you for that?! what\'s about dark theme for the beginning for this useless app?! and make ability for sending files pls. make everything in one place. we don\'t need dozen usless aps!', 'FALSE'),
('com.google.android.talk', ' it was okay, but now complete crap why do one now have to change between profiles to see sms or hangouts. before this app but much better where you could always easy select if you wanted to send an sms or hangout.. now this app is completely useless!', 'FALSE'),
('com.google.android.talk', ' meh... hope it supports dual sim when used as default sms manager. and hangouts running very slow when opening a conversation', 'FALSE'),
('com.google.android.talk', ' often painfully slow. needs a useful tablet ui, quick reply, and the ability to send video. some of these are features the ios version has had for almost 2 years and that isn\'t really excusable from the company that runs android. this is the kind of thing that makes people switch to ios or makes android phone lovers buy ipads instead of android tablets.', 'FALSE'),
('com.google.android.talk', ' still no notifications ugghh!!! please fix cant talk to people if you don\'t k ow you have a message and have to click hangout for it to load or send a message to see what you received! đąđ used to be a great app for my galaxy note 2 now its just blah its sad i used hangouts for phone and my chrome book...now it don\'t work for my phone and only works for the chrome once in a while ....... please please ease fix notification and become a 5 star app again', 'FALSE'),
('com.google.android.talk', ' question? the other person need to have this app to receive messages and calls ? if you answer me i give you 5 star\'s if don\'t i share this and say this this is not a good app', 'SPAM'),
('com.google.android.talk', ' man i hate google and android went into my messaging and the default had changed to hangouts instead of sms. stop forcing settings to change when you push through updates! man i\'m moving to apple as soon as i am able! i hate this phone and your system!!!', 'FALSE'),
('com.google.android.talk', ' ui & customization dark theme and color options. reply directly from the notification panel. options to change contact photos to initials and hide the timestamps. please bring back the gesture that takes you back to the conversation list by swiping from the left edge. write a message area is too cluttered, make it simplistic with a + sign. replace visible phone number with the name of the contact in send sms to...', 'FALSE'),
('com.google.android.talk', ' please add this option i love using hangouts for both im and sms but when sending a photo from the share menu the app defaults to my sms plan thus costing me money. if i try to go back the hangouts app quits. leaving me with no way to choose of i want to send a picture via mms/sms or hangouts (im). its costing me a small fortune. the option to choose how which messaging service you want to use when sharing a photo would be great.', 'FALSE'),
('com.google.android.talk', ' some issues i love this app but i have been having some issues lately. it has started telling me that hangouts is no longer supported by google play. you can not send a video, and when on a video chat it seems to lag really bad. wish we had something like imessage in our regular text and facetime.', 'FALSE'),
('com.google.android.talk', ' it\'s notification system is so poor. it doesn\'t notify me when any message arrives. no it\'s too slow to chat also.', 'FALSE'),
('com.google.android.talk', ' i can\'t send messages because in my settings i don\'t have sms all i have is account settings fix it i thought when i got it it would be good but i thought wrong', 'FALSE'),
('com.google.android.talk', ' newest version doesn\'t receive push notifications had to revert to original hangouts app until this is fixed.', 'FALSE'),
('com.google.android.talk', ' google messenger, unite with hangouts & dialer, big problem,i have updated to android 6.0.1. ever since update, contacts in mobile contacts do not since, merge, or anything! it acts as a regular text messenger, please fix! i need my google voice, hangouts & dialer fail to work or merge at all.', 'FALSE'),
('com.google.android.talk', ' the fail boat has arrived the 6.0 version is touted as being advanced, but in fact it contains a big old disappointment. the widget (which wasn\'t even available when google urged us to switch our sms function to hangouts), is now no longer available. wth? fail. why do i want to use an sms app, or any messaging app, which can\'t even give me a quick review widget on my home screen? pffft! rolled back to 4.2 apk. and using the standalone google messenger app which offers not one but two excellent widgets (one, person-specific).', 'FALSE'),
('com.google.android.talk', ' this used to be my favorite app... this was the only app that i used for messaging for quite a while. that was all the way up until the notifications stopped working. this has been a major annoyance and has proved to be extremely problematic as well. i love everything about this app apart from the fact that it does not notify me when i get a message. since this is a google application you\'d think that a bug so simple would be gotten rid of, but i must say, i\'m quite disappointed with the google team.', 'FALSE'),
('com.google.android.talk', ' why can\'t google get it for a company being the most used internet search engine you would think google would be smart enough to conjure a team up to fix these problems they have. i also agree with a few others who thinks google messages and hangouts should combine somehow to make it work how the iphones imessage works', 'FALSE'),
('com.google.android.talk', ' can i make phone calls? i don\'t see anything that shows that i can make regular phone calls. please help.', 'FALSE'),
('com.google.android.talk', ' bugs, bugs, and more bugs with each update. if you\'re unable to improve something which was already good, then don\'t #$&@ it up!(google talk?) notifications bugs are all over the place. edit: application must be reloaded ultimately to be able to view messages. edit: now crashes all day long and requires phone reboot each time.', 'FALSE'),
('com.google.android.talk', ' galaxy note 4, note 10.1 tab & tab 3 7.0 it\'s getting better much better but keep working on it especially the talk texting! also, what did you to google voice please, please, please fix wth can only text & receive text from google voice reallyđđ˘ đ i can facetime from contacts w/4g lte & new update 5.1.1 please don\'t mess it up with marshmallows 6.0 if it\'s not broke please stop trying to fix it. google you\'re making me want to come out of retirement and come work for you guysđ˛đđđ', 'FALSE'),
('com.google.android.talk', ' mms failure still have issues with group messaging and images. even tried fixes proposed on google product forum. it\'s shocking this is a primary mobile app on the platform google can\'t get it right. i\'m on a nexus 6p also so no good hardware excuses.', 'FALSE'),
('com.google.android.talk', ' still no widget? come on! i used to use this for all of my sms. not anymore. unacceptable! instead of adding a new welcome screen with latest update, they should have brought back the widget', 'FALSE'),
('com.google.android.talk', ' mic on speaker is not working with oneplusx works okay but when put on speaker on one plus x. mic stops working. it works for skype and normal calls. only for hangouts this issue is there.', 'FALSE'),
('com.google.android.talk', ' stay on your toes with a new issue every month every time i solve an issue with this app, a new one seems to crop up. recently i stopped receiving sms from my husband who uses google voice. went through the troubleshooter which directed me to make sure his messages aren\'t ending up in the spam folder. well, that\'s only accessible from the desktop app. you can\'t even view spam messages from the android app, or the mobile website. gtfohwtbs.', 'FALSE'),
('com.google.android.talk', ' 1 major annoyance in the new update show who is online and define what online means. on hangouts? on a google product? using g+? can you re-add timestamps for each message? please add a dark mode feature as well', 'FALSE'),
('com.google.android.talk', ' is a shame that when you share picture with your contact all people that has google account sees all the pictures and those pictures supposed to be a private picture that was shared between contact. đąđąđą', 'FALSE'),
('com.google.android.talk', ' text notifications do not work i loved hangouts. however, since a few months ago, i\'m not able to receive text messages notifications. it is really annoying! i receive voice calls and invites notifications. i\'ve looked everywhere for the solution and wasn\'t able to solve my problem. i\'m giving up. i\'m so frustrated!!!', 'FALSE'),
('com.google.android.talk', ' notification problems hangouts doesn\'t keep up with push notifications. to update messages i have to go into the app and manually update. been having this issue on and off for months.', 'FALSE'),
('com.facebook.orca', ' my husband and i can\'t send msgs to each other. it\'s saying on both ends that one other ain\'t receiving msgs at this time.. one messenger we can\'t recover to see if msgs got blocked . help fix this', 'FALSE'),
('com.facebook.orca', ' constantly erases text i have frequently lost messages i\'ve been typing, sometimes very long ones, when the screen changes orientation. if i tip my screen even a little and messenger shift the orientation it instantly erases everything i\'ve written.', 'FALSE'),
('com.facebook.orca', ' latest update should be clientside the most recent update added the following features which need to be changed to client side only: colour, nicknames, and emoji. all three change the appearance of the chat stream and are community controlled. these are issues because they change everyone\'s layout. they need to be controlled by every individual of their own choosing.', 'FALSE'),
('com.facebook.orca', ' no dark background? in this day and age, an app produced by a company as large as facebook, after moving away from xmpp (thus stopping the use of third party software of the users\' choosing) has no option for a dark/black background... seriously, get with the times.', 'FALSE'),
('com.facebook.orca', ' all these updates all these updates but still no improvement on high ram usage. it drained battery so much and my phone is very hot when using this messenger only. now there is even a sync issues too it won\'t sync when it supposed to.', 'FALSE'),
('com.facebook.orca', ' two stars cuz after the update it isnt working properly it remains connected but when i send a msg it is automatically disconnectec and ths msg takes aprrox 2 mins or more to send...plz fix this prob as soon as possible...tnx', 'FALSE'),
('com.facebook.orca', ' does what it says it does, but chat heads have limitations. the issue i have almost everyday is that when a conversation is open in a chat head, you can not paste what is copied to your clipboard. everything is works fine enough.', 'TRUE'),
('com.facebook.orca', ' gone crazy after latest updates..it seems to force closed by itself even if i dont use it..always popup a error msg almost everyday..it seems to trigger whenever i switch between mobile data and wifi connection..', 'FALSE'),
('com.facebook.orca', ' every time i press the send button, a black background appears. this doesn\'t happen before the update. it sucks coz it forces whatever i\'m doing to stop, like watching videos.', 'FALSE'),
('com.facebook.orca', ' please do something its too slow need update please add a feature to go directly in the start of every chat like whatsapp. we have to scroll for hours to go to top and when finally we are there it just goes to the bottom.. danm it. i would give 5 stars if someone solve this one please i am expecting a response', 'FALSE'),
('com.facebook.orca', ' keeps losing connection ever since the update messenger has been losing connection and i don\'t get how if i\'m connected to wifi and it\'s just been doing that ever since. and also i thought the chat bubble allows you to open the chat while on another application? well now ever since the recent update every time i open the chat bubble it exits me out the application i\'m on. i don\'t know if it\'s a bug or something but please fix it.', 'FALSE'),
('com.facebook.orca', ' sometimes, if i turn off wifi, both messenger and fb apps stop responding. and if i dont kill the app and leave it be for a while, it would jam the phone. looking for the cause.......', 'FALSE'),
('com.facebook.orca', ' bug?? i\'ve updated my messenger to the latest version but i dont seem to be able to add nicknames or change chat colors, even emojis. yes i am sure that i have the latest version my android is a kitkat, i have seen minor changes but the new features wont show??', 'FALSE'),
('com.facebook.orca', ' richard perez like it.moved it to sd card and couldn\'t get it back.now trying to re download for like three hours.out of high speed data.and can\'t connect to wifi.don\'t know why or if download going to be complete should have waited before i rated it four stars.', 'FALSE'),
('com.facebook.orca', ' just a tool for them to throw ads at you they use this app to electronically monitor your messages looking for key words. once it recognizes a grouping of words it will start to send adds to your news feed that are similar in subject to that of which your talking about in your conversations', 'FALSE'),
('com.facebook.orca', ' can\'t call i can\'t make out going calls to anyone on facebook.. when the person im calling answers the call it says contacting then after a few mins an operator says that the person in calling can\'t be reach and that i have to leave a message after the beep.', 'FALSE'),
('com.facebook.orca', ' causes android device to not register touch this app has been causing issues making it so we can\'t use the upper left menu of our devices. multiple people have reported this and it is caused by your app please fix this and i will rate 5 stars.', 'FALSE');
INSERT INTO `comments` (`app_id`, `comment`, `sentiment`) VALUES
('com.facebook.orca', ' can\'t change my color like every one els my friend updated his when i did mine we have the same phone he got to change colors an mine stayed the same ether fix or i\'m not using this crap app any more', 'FALSE'),
('com.facebook.orca', ' we have wifi with full internet connection. and it always says connecting on the top. i cant send messages. fix this. as in right now. this did not happen before the update.', 'FALSE'),
('com.facebook.orca', ' messenger/facebook integration issue ever since the last update, initial received messages don\'t get pushed to the messenger app and you don\'t get notification in the facebook app or messenger app. you open the facebook app and happen to see you have a message. you have to click the icon and it opens messenger. subsequent messages go through messenger app, unless you close the chat head... then you start over with no notification and having to go through the facebook app.', 'FALSE'),
('com.facebook.orca', ' not good i had for a while but is not working keeps messing up my face book must have a big because i deleted and my face book works', 'FALSE'),
('com.facebook.orca', ' doesn\'t work anymore before the last update it worked just fine on my tablet but now it will start to open then close down.', 'FALSE'),
('com.facebook.orca', ' always sorry, messenger has stopped. besides, my friend offline for a few minutes already then it just show active a few minutes ago. sometimes it is very lag. pls fix it.', 'FALSE'),
('com.facebook.orca', ' like button the like button, you know the thing that you can actually change now with a sticker(ie snowman) after the update it has never worked on me! i\'ve tried uninstalling and reinstalling and nothing it still don\'t work', 'FALSE'),
('com.facebook.orca', ' chat why you would make it so it changes the chat colour and name for both people i have no idea, update it so changes only the person doing it and will be 5*', 'FALSE'),
('com.facebook.orca', ' messages are not sending or receiving right away poor excuse for an instant messaging app. needs to send messages instantly. tried reinstalling app and switching to both data / wifi connection without success', 'FALSE'),
('com.facebook.orca', ' voice massage don\'t work i can\'t send voice message to any of my friend. my phone\'s mic is good but in messenger it not working. tell me why it\'s not working', 'FALSE'),
('com.facebook.orca', ' unfollow tool does not function unfollow controls do not work on my tablet for friends. i have to go to a pc based messenger to adjust this feature', 'FALSE'),
('com.facebook.orca', ' stop opening like a full app i used to be able to play music on youtube and answer messages. now it stops the video each time i click on a chat head. if i really wanted to close an app and go to another to answer a message i would use something else.', 'FALSE'),
('com.facebook.orca', ' this has made my life hell!! it really sucks my cell hanged most of the time when it was there needs to improve so much đ đ đ ', 'FALSE'),
('com.facebook.orca', ' chatheads disappears chatheads keep on disappearing even if i\'m not closing it, what\'s the sense of the messenger without that quick access. and the app still force closes itself even at times that imw not using it', 'FALSE'),
('com.facebook.orca', ' i can\'t see how to change the nicknames?! my friend can change there nicknames but mine is not i see of all the settings but no change nicknames? no change color and anything why?! fix it! and please just faster grr!', 'FALSE'),
('com.facebook.orca', ' can\'t log in since the latest update i am having trouble logging in. i can\'t log in my account and it keeps on saying that my phone is not connected to the internet. but when i try open my browser it can connect to the internet. please fix this.', 'FALSE'),
('com.facebook.orca', ' linda cooper hardy it is essential at times, to communicate one person to another. not open to all to read or know. i like that aspect of the messenger field. sometimes on facebook i wish i could have a one to another conversation about ~ whatever. i find it necessary to discuss more personal subjects that may start on facebook, then end up on messenger. like a phone with no party lines, i would enjoy a privacy option. for now, we have messenger.', 'FALSE'),
('com.facebook.orca', ' two stars it used to work really well and the colors and nicknames and emojis are really cool and the snow and the hearts when sending some emojis are really cool. but the last update really s***s. can\'t use any other app when using the chat heads, youtube stops when using the chat heads, the message sending is slow, sometimes it doesn\'t even feel that i\'m connected to the internet and sometimes can\'t even send the messages. please fix it as soon as possible.', 'FALSE'),
('com.facebook.orca', ' useful and well designed, however glitchy the app is really well designed. however, i\'ve begun to notice that if you end a call while it was on mute or if the call loses reception because of wifi issues on either person\'s end, the app does not record how long the conversation lasted. in fact, it doesn\'t show that a call even took place.', 'FALSE'),
('com.facebook.orca', ' doesn\'t send the message i have an active internet connection, but the message can\'t be sent. connection problem, etc', 'FALSE'),
('com.facebook.orca', ' app continuously losses connection, at times i have to close app and reopen for it to reconnect. every message also takes around 10 seconds to send', 'FALSE'),
('com.facebook.orca', ' makes top left of my screen unresponsive many lg v10 users lose the ability to tap the top left of their screen when this app is installed. this issue makes uses other apps impractical and sometimes impossible as this issue holds phones hostage. if fixed i\'ll change my review to 5 stars.', 'FALSE'),
('com.facebook.orca', ' keeps crashing ever since i started using it more, it will crash every ten minutes. its starting to get more annoying, however it is convenient for saving text messages since i don\'t have unlimited messaging', 'FALSE'),
('com.whatsapp', ' privacy its nice how it works with the agenda of your smartphone but, i think they might do something for contacts that didn\'t have the app and you want them block if they download the app... the same way they give you the option for send invitations, they should have the option for block them...', 'FALSE'),
('com.whatsapp', ' a avid fan of wapp; thats what we call it.. a recommendation.. if u guys can include a feature in which i can stay offline even when the internet connectivity is on.. right now if the internet is on, i keep getting msgs even though i want to stay offline n receive no msgs... please work on this.. rest u people rock đ', 'TRUE'),
('com.whatsapp', ' no notification displayed on system notification panel!!!! after the latest update of version-2.12.367 in asus zenfone 5, i am not able to get notifications of the new msgs received in the notification panel on the upper side..it doesnt get displayed!! plzz see to it coz i don\'t get notified when the msgs have been received..bothering me much :( :(', 'FALSE'),
('com.whatsapp', ' tricksboom .com -free recharge & online deals site(keep visit daily) jab maange to ye id dal dena @ thaanks for visit us tricksboom .com -free recharge & online deals website. you get biggest discounts coupons on shopping and recharge & you will get offers via whatsapp broadcast also. i am loving it earned more in just 16 to 21 days guys if you went earn more do enter refer id-198198 and install all 9-10 apps and open than an for 1min. & you just 1$ bonus and refer us friends to earn more and more', 'SPAM'),
('com.whatsapp', ' whatsapp i use this app now that blackberry messenger has basically gone away. my friends & family live all over the world. this really helps keep us in touch!', 'TRUE'),
('com.whatsapp', ' occasionally i won\'t receive a notification of a message(s) so i don\'t know that someone has replied until i actually open the app and then suddenly lots of messages come through... 5 stars if that can be fixed', 'TRUE'),
('com.whatsapp', ' it\'s ok !!! only 1 request... its been now more than 1-2 yrs for whts app but desperately waiting for feature which shows active or live whts app users from contacts. if whatsapp add this feature, then 101% sure whatsapp will rock... !!!!! đđđ', 'TRUE'),
('com.whatsapp', ' contacts name and pic i wanna know why alot of my new contacts just don\'t appear only appears if they are online or not and their pic and status don\'t... can this problem be solved?!!', 'FALSE'),
('com.whatsapp', ' few ui updates 1. group should be included with group status... so that if common event is there then the event can be posted through group status.. and group name need not be changed. . . as it becomes difficult to identify a particular group if a particular festival is there and all group name seems to be similar. 2. profile picture and profile status should be at one place not seperate... for status we have shortcut but for profile picture we have to go into settings then profile then comes profile picture.', 'FALSE'),
('com.whatsapp', ' can\'t work after latest update i keep getting the message that the app has stopped working after last update. phone screen freezes and can\'t use the phone until i reported the problem (sent feedback). please fix or i will uninstall. on samsung galaxy note, first model.', 'FALSE'),
('com.whatsapp', ' cant see new emoticons i have a sony xperia z3 and i cannot see the new emoticons. i have updated it twice sinxe the release and cant see them. even my friend with his crapberry can see them but i cant. i will give the app 5 starts if you can fix it.', 'FALSE'),
('com.whatsapp', ' add : search people if you don\'t have the persons number , but they have whatsapp you should be able to search their name and then , add them or something . then it would be 5 stars ...', 'TRUE'),
('com.whatsapp', ' simply good but... i think loss of reply option keeps people away from this app because, especially, in the groups, it\'s necessary to show whom your chatting with...', 'FALSE'),
('com.whatsapp', ' whatsapp tips make it as a medium, not base for a friendship. don\'t stop talking if your friend is not online. find other ways to interact.this way even if whatsapp not available, friend will exist.', 'FALSE'),
('com.whatsapp', ' last seen and dp not showing the last seen and display pictures of my contacts and mine only shows when its privacy is set to everyone. it doesn\'t show when its set to contacts... this happened after last update. kindly fix it.', 'FALSE'),
('com.whatsapp', ' doesn\'t refresh properly i added a few contacts but they don\'t show up on whatsapp...i hit the refresh button, but no luck.', 'FALSE'),
('com.whatsapp', ' its really good but.. not everyone in your address book is exactly a friend.. sometimes u dont want certain people to see ua status or dps... even if u knw them well... so if there could be an additional feature like a favourite list or something like that i would give it a 5 star fo sure...', 'TRUE'),
('com.whatsapp', ' lack of options and closed code so many options for years not implemented and now whatsapp is simply copy pasting the features telegram creates. moved to telegram which is whatsapp but on steroids which even offers desktop integration so you can use it on the pc and more.', 'FALSE'),
('com.whatsapp', ' very nice app best feature is all friends get in touch with it.. runs well during roaming and with low signal.. i hope to see some improvement as in group chatting if we have tag feature or topic hashtag feature within the group, so that we can refer to a particular topic in discussion , just like in twitter etc.. but within the group not public ..would be great.', 'TRUE'),
('com.whatsapp', ' good its very good to use . but i found some fualts . while writing lengthy status ,the words which we enter at starting will not be visible. so to edit those words we should slide through the text we have written . so make status editing line step by step instead a single line.', 'TRUE'),
('com.whatsapp', ' privacy you must provide system in which no one should be able to download profile image. moreover if there will be video calling option then 5 rating is must! kindly do the needfull..!', 'FALSE'),
('com.whatsapp', ' great app but... i heard that apple added some amazing emojis but i\'ve been complaining about not seeing some emojis my iphone friend users send and it bothers me. so can you just add those new emojis please? thank you.', 'TRUE'),
('com.whatsapp', ' wtf it worked for the last 3yrs. then all of a sudden almost all my msgs dont send. and neither does my friends. i tried meeting up with someone recently and we couldnt get each others msgs and missed out. i use to use it with one friend constantly and now it barely works. what the hell', 'FALSE'),
('com.whatsapp', ' what\'s app is not in it\'s format in my mobile massages are sending through left side and all the layout of what\'s app is starting from left while in my old mobile all is in right side. i feel so much trouble due to this', 'FALSE'),
('com.whatsapp', ' wrong details of last seen after upgrading to new version....if som 1 sends u msg...and u see that msg after an hour...u will see that sender is online...and after few minutes it will shw tht person is just offline...on tge othr hand...sender has not online since he had send the last msg....resolve it soon', 'FALSE'),
('com.whatsapp', ' annoyed whatsapp used to work great!! but with the recent update messages didn\'t want to come through unless i went into the app. i assumed it was my phone but samsung said everything is working great. so i was advised to uninstall and then reinstall whatsapp. i did just that. it picked up my old number and backed everything up. until it got to the initiating please wait a moment page it\'s been 3h now and nothing has changed. is there any way to solve this? i would really like to get back online.', 'FALSE'),
('com.whatsapp', ' why what\'s app does not support same account on multiple devices that\'s security but that\'s not good i buy a new phn sometimes i used to go with any phn then i have to switch to that that\'s not good should support same account on multiple devices', 'FALSE'),
('com.whatsapp', ' for storage setting you guyz should work on storage options of whatsapp everything goes on internal memory i am not able to transfer my media files to sd card otherwise app is cool!!!', 'TRUE'),
('com.whatsapp', ' whatsapp = free if you want an app that is basically the same and is free forever, get line: free calls & messaging... i personally like line more because you are able to get different stickers/images to send in the chat.', 'FALSE'),
('com.whatsapp', ' my texts aren\'t delivering. i\'ve checked my internet connection & its working just fine. please fix it & i\'ll give a 5. thank you', 'FALSE'),
('com.whatsapp', ' backing up of messages i dnt know why you even added that message back up. since morning anytime i open my whatsapp a pop up appears backing up my messages,which makes me not to be able to read my messages. you could have done it in a way that it work in the background but not popping and thus preventing you from reading your messages. #pls #stop #that', 'FALSE'),
('com.whatsapp', ' no stickers!!!! why is there no stickers?it is not fun. you should make arrangement of stickers.nor,i will uninstall this app.', 'FALSE'),
('com.whatsapp', ' puro malware viva telegram! nose como han hecho que con la nueva funciăłn de marshmallow de compartir que te salgan contactos directamente, solo te salga whatsapp. siempre uso telegram y han conseguido que nunca me salga esta funciăłn con telegram y solo con whatsapp. desinstalando ya.', 'FALSE'),
('com.whatsapp', ' still broadcast list didn\'t improved you should improve back up option... you should give 2 options 1. with media, #2 without media/only chats...', 'FALSE'),
('com.whatsapp', ' help me out i\'m not able to send or receive any msgs !!.. and wen i try to back up my chat, it tels dat i\'m on roaming so chats can\'t be backed up on my internal sd card!!', 'FALSE'),
('com.whatsapp', ' ehhh. at first i gave whatsapp 5 stars. i am now decreasing them to three. there are multiple reasons for this. 1. let me send videos no matter how long they are. 2. create a feature where i can make custom vibrations for different contacts. 3. being completely invisible when i block someone. 4. wake screen when i get a message notification. 5. if i choose to mark a message as unread, it should reflect to the sender that the message is unread. 6. make video chat available. 7. update emojis!!!!!', 'FALSE'),
('com.whatsapp', ' doesn\'t work whatsapp messages weren\'t sending at all (it wasn\'t a connection problem, i checked) so i tried reinstalling and it won\'t even let me set up my account now... they ask for my phone number and it keeps trying to connect and fails (again, not a connection problem) what do i do? :/', 'FALSE'),
('com.whatsapp', ' love it but there should be switch off or sign out button having a sign out option helps you maintaining your personal space. you can keep a check on the constant addiction and usage of this service and it can help you in striking a balance between your personal and social life.', 'TRUE'),
('com.whatsapp', ' not working at all after updating..hangs phone nd freezes entirely... it takes too much time to open sometime... please resolve this as soon as possible', 'FALSE'),
('com.whatsapp', ' a lil. more features to be included there should be a option so as to u the profile pic is not visible to everyone.. because if you block people then they can\'t even send you msges.. and also more no. of people in a group (maximum should be 500)', 'FALSE'),
('com.Slack', ' every company should use slack i don\'t usually give 5 stars, but man, slack is great for group company communication, in the office, at home, and on the go. takes a bit of getting used to but is well worth it.', 'TRUE'),
('com.Slack', ' glitch: not working on galaxy note 5 this is my third time downloading on my note 5, which is less than 1 week old. worked perfectly on the note 4. what happens is that at first, right after install, it works good. then, i am not able to touch the top lefthand icon which gets me to all my channel options. so, i\'m installing again.', 'FALSE'),
('com.Slack', ' it sucks! i am always shown offline and unable to send a single message to my team.', 'FALSE'),
('com.Slack', ' edit: gif support, yay! if this can be addressed this app will get 5 stars::: having to manually resend messages is a bummer. terrible while traveling with spotty net.', 'FALSE'),
('com.Slack', ' makes everything so easy slack is easy to use and has all the right (ridiculously well polished) features. and it\'s backed by a genuine, caring and honest team. it almost seems like they want you to be happy even *after* you give them your money! crazy!', 'TRUE'),
('com.Slack', ' good app for free this is a great collabo app, especially since it\'s free. i asked for 2 things and slack delivered: 1. proper gif viewing 2. ability to change profile pic from app. functionality complete!', 'TRUE'),
('com.Slack', ' great features, but my notifications don\'t work title says it all, the app says i should be getting the notifications on my phone but i\'m not getting any. would rate 5 stars if this was resolved.', 'TRUE'),
('com.Slack', ' works fine for the most part. not sure why it decides to sometimes notify me and sometimes not. i guess it has something to do with inactivity on other logged in devices (i\'m usually logged in 24/7 on 2 computers and a phone).', 'TRUE'),
('com.Slack', ' when you repeat over and over that you support animated gifs now, maybe a good idea would be to actually support them.', 'FALSE'),
('com.Slack', ' great app the latest update to slack has enabled an in app experience for gifs and while it isn\'t the smoothest implementation it is definitely a step in the right direction. really enjoy using the app and their responsiveness to user comments makes this a great experience.', 'TRUE'),
('com.Slack', ' best app i can\'t believe that it is free! they treat it as if you paid for it.', 'TRUE'),
('com.Slack', ' when you\'ll add gif support, i\'ll give you 5 stars. edit: gif support added indeed. here\'s your 5 stars!', 'TRUE'),
('com.Slack', ' great app, i mainly use it to keep the team together cross sites.', 'TRUE'),
('com.Slack', ' excellent my entire team would be lost without this. works with web app exceptionally well too.', 'TRUE'),
('com.Slack', ' works really well slack for android works flawlessly on my nexus 7 and is way better to use than the ios and desktop versions. the latest update has fixed a couple of the ui/ux issues introduced in the previous update and glad to see the scrollbar\'s back when you swipe up to view the channel history.', 'TRUE'),
('com.Slack', ' unable to change alert sound. not in options. unable to enable alerts per channel, on all or keywords and direct. closer to a beta than an app.', 'FALSE'),
('com.Slack', ' good this is a very good app so far. great features and overall performance.', 'TRUE'),
('com.Slack', ' excellent this app is great, keep up the good work guys !', 'TRUE'),
('com.Slack', ' wonderful for project coordination this is a great tool to have when coordinating projects. it keeps everyone on the same page and in communication.', 'TRUE'),
('com.Slack', ' great, perfect. no complaints', 'TRUE'),
('com.Slack', ' back to greatness previously couldn\'t compose a single message before the app crashed. dev\'s fixed issue very quickly. well done.', 'TRUE'),
('com.Slack', ' everyone loves slack. count me among them', 'TRUE'),
('com.Slack', ' rewelacja bardzo uĺźyteczne narzädzie do komunikacji w zespole!', 'FALSE'),
('com.Slack', ' tablet support any chance of getting tablet support anytime soon?', 'FALSE'),
('com.Slack', ' perfect! very close to using the desktop client!', 'TRUE'),
('com.Slack', ' very useful thank god i can finally reply faster with this! thanks for the updates', 'TRUE'),
('com.Slack', ' slick chat app! reactions are my favorite part of using slack. i love adding my own!', 'TRUE'),
('com.Slack', ' great internal comms system for our business', 'TRUE'),
('com.Slack', ' it was, working great, before, the bugs. worse, with the bugd, and without', 'FALSE'),
('com.Slack', ' now perfect, with animated gif support', 'TRUE'),
('com.Slack', ' need swipe between images nice app, but it would be really nice if you could swipe between images when viewing them full size.', 'FALSE'),
('com.Slack', ' brilliant! the best application i\'ve found so far for team collaborations.', 'TRUE'),
('com.Slack', ' the only and major problem is it can\'t provide real-time notification. but i love the web/desktop notification very much !', 'TRUE'),
('com.Slack', ' excellent app. clearly a passion project. great work!', 'TRUE'),
('com.Slack', ' free the gifs not reliable on a slower network, messages frequently don\'t send', 'FALSE'),
('com.Slack', ' very useful but very useful and good performance improvements. but i can not find a way to set myself \'online\' or \'away\' anymore after the update. where did it go?', 'TRUE'),
('com.Slack', ' love new material design', 'TRUE'),
('com.Slack', ' new menu sucks for power users.', 'FALSE'),
('com.Slack', ' better than groupme đ', 'TRUE'),
('com.Slack', ' one account for all devices', 'TRUE'),
('com.dropbox.android', ' extremely useful app, but has a tendency every so often to glitch out and eat half my battery before i realize what it\'s doing. also needs to let users define a cap on how much device storage it can hog; i recently discovered this app eating nearly a gig of my tablet\'s already scarce internal storage, all on its own. i now clear its data manually every few weeks to stop this.', 'TRUE'),
('com.dropbox.android', ' can\'t log into it tried to reset my password and i can\'t do it. says that the reset key is expired or not valid.. i have all my pictures there đ˘', 'FALSE'),
('com.dropbox.android', ' continually fails to upload files great when it works but i have had enormous trouble with getting it to auto upload from my phone. usually i have to uninstall then reinstall to get this function - which is the one that i use dropbox for the most - to work. very annoying.', 'FALSE'),
('com.dropbox.android', ' please do not stop carousel! google has improved their gallery app (google photo) to make google drive better for photo backup, cannot only store photos, but also create interesting effects, animations and story for users, and even, unlimited space. however, meanwhile, you decided to give up carousel. i am a royal user of dropbox, but don\'t you know that photo backup is one of the most important things while one chooses an online storage tool? wish this will not be the turning point that dropbox is beaten by google drive.', 'FALSE'),
('com.dropbox.android', ' sort option not working they have just provided options for sort (new to older) but it never works', 'FALSE'),
('com.dropbox.android', ' its not safe it has a link to gallery and file manager also. so anone can easily get access to my private photos without any password or restriction', 'FALSE'),
('com.dropbox.android', ' good but not great app is awesome, saves me a ton of memory. but i think it should add a few more features to make use even better... 1) you should had a select all button when moving upload pics to dropbox albums. its a real pain checking individually 250 pictures to move to album. 2.) once pictures are in album, the thumnail should sell you how many pictures are currently in that album... if you could do those 2 things... it would be âââââ', 'FALSE'),
('com.dropbox.android', ' did not work i looked for a movie and the app said it was no such thing as i looked up big mommas house 2', 'FALSE'),
('com.dropbox.android', ' rubbish the amount of memory it gives for free is rubbish it\'s very little compared to one drive they also need to fix the drop box when you upload or dowload large files it doesn\'t do it straight away generally expensive to get more memory!!! need to give more free memory without crazy price tiers!!! never will i use drop box again!!! people out there check other clouds e.g. one drive. gmail drive. just other drives!!! very dissapointed with dropbox.', 'FALSE'),
('com.dropbox.android', ' works but very basic, needs more. works fine, needs interface update. how about thumbnail/icon views, or a small list, for instance? photos need a timeline, or even a -gasp- metadata/exif tag search? how about embedding carousel functionality, and adding to it? google photos is far from perfect, but does have good ideas.', 'FALSE'),
('com.dropbox.android', ' great best cross platform cloud storage and has some awesome functionality. it\'s without a doubt the best cloud storage out there.', 'TRUE'),
('com.dropbox.android', ' seriously needs usability updates. app is ok but storage jumps from free to $10/mo after downloading files dropbox asks to upload it, great, but it asks for the folder every time from the root directory! still, there is no intermediate plan for storage, it goes from free to $10 /mo for 1 tb. i don\'t need 1 tb, but i do need something more than the free plan. google drive will be my new storage since they offer an intermediate plan. i asked for something middle of the road but they aren\'t interested. i\'m going to drop dropbox where it belongs! in the trash box...', 'FALSE'),
('com.dropbox.android', ' easy to use, safe super easy to use! fantastic online backup/storage app. two-step verification makes this relatively safe', 'TRUE'),
('com.dropbox.android', ' just one irritating issue very nice app... except one issue. there is no option of select all for photos inside a folder. i have to select each photo individually. and there is no option to download or make offline the entire folder. one of the above options must be there.', 'TRUE'),
('com.dropbox.android', ' huh? i don\'t get it. i put a password on it and when you go in directly it\'s required but accessing through my s5\'s my files it\'s there at the bottom under cloud storage and there is no password required! how do i stop this security weakness?', 'FALSE'),
('com.dropbox.android', ' bait and switch i purchased my 3rd samsung tablet with advertisement of free gifts, one of them being 48 additional gb cloud storage for 2 years. the 2nd samsung tablet i bought also had this free gift and it was a nightmare to get samsung and dropbox to honor it. so, after buying this 3rd high end tablet with the same claim of the free 48gb for 2 years in the fine print, which you can only see after purchasing the tablet, dropbox only honors the offer on the first device you purchased and you are disqualified for all future devices. this is sleazy and bait and switch. free= not subject to any compensation, encumbrance, repayment in kind, etc. because of this bait and switch advertising on the part of samsung and dropbox i suggest you really find out what kind of company dropbox is before using their services.', 'FALSE'),
('com.dropbox.android', ' looks great, works well and supports ubuntu, but needs removable storage support. an application like this is only as good as the service behind it, and this is where dropbox excels - it works flawlessly, securely and even has a native client available for linux-based operating systems (ubuntu and steamos)! my only real complaint is the lack of support for removable storage (such as micro sdxc memory cards), for which a star is lost...', 'TRUE'),
('com.dropbox.android', ' cool app except the notifications freeze, so i have no idea of the upload status. even worse dunno if it even worked or safe to delete those files. becomes more of a broken app to me. another issue i wanted to create a new account for a friends new phone. exclaimed that 2 year 50 gig is available and it shows it is until after you waste time following all of your steps to get 250 mbs or something worthless. keep it honest.', 'FALSE'),
('com.dropbox.android', ' it\'s brilliant. take a photo on my phone and within a minute it\'s on my pc at home. file? same, make a change on a file on my phone and its changed on the file at home. this app makes the above so easy. no issues, crashes or problems .... just great.', 'TRUE'),
('com.dropbox.android', ' i love dropbox...but.. i wish that the interface didn\'t look so cheap. it\'s the only thing that\'s letting down a potentially stunning app. make it look as great as it\'s functionality and i\'ll happily give it five stars, no qualms.', 'TRUE'),
('com.dropbox.android', ' no auto upload for photos what worked super on my s4 does not work on nexus 6p, i have to open the app for photos to back up. sad. very sad.', 'FALSE'),
('com.dropbox.android', ' very reliable syncing but......the web ui looks like it\'s been designed by a college kid with a laptop.no grid view.2gb free space in 2016?wah photos look ridiculous on list view.the android app does nothing but getting bigger and bigger with each update without adding up any noticeable feature.too plain and oversimplified ui.no download option directly to sd card.', 'FALSE'),
('com.dropbox.android', ' jill you have lost all my photos.i push drop box.and you tell me to set up a new dropbox..all is gone..return my photos.will look again tomorrow..bad service people..', 'FALSE'),
('com.dropbox.android', ' preview not available i cannot view my ms office files. if this problem still exists, will it be more convenient to move all files to one drive?', 'FALSE'),
('com.dropbox.android', ' not enough space 6g is nothing these days. need at least 32g to store all the memory hungry apps as every update gets bigger and bigger as the quality and functionality get smaller and smaller. please dont go to that material crap !!! not evertone likes the cheap material design. it is designed for lazy devs who like the easy/lazy way', 'FALSE'),
('com.dropbox.android', ' definitely worth your time. there are too many lousy whiners reviewing this amazing app. if you\'re not happy, take a long hike douchebags!!', 'TRUE'),
('com.dropbox.android', ' terrible worst app ever 45 mins trying to back up photos! wont drag and drop from pc or mobile. will only let you highlight 1 at a time! what fool designed this to be easy? maybe it does but its not clear onedrive app so much better and simple! all you want is it to run in background but its a joke!', 'FALSE'),
('com.dropbox.android', ' issue my dropbox is password protected, but anyone can access my data if he\'s using my phone. i opened picsart to edit my pics, there was option to open dropbox pics without password. plz fix it', 'FALSE'),
('com.dropbox.android', ' very useful thank you android for introducing me to drop box ! extremely useful (whether on android, computer or both !) now i can sync my personal files and doucments on all my devices and i can still securely access them online from any browser. not to forget to mention about the sharing options ... great app !', 'TRUE'),
('com.dropbox.android', ' best cloud provider love the flexibility, feature set, and streamlined setup. use it daily.', 'TRUE'),
('com.dropbox.android', ' no pin lock security this new version is missing the security feature of being able to lock out access with a pin.', 'FALSE'),
('com.dropbox.android', ' always my go to cloud storsge been using dropbox for years to store music, photos and just about anything else. never fails me.', 'TRUE'),
('com.dropbox.android', ' good app!!!i like dis app ,very useful i loved it. đđđđđdis app is awesome and very useful...!!dis app never makes me disappointed and very simple to use...đđđ', 'TRUE'),
('com.dropbox.android', ' between, android or windows10,my tablet or my phone, i love instant access! fantastic simple to use app!', 'TRUE'),
('com.dropbox.android', ' life saver!! i had to get my content from my iphone to samsung and couldn\'t find out how to do it. dropbox helped me to move it so i could sell my iphone right away. i still have everything thanks to dropbox!!!', 'TRUE'),
('com.dropbox.android', ' great app saves me when i\'m on the field because i don\'t have to rush back to my office to look at certain things.', 'TRUE'),
('com.dropbox.android', ' very good aap i can delete my importent picks without aney kind of risk just beacouse of drop box', 'TRUE'),
('com.dropbox.android', ' it used up my battery!!!!!! i forgot to switch back to my home screen and keep opening dropbox app, then my battery dropped from 50% to 25% in 30mins. it really is a \'drop\'box.', 'FALSE'),
('com.dropbox.android', ' 5-stars.! this app has saved my life on multiple occasions...pictures are life and you help keep mine with me', 'TRUE'),
('com.dropbox.android', ' use this with dropsync (dropbox autosync) dropsync works the way dropbox should have. it doesn\'t have any noticeable battery drain and automatically uploads files faster than dropbox alone.', 'FALSE'),
('jabanaki.todo.todoly', ' uninstalled i downloaded this app thinking it would soon be supported with google for log in and sync with chrome web version cant or wont do two separate apps for a to do list! :( will give 5 star when this is a reality!) ', 'FALSE'),
('jabanaki.todo.todoly', ' doesn\'t login crap doesn\'t work. only app tat work with todoly is cue. ', 'FALSE'),
('jabanaki.todo.todoly', ' awesome ', 'TRUE'),
('jabanaki.todo.todoly', ' possible solution to trounle entering site i like this ap. one reviewer says he couldn\'t get in after installing it. at installation i was asked if i wanted to go through google+ or facebook (i think). i choose google. now when i call it up, there is a link to sign up here. if i press/click on that link, it opens my todo page. try that. ', 'FALSE'),
('jabanaki.todo.todoly', ' no google sync uninstall until it can sync with google calendar! i hate having to use separate apps for these things! ', 'FALSE'),
('jabanaki.todo.todoly', ' great, simple, recommend love this app. looking forward to more new features. ', 'TRUE'),
('jabanaki.todo.todoly', ' can\'t get off first base. having give problems synchronizing with the web version. keeps asking for login password and never goes further. reinstalling for last time before i give up ', 'FALSE'),
('jabanaki.todo.todoly', ' has potential could be better but it conts to crash after some use. love the web version though! ', 'FALSE'),
('jabanaki.todo.todoly', ' simply brilliant simply brilliant, no problems so far. the best feature of this is the accordion of tasks that are grouped. could not login with google but simply clicked forgot password and set a new password and it worked perfectly as described in both the description and app. cheers. ', 'TRUE'),
('jabanaki.todo.todoly', ' unable to work with google & yahoo id sso notice that it still can\'t work with google / yahoo sso which is a big feature missing. it is a good initiative, but still some work to be done before the star... still thanks for the effort. ', 'FALSE'),
('jabanaki.todo.todoly', ' dud on droid4 doesn\'t work on my new droid4 ', 'FALSE'),
('jabanaki.todo.todoly', ' doesn\'t log in checked my credentials multiple times. will not authenticate. ', 'FALSE'),
('jabanaki.todo.todoly', ' very bad i use xperia x8 and i think this app sucks. it never logs in, no matter how many times i change the password it always says it\'s not the right one. it also is not categorizes as a safe app, since its certificate is different then its name, so the anti-virus has to be off for it to connect. futhermore, it has no way to be sync-ed to the google account that allows you acces on the internet version. ', 'FALSE'),
('jabanaki.todo.todoly', ' @juliana please email to resolve your issues. what anti-virus app are you using? ', 'SPAM'),
('jabanaki.todo.todoly', ' only miss cache to be bought! ', 'FALSE'),
('jabanaki.todo.todoly', ' works great! i wish it supported expandable / collapsible hierarchies though. ', 'TRUE'),
('jabanaki.todo.todoly', ' doesn\'t work won\'t allow you to log in. ', 'FALSE'),
('jabanaki.todo.todoly', ' i love the chrome version. only problem with this app is new tasks entered here go to inbox instead of today. ', 'TRUE'),
('jabanaki.todo.todoly', ' are you serious, there is no widget available? ', 'FALSE'),
('jabanaki.todo.todoly', ' does exactly what it states, thank you! ', 'TRUE'),
('jabanaki.todo.todoly', ' doesn\'t seem to work at all. no widget and doesn\'t sync with site. ', 'FALSE'),
('jabanaki.todo.todoly', ' i love this guy. he keep updating this simple app. i think this app will rock soon! ', 'TRUE'),
('jabanaki.todo.todoly', ' fail to launch i can sign i online via a pc but the app gets me nowhere. it downloaded fine but now that it is on my phone i am in a never ending sign in loop where i get their blurb, press the button to login, enter u/n & pw but then it takes me right back to the app\'s burn. frustrating to say the least after i was so looking forward to making use of this app after having downloading it on chrome. ', 'FALSE'),
('jabanaki.todo.todoly', ' does what it says i love this site for my computer and wish it had a more mobile-friendly interface. this app does what it says it does, i just find it so unorganized and a little bit stressful to use. good start, room for improvement. ', 'TRUE'),
('jabanaki.todo.todoly', ' won\'t authenticate i use the web app and wanted to have it on the go. it won\'t login. i checked my credentials and i can get in on the web, but not my phone. ', 'FALSE'),
('com.evernote', ' was great, broken with marshmallow i lauded evernote for working across more devices and os than other products. but dropping stars as with android 6, if you format sdcard as internal (required to effectively use sdcard for apps and games), evernote will not run; it asks for a \'memory card\'.', 'TRUE'),
('com.evernote', ' it\'s okay but i wish there\'s a way to archive notes so my notebooks don\'t get cluttered up. and how about viewing options like grid view? so i can view my notes and notebooks in grid view. please make these things possible, i\'m sure i\'m not the only one who would like that.', 'FALSE'),
('com.evernote', ' very useful i haven\'t used it as much as i could, but even for what i do, evernote is one of my favorite apps of all time. they just keep making it better and better. their widgets make the all even cooler!', 'TRUE'),
('com.evernote', ' evernote...forever evernote helps this busy mom with shopping lists, spur of the moment ideas that i want to remember later, a file for different parts of our family life-finances, pictures of school fliers, and more! xoxo', 'TRUE'),
('com.evernote', ' lifesaver this app is the one i use to keep track of my christmas shopping. my 2015 christmas notebook has separate notes for each person. i can check the 2014 notes to make sure i don\'t duplicate. but i use it all year around for med lists for my mom, grocery lists, pictures i need. it\'s a lifesaver for my overworked memory.', 'TRUE'),
('com.evernote', ' one of the best apps ever at first i was a bit skeptical but i got used to it and now i can\'t work without it. better even than onenote. at least for what i\'m concerned.', 'TRUE'),
('com.evernote', ' edit: wakelock has been fixed. thanks! i used to love this app, but the latest version is holding massive wakelocks and burning through my battery. would be 5 stars without this but essentially unusable now. please fix this battery hog and it will be a 5-star app again!', 'TRUE'),
('com.evernote', ' widget sabotaged this app functions ok as a note-taker. i access it primarily through its widget. the old widget was great, giving a peek at a few recent notes. then that widget was killed off, and replaced with a widget that shows only the titles of 2 recent notes, with maybe just part of the title of a third note, and no content at all. it shows poor judgment for a company to downgrade its product for no apparent reason. also, there\'s no undo button.', 'TRUE'),
('com.evernote', ' ever so useful evernote it is so easy to \'scribble\' something down when you have your smart phone, tablet, laptop, or whatever. you can be spontaneous, yet accurate because you write when you are at the place and at the time. when you return to your main computer your writing is there waiting for you. almost magical. such a time saver and a memory keeper.', 'TRUE'),
('com.evernote', ' a very useful web notebook / bookmark bookmarks used to be the only way to record useful websites but evernote does so much more. was using this years ago and am now revisiting old stuff and adding new...with a raft of new features.', 'TRUE'),
('com.evernote', ' very user friendly! for those looking for a straight forward note taking app that syncs across devices and has user friendly features, look no further! evernote simplified my electronic note taking with charm', 'TRUE'),
('com.evernote', ' ătoo slow loading webclips!!! ăno pdf support at all... (even simpler apps do that!) ă web pages that are clipped do not adjust to current window size automatically when window is shrunk or expanded, (any program does this...geez). ă highlighting? needs more colors instead of brown mustard yellow. no customer support responses either, evernote must have been taken over by students. it\'s not even fun to use anymore because it is slow as hell. this is especially for serious business users. any five star ratings down here must have been given by employees under different themes. this program has really retarded over the years. they need to stick to improving their bread and butter instead of selling side junk and features that are useless. well they got my money this time, so i have to put up with it for a few more months. the lack of pdf support really is terrible for a program like this.', 'FALSE'),
('com.evernote', ' very solid my one real complaint is no way to make anchor tags within a note so i can make a table of contents. otherwise great application.', 'TRUE'),