-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_data_groundtruth.txt
More file actions
2062 lines (2062 loc) · 129 KB
/
test_data_groundtruth.txt
File metadata and controls
2062 lines (2062 loc) · 129 KB
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
May be i can check
It make me happy
I have a normal phone and it made 1 of my pics look like one of a iphone 6 if u dont believe me look at my instagran account ... wings_2004
Love it so much
Cant get to install
Too many ads and secondly erratic interface.
I have already uninstalled
Its so happy
Nicest systematic for Android phones
Its so easy and fun
Main diss app tight um hmmm
Everything is awesome
I've downloaded a few different ones and this is easy to use, and the pictures come out great.
Plenty of options to choose from to make whatever kind of picture you would like
Like it but not so cool app
I really like the HD effect, brightness and color correction features.
I can basically change the whole pic its so cool :-) lol :-)
I can't believe how easy it is.
This app is very good for photos editer
It is just simple and Good app.
Its ok but u have to download stuff
Ive used this on my previous phone.worked prrfectly but ive recntly bought samsung galaxy a5 the splash and focus functn doesnt work.plz help!!
This is perfect.
If only you could make a video editor, too, that is just as good as this.
Makes awesome book covers!
There's an ad after every other button I press
Its has alot of things awesome
This is awesome app.
its alright so far
I like how it is fast and easy to use!
lighter and faster than other photo editors ,with many editing options best recommended app for photo editing
super easy and i love the effects ,also super easy to install!!
Very good app
The app has very good features indeed...
I would give this app a 5 if there were not so many ads
never use it its fake
Easy to use!
Covers imperfections and has cool filters!
I love did App Its Amazing!!
It's a great app
Very useful, full features without any pro version purchase
I LOVE IT
There are so many ads popping up that the app is now unusable because an ad pops up literally every time I close the last.
I have used it.
Its a good app for photo editing.
You can so many things from this app.
You can download this app without fearing.
I`ve seen so many photo editing tools but this one is the best 10x a lot it's really proffesional
I have a blast using this app with my eight yr old daughter!
Able to take r add to photo love it!
First, why do you need Access to my phone?
Why are you running in background when i am not using you???
Get off my phone!
Makes neat collages and great for editing
U have t ok down load every thing u want to add to it like the effects
A powerful photo editor with many wonderfull effects
Horrible editor, worst app in this entire store.
I give it half of no stars, stupid as a pair of inbred babies
Great Photo Editing App for editing Photo's
verry nice app and i am happy this apps
its a great app to edit pics
Very satisfied with the results I get by using this software :)
Helped me make AMAZING photos
The best that one can get
I gave this app a 5 stars 'cause 'rate me pls' always pops out and it's annoying, good app though.
Loved using it.
Cant use d way i use CS6 in my lappy.
But its far bettrr than any other apps i tried on my phone...
Needs an airbrush feature
It helps me create amazing fotos.
They really need to think outside the box and get more creative .
think about what makes this app better than any other app and why we should get it .
that's some advice from a 12 year old .
take it or leave it
I would give it 5 stars, but there are a few bugs that could be fixed
The app has more options than I'll ever use.
It doesn't provide for a way to delete previously 'edited' needless photos that are starting to accumulate in the gallery.
Can't obtain any help on how to delete 'just those photos' while maintaining the original photo.
Ilike it but the other app are busy.
But i got the frames.
The best one I found so far
Love it... Love the enhanced picture qualities, the frames etc....
Easy very nice detail options and doesnt crash!
Would be better if there were more frame options tho
Have to download everything and adverts are annoying!
It's best
Best photo editor i have seen
Without Aviary this app cannot working
Great app.....easy to use.
But has alot of popups.
Sud have an option to un blur the blur photos
it's a cooooool app ever.
i like it...!!!!
Whenever I went to choose a photo then go back to it a blank black screen came up for a few seconds.
Also it seemed to only let me have one photo I couldn't see how to add in another photo.
The app is gud but reqire sum features more
This will be very helpfull to me.
I love being able to have fun with my photo.??
I can edit in many ways... It looks always perfect... so yea 3 thumbs up to this app
It perfects flaws and inperfections !!
Lol and its fun to use too!!??
App is Brilliant...but only the thing due to which I gave 4 star not 5 is FONT.....We cant change the FONT Text.....
Love the affects when done
This aap is excellent ... Love it .
( It works in my phone)
Doesn't even start .
Waste of time ....
This works realy well the only thing I don't like about it is that u had to download the stickers
Best application in world
I have used many and this I like one better then many.
Wish i.knew how to change font size
I reallly can fix my ugly pics
This app is pretty cool I think it works good
Well for one thing your app doesn't look anything like the pictures above and for another I got to edit one photo and then the app wouldn't open and kept force closing I hate it so I removed imedently
Not bad app.
nice editings cn be done overall good job.
This is good app
If they are free, why do I have to install the frames then the effects then other things.....
just make it come with it.
Suprb app for creating more effect...
Like a picart
I dnt like that u cant redo or format the text
It is a great editor love it
I liked it so much.
You have to pay for stickers really
Works very well, easy, loaded
Perfect mobile photo editing app
It works for me
East or west this apps is best.I try my best to choose some other apps and use them.Thanks developer please keep it up.
I love it it makes me feel real with the effects n my blue eyes
This is ousome
Can't upload photos
Love the new ehancements
This might be good but I'm write before playing this app!
Lots better than some.
Better than default editors.
its easy to use and has a good user interface.
You have to download everything before you CD an even start date it so much it is rubbish for not install unless you like rubbish apps ‼‼‼‼‼‼‼‼‼‼‼:-\ :-\ :-\ :-\ :-\ :-\ :-\ :-\
Solid apppp I loved it
Making memes right now!
Hope do not make any trouble
Very user friendly.
needed to take off unwanted bits captured in the photo i took & this app did the trick!
It's looks great and nice I like it
Exactly the program I was looking for!
I have an HTC One M8 and for some reason this app opens and then closes without out any option for me to do anything.
My only question is if this has to do specifically with my phone.
Especially since it seems to work well for others.
Very good apps
Easy to use
Very good photo edit app
Cool app loved it
I loved it//////\\\\\\\$£€$€¥
This is a great app to use
I've used Evernote for quite awhile to take notes on my Android tablet and be able to share and edit them on any PC with a web browser.
Not as nice as Microsoft OneNote, but at least it's cross platform.
Nice to see that it runs on the Kindle Fire HD.
Love that I can sync to my other devices.
It has been a big help in keeping me organized with my lists.
Have everynote you take on your tablet, phone, or laptop synced without touching a buttom.
Very easy to use.
Highly recommend Evernote if you take notes for anything.
I cancelled this app about 10 minutes later, not sure if I didn't give it enough time to understand it or not.
Did not like at all, I use the cozi family app and it seems to work much better for what I need
I use it for school notes and not only can I use on my kindle fire, I have the app on my cell phone and my laptop, so I can never lose my information.
love this app on my phone and pc but it has some bugs on kindle.
please fix the terrible spell check for Pc and list the upgrade price in the app and I would pay for premium.
OK, I love Evernote, but sadly can't download it even though it is free because the app store is not available overseas.
Seems silly for a free app, doesn't it.
On other devices such as iphone, and on the google app store, it's no problem, but Amazon has put to many restrictions on Kindle Fire, so I'm stuck not being able to download any free apps.
I should have bought a different product.
Never lose your notes again, and access them wherever you are, this app is perfect for any mobile note taker.
It performs its basic functions well and works between my pc, phone, and kindle, but the organization feels off and their are still occaisonal syncing problems.
I have this app on my pc and love it.
The version on the kindle fire is limited but I can Still use it for most thinks.
Thanks so much!
It's the only tool that works across my devices.
It synchronizing capability is transparent and remarkable.
word word word word
still working out kindle potential but love it thus far.....
could be really awesome if I could attached camera pica but don't have that in kindle.
Evernote goes where I go.
I use it for everything--recipes, receipts, notes.of all kinds.
I have copies on my desktop, my iphone and now my kindle fire.
Thanks to the developers.
I am not sure how to get out of the original screen to have the notes listed in another place from the running tab on the main screen.R Elliott
I started using Evermore on my PC for school.
I use it for notes, making copies, storing research.
It is such a great tool.
It syncs easily between my PC and Kindle Fire so I can take my notes anywhere.
I use Evernote for all my note taking needs and general memory practice.
I love the fact that I can review and edit my notes on any device and anywhere.
would recommend this to students, great for tagging websites you want to keep to help get some work done!
perfect to keep my Pc synced with my phone and tablet
Works great and synchs to all of my devices.
Using it for homeschool lesson plans.
Very easy to use!
I was first introduced to this app for my job, and now I use it everywhere I go.I use it on my Kindle, and have found it to be more than helpful at meetings.
I have a terrible memory, and with Evernote I have been able to keep track of everything.
I love the features and benefits to using it.
The fact that you can clip from the internet is great.
I am glad I stumbled upon this, and couldn't be happier.
It helps alot with school work.
It also syncs with other devices without using a manual device sync.
I just love it!
This app was constantly updating, contacting me and trying to get on my other wireless devices.
It was way too complicated for what I neded - just a simple note pad.
This app is a God send.
I can easily store and organize my thoughts in ways I never imagined.
I love Evernote.
The best feature is being able to email yourself a note and seeing your notes on the web.
I use evernote for everything and love that it works on any computer, browser, phone, or tablet.
I try not to waste any natural brainpower on things that evernote can now remember for me.
It is great for note taking or outlining a paper.
I use it at university all the time.
Only complaint is the sharing options are limited.
I have evernote on my laptop and I love it!
I was so happy when I found out that it was on kindle.
I have to say this is the best product of its kind!!
I don't know what I would do without this thing.
I use it for personal applications, as well as in my professional life as a teacher.
Installed everywhere I needed.
A slick note store - really helped me get all of the clutter out of my head!
Yo can see it all everywhere.
very handy to either make quick note while out or lengthy one at home from computerwould recommend to family or friends
I love Evernote simply for the reason that you have your notes accessible from anywhere : kindle, phone, or PC.
Also love the check box option for my to do lists!
For the price, you can't beat the kindle fire.
I knew that I wouldn't get a calendar or Android Market, so I'm giving it 5 stars because it absolutely meets my expectation.
I LOVE THIS APP!!!!!
You can keep picture notes and everything you need to keep in this little app right here.
Sure they use your contacts but that's all they use.
They don't locate you or anything.
They use what they have to to create your account.
So all you haters need to delete the app if you don't like it.
I would recommend this to everyone!!!!!!
So have a great day:)
Good enough synching which is why I needed it in the first place.
Could be more dynamic but it's okay so far.
Great for taking down note, I also use it to write down recipes......
I would advice everyone to get the app.
its the sticky note you have been waiting for
this does everything i was looking for i am a sticky note queen and i can organize all my notes and to do's in one place
With Evernote, no matter where I am, or what device I use, I can quickly jot down notes, ideas, or important info and not worry about where I saved it.
With add-ons like Skitch, I can take pictures of things that inspire my art and make notations right in the image, then Evernote once again makes sure all my devices have a copy.
Very intuitive & user-friendly.
Love that it syncs across all platforms - my laptop, Kindle Fire, Android phone, and even accessible on the web from any computer.
when i first got my tablet, i was not sure what i was going to do about notetaking in class without Word.
this app allows for sharing and can be typed on your laptop as well!
love the functionality of this app.
works well within my kindle fire, and allows me to take great notes during class.
a wonderful application for note taking and the layout even better
Easy, Free, Works great.
I use it for many things and I keep thinking of more.
I wouldn't have a device without it!!
I have evernote on my iPhone, Kindle Fire & laptop.
It's so much easier than having post it notes everywhere.
I recommend this for note takers takers everywhere!!
As a longtime Evernote User, I was very happy to see the very capable Aneroid app works great on my Kindle tablet.
This is an awesome app.
I can't imagine being without it now.
I even take my Bible Study notes in it!
Awesome software - available on kindle, phone and computer and notes are there for you to access and review or edit!
I take message notes at church with Evernote and it is quite useful.
The features appeal to every personality and it is easy to use.
No more need to carry a notepad around with you - this ap replaces the pen and paper.
And what makes it better is that you can have the same note synced on all of your devices - so you can write your shopping list on your computer, and look it up on your iPhone or tablet.
Brilliant in its simplicity.
This app is a life saver!
When your need to jot something down real quick or just take a picture of something to remember.
And with school and the voice dictation on my phone is a life saver with long papers to type.
I can dictate 500 words in no time, and transfer it to a word document!
this app will make you poop your pants!
lol I can't figure out why, but it makes me poop myself every time I open it!
I love pooping though which is why I gave it 5 stars!
Except the program crashed when it asked me to write a review about it.
I like how it syncs to my computer and is easy to use.
This is a great app for thosd needing to create / access information on multiple computers but don't want to have to carry a thumb drive around.
It has an ample amount of free storage and is very User friendly.
I have found it to be very reliable with only minor drawbacks, none worth mentioning.
I agree with concerns about permissions .
The app itself is great.
The fact that I can have it on my Thunderbolt, Kindle and computer makes it very convenient.
Syncs all three without problems.
So nice not to wonder where you saved your data and be able to access it and update it from multiple devices.
I started working with Evernote last year when looking for a note taking program to organize my class notes.
I needed something that could at least reasonably organize scanned note from classes like Calculus and Gen Chem, where notes cant be taken on the computer reasonably.
In other courses I found evernote to be perfect, but the shear number of notes often ran me into a wall with the limited 60MB.
Since then I have upgraded to the premium edition of Evernote and the service has consistantly gotten better every month.
The 60MB pay wall was well engineered.
It should be noted that most users dont need to worry about running out their quota.
In fact it is nearly impossible to run out your quota if you are only taking text notes and saving web clippings.
You may consider upgrading if archiving large quantities of PDFs and Pictures is your goal.On the Kindle Fire this apps start screen is a little redundant.
The New Note button and Attach button are the only two that work.
The add voice note and photo note do the same thing as the attach button.
I don't know how this has changed for the Kindle Fire HD.
The interface has been well redesigned to make working with it more intuitive albeit a little bit chunkier.As a premium user I take advantage of the extra space in very creative ways.
I am a student, and just like any other student I sit through countless powerpoint lectures.
I like to use the the table tool (in the desktop client) to put all the slides in one column and the descriptions in the other.
When reading on the Android app you can then quicky and effectively go through andAs for PDFs, there is no integrated reader that allows you to display the files inline like the desktop clients.
Instead the PDFs are shown as attachments.
When clicked they are opened in what ever pdf reader you have - or on the Kindle Fire the PDF is opened in the kindle reader software which is only well designed for reading appropriately formated pdfs.
I would recommend installing Adobe ReaderAdobe Readerwhich perfectly displays PDFs on the kindle fire.For whatever reason, on the Kindle Fire voice notes will not play.
I understand that the 1st gen Kindle Fire doesn't have a microphone so no you can't make audio notes.Update: Thursday Nov 8th 2012[...]Evernote announced serious changes to their client and their service addressing many of the concerns of reviewers.
I love this app including the PC version and I especially love the easy sync.
It has more functionality than I expected!
Vastly superior to the other note apps I've used.
Keeps me organized.
Great way to sync notes across platforms.
I use it in tandem with Pulse to save recipes.
And it's free: what's not to love?
I really like this app.
I have it on my Kindle Fire an use it for making lists.
The checkbox option comes in very handy.
I use Evernote as my primary note-taking method in college, and to be honest, it's been one of the most helpful applications I've ever used!
My only two minor gripes are that there is a persistant bug that prevents me from editing many of my notes on an iPhone (the screen jumps around with every keypress), and the overly-minimalistic formatting options, necessitating a separate word processor for essays or any other serious papers.
Fix those, and I'll pay for the app with no regrets!
This is a brilliant program.
It syncs with my PC, my Notebook, my Netbook, my Kindle and my android phone seamlessly.
It holds everything from web pages to simple notes to complex itineraries.Evernote is my "go-to" program for retaining information.
Thank you EVERNOTE!
I write songs and like to keep a diary so Evernote really helps me keep track of everything.
I also like Skitch, which lets you draw pics and sign your name on important notes.
It is a separate download but once its downloaded you can click the link let you sign or draw onto your notes.
I just use this for everything: grocery lists, recipes, websites, schedules, story writing, class notes, ect.
All in one place.
This is on my computer, Kindle Fire and Iphone and can be synced across all these devices.
I have to say, when it came to using planners, I'd always say I prefer paper to electronic.
Not so much anymore, although this isn't a planner, exactly.
But, you can certainly make it one if you wanted.
I love how you can format it with check boxes and tables.
It really has helped me keep organized with everything in one place and easy to find.
No more wondering where I wrote that note down, what that website was, or where my grocery list ran off to.
I know it's all right there.
I love how this app syncs with all my devices, inc my phone and tablet.
It has helped me organize my work and personal life so much that I would be lost without it.
I have a droid phone and am used to the Andronotes app so I haven't really used this one yet.
I had it on a previous phone and never used it.
I think I'm just used to the andronotes, but I will definitely take time to get adjusted to it.
One thing that would make it better than andronotes is if it is alphabetical when searching for notes!
very useful app, you can note sonething in your mobile device then view it on your computer.
or the oppsite :)pls,it has an add-in in outlook too.
Very easy to use.
Works in different applications syncs between all my devices.
Set up very easy and started using right away.
Only had this app for a day but I'm in love!
Thank u for providing this.
Only thing I ask is create a way to drag notes from books on kindle fire
I am a busy lady.
Wife, mother, full time employee in public education, student, as well as the founder of two non profit organizations.
I can make a file for everything from my son's funny quotes, to homework and tasks, as well as make separate note files for both of my non profits.
The only down side is that not all the options available on your computer and tablet are available on the phone application.
But I am still over the moon about this app!
App has been invaluable to me in keeping track of certain articles as well as being able to send them to my different email sites.
I have had it for several months.
It works well with my Kindle Fire.
great for multiple device users.
i have several and can share with the wife instantly.
i had go set it up for her but thats not the point
So far,this app is helping me be organized.
I seem to have so many little things I have to do and re do & I was just about to give up, then Evernote, so far, has saved the day!!!
I use this for my business and it makes delegating and tracking my "to do" list so much more convenient.
I love how you can create separate notebooks and include attachments for any use.
They need to fix the butt ugly iphone version.
Hoping they don't roll out the ugly as he'll iphone version for kindle.
I have used evermore for over six months and so far it has met my needs adequately.
I am still concerned about the privacy issues.
I love it.
I wish I knew how to rotate a picture but I'm learning more and more each day for an old geezer.
I'd like a complete substitute for OneNote, and this isn't it, but it does a lot.
I like synchronizing across platforms, especially.
I use this everyday.
it is on every device I own.
I even love the Internet browser "clipper".
I never forget anything anymore!!
Evernote is one of the note apps that's been around for a while and is very popular.
As a result, it's been well tested, debugged, and refined over the years and you can expect a smooth, bug-free, and capable app when you buy it.
Evernote has exceptional file and information handling capabilities and allows you to capture, store and share not just notes but photos, webpages, freehand drawings and graphics, and pretty much anything you want.
The premium edition allows your friends to access and modify your notes and so offers group collaboration capabilities.Another area Evernote excels in is the sheer number and diversity of its companion apps.
Just a quick look at what was available at the Apple store revealed no less than 20 and there were more that I didn't bother to scroll through when I stopped.
These included:Evercrane--a file and note management app providing quick sorting and moving featuresMoveover--another file and note management appClever--a powerful interface and client app with many useful functions (too many to list here)Evernote Food--a recipe programEvernote Hello--a powerful contacts managervJournal for Evernote--a daily journal programFastEver--quickly add notes, tags, and organize notes into notebooksEverclip--a webpage clipperFastEver Snap--a camera for EvernoteEverConvertor--a currency converter for EvernoteCheckEver--a way to manage your checklistsQEver--add reminders to your notesENPower--quick access to your Evernote notes, notebooks, and tagsMultiSnap--quickly snap and send photosMoveEver--another powerful sort and organizer app similar to MoveOver and EvercraneTap2Ever--fast Evernote uploaderEverGear--note and photo posting appEverWord--EverNote flashcards app with database-like capabilitiesEverEPub--make an EPub book from your notesEverLog--a logging and posting app for EverNoteThat's just some of the companion apps that I saw.
There are more and there is often more than one app available in a particular category (note management, daily journal, etc.) so that if you don't like that particular companion app there may be another you will like.In reading the reviews here I note that some people didn't like Evernote wanting access to all of their contacts, which they considered an invasion of privacy.
So if this is a probem for you you should consider that before buying the app.Overall Evernote offers a lot of value for the money and has the most add-ons and companion apps of any app in the note category.
There is something for just about everyone so if you're looking for a good note and task app Evernote is one of the top offerings that you should consider.
I have Evernote apps on my Kindle Fire, iphone, ans browser at work and I'm able to email myself notes, links, etc and then open in any said mediums and since.
absolute must have!!!
Useful in too many ways to list.
Anything you need to save online and/or add notes to comes together perfectly in this app.
The easy to use UI and cross platform syncing and integration is what puts this app above the rest.
I use it on my phone, my laptop and iTouch and my tablet and it syncs instantly and seamlessly.
Evernote is wonderful app.Really helps keep me on point.
I love the fact that it synchs across all my devices automatically.
Killer app on my Kindle Fire, iMac, HTC One S, etc.
Just love it!
I was looking for and quick and easy way to write on my kindle and have access to it everywhere.
just what I needed
This app is a dream come true for list makers!
I have it downloaded on all of my devices and use it every day.
Evernote works so well with all of my devices.
I love having one place to go and see all my notes.
I use it at work, at home and on my phones and tablets.
It's seamless and so well done.
using this app on kindle fire is excellent!
i have used it to take notes in classes and it works brilliantly.
i can access my notes from my other computers, organize them in notebooks and tags and add web content and other attachments that make this app an excellent addition to any computer, tablet, or phone.
if you ever need to make checklists, remember names or emails, or take notes this is the app for you.
Simple and easy to use.
Like the ability to format notes in various ways and the sync to web works great as well.
The amount of storage in the free version is more than enough for my needs.
Evernote has been a go-to app at home and on my phone for a little over a year.
The PC version is atrocious but the MAC version is pretty decent.
Its a bit processor heavy but the updates are tweaking it into place (hopefully).
The Android App has been improving over the releases and as a paid subscriber I've invested a lot of time into making a usable and searchable database for multiple projects from digital to analog projects
fast, easy, and able to reach your notes anywhere.
I like simple.
Evernote is just that.
No fancy stuff just what a writer needs.
I have been using it for about a month now and I put everything in it!
I even use the email and it works great.
Great piece of software.
This app is great, compatible with so many programs, great sharing options and the sync has never failed me between my PC, GS3, Kindle Fire and Notebook!
I Highly recommend this app for anyone who needs to list, note, share or do just about anything else it offers!
I clip selected text, web pages and links and can access them later on any of my devices.
I also create short notes and to-do lists with Evernote.
I've only used the free version so far but I love it and recommend it highly.
Big fan of Evernote.
It's my business goto, safe for ideas, and collector of things that intrigue me on the internet.
Check it out.
It's great.
I found the app to be too invasive in that it wants you to load it up will all sorts of personal information on all of your devices that it will then share with, seemingly, anyone who wants it.
I can put info, tasks and files on my e-mail that I can share with all of my devices without Evernote snooping into them.
I always liked evernote I can do my homework where ever and print it out from the website I save notes from school and able to save them I specific folders for later review and print I highly recommend this app for students especially students on the Go!
I use this app pretty much everyday for storing interesting quotes, or jotting down ideas.
It has allowed me to get rid of my notebooks and sticky notes, and consolidate them into something that virtually consumes no room/work space.
this is a terrific tool for organizing your thoughts.
i highly recommend it.
now, if only i can get the bluetooth keyboard working cleanly with my kindle fire hd . . .
love this one enough to download to phone and kindle.
keeps notes organized.
sync feature really convenient.
use it for school assignments on the go and sync and save often.
works well with awesome notes...
App never downloaded onto my Kindle.
Free or not, I expect it to "get here."
Got another app instead.
I don't understand.
It's the only download problem I've had so far.
not sure what I can add that hasn't already been said in the 2131 reviews already posted.
love the ease of the app and cross platform.
it works great and wicked fast.
I like that this can act as my idea pad for songs and screenplays.
The best thing is that I can access it on any device with the same e-mail!
this app has completely changed and reorganized my life... from business cards that I get, to ideas I have and want to be able to access from anywhere, to pretty much WHATEVER... this app has been amazing.
I will be purchasing the full version soon.
it's that good!
this is the only app i have ever taken the time to review... it rocks.
Had a problem with it syncing.
with my laptop but a simple reinstall fixed that.
It is an awesome app.
This app is on all my devices my Mac, my kindle, my phone and its accessible from the Internet!
I don't know where I'd be without Evernote!
I first tried this on my desktop but on the Fire it has thus far been unusable.
I cannot sign in with the password I use on the desktop, cannot reset the password because it not recognize the email address, and cannot register because the same email it does not recognize is allready in use.
For use on multiple devices this app is a sink hole for wasting time and effort trying to set it up.
I wish I had started using this sooner.
I love that I can access the information from my phone, computer, and Kindle.
Honestly haven't used it yet, but with so many reviews entered why should you care?
Make a note of that.
i love this app.
it is so easy to use and works on all my platforms from apple to my kindle.
This app is very organized.
If you're like me and jot things down on whatever scrap of paper is available, this is an excellent choice.
I use it on my Kindle and haven't had any problems with it so far.
I would recommend this to anyone.
I have discovered this program as I was looking for a way to making my job in writing easier and I must say that I am very pleased.
I can now work ok my computer either locally or by the net as well as on my Kindle tablet.
I am totally satisfied!!!
I save everything on Evernote, I mean pictures, magazine clips, recipes, thoughts, you name it.
The best part is I can access it on my kindle, phone, and computer.
love to save all my notes because I have short term memory, not sure if its cause from all the weed I used to smoke.
I love this app.
the only thing I hate is that the government has access to all my movie ideas which I have seen come to film threw out the years.
but that's the price I have to pay for not getting my lazy beer drinking fat asss off my couch and making them myself. . . sigh.
anyways love the app!
I've used this app to plan an entire choir tour to Germany and Austria this past May, and am currently working on digitizing a suggested menu for a fine dining restaurant.
Works amazingly, along with Skitch, but I wish there was a way to import notes into a type of presentation app.
All in all, very helpful!
Convenient to have on my kindle, easy to use, what's not to love?
I use it for my grocery and to-do lists and I love it!
love the program, best thing that I can use to keep track of all my notes I scatter around.
Keeps me well organized and happy with all of everyday task and Internet notes
The developer is devoted to improving the product and making it easier to interface with browsers.
What's more, its cloud interface allows seamless synch.
with all your computers.
Great app that is attractive, easy to learn and use and helpful in many levels of life organization.
Grateful I finally decided to try it out.
i use it for work and as personal journal.
replaced colornote, delicious, and google drive.
it gets better everyday ...
sometime there or appointments 6 months away an I need a notice with an alarm there is not an alarm on evernote are Ihave haven't found one but this help I always want an alarm
I've used this for over a year.
Helps me keep organized.
Sharing notes with other users is awesome.
awesome app, i didn't like evernote at first but now that i have a kindle its lightened my load by 90 percent, no more folders packed with paper, i can carry every thing with me without having to suffer from all the weight in my purse.
i just scan everything into evernote and it automatically files everything for me.
good job guys!!
i had to switch Kindles after one was faulty and Evernote was an easy way to keep all my documents.
the only thing is that it doesnt save larger files.
I use this when I don't have access to my computer to type up my homework.
and because I have the app on my phone I can work on my homework anywhere.
great app that does what it says.
use it on my kindle and my Pc.would recommend to everybody.
only gripe is the interface on the kindle could be better.
i really like its shared feature.
i can write a note and have it on my phone, computer and tablet.
I like that it can do photos videos audio and text.
I like the way you can organize into notebooks.
everything is very useful.
I like it a lot.
great app for taking notes across all platforms.
no matter where I am or what device I have available I can always update or create notes.
I always have trouble checking my purchased items.
It could be easier to move around and search in the app.
Can buy stuff online, post items up for sale, keep an eye on your watch list!
Nothing to complain about at all for this APP!
Haven't been able to use it yet.
I have tried but it keeps asking for my user name and password and won't let me go any further.
Gets the simple jobs done, able to select and pay on the spot pretty happy with this app what else can i say?
I have the same problem on two different phones, even after several updates to the app.No matter what I do with the notifications, they never stop.
I have each individual notification type turned off, and I have the general notification toggle turned off.
It even displays a brief popup when I do this which says it is updating the settings.
And yet, the crummy bloop still keeps coming.The has been a problem since last year with a Nexus S, and now the same happens with the new Moto G (not that the phone model should have anything to do with the app's own settings).
I downloaded the ebay app because I had some specific items I wanted to look for and I wasn't at home near my desktop.
The app is well laid out and intuitive to use.
I would recommend it and find myself using the app more often than going into the office to check things out on the desktop.
For viewing and bidding the droid app is the way to go.
If I am closing in on a bid I keep laptop and tablet going but the tablet is my preference.
The slimmed down UI makes it very easy to bid, buy and get notified!
Got to love Ebay and now I have access to it on my phone and Kindle.
SImple and easy to use.
I have this installed on my Kindle device.
I'm a bit addicted to EBay so this is perfect for me.
Of course you need Ebay.
I use it a lot and is a must have for my family.
I like it on the kindle just because the size is bigger than my iphone.
Definately a plus app!
I like this app for finding car parts for both my old and new cars it's kind of fun to bid on stuff
Makes shopping on Ebay quick and easy.
It is great when you don't have your computer with you, but want to shop.
I love Ebay.
for viewing and bidding the droid app is the way to go.
Works well, no glitches.
hard to find your way around, great for a quick check of items though.
Cannot check ebay messages.
Love this app.
Now I can shop ebay without having to turn on my computer!
Since I never go anywhere w/o my Kindle I always have access to ebay.
Cannot be without the Ebay app at hand.
Love the convenience of shopping and selling on my kindle.
Great place to find "the hard to find" gifts.
This app is perfect.
I downloaded this app on my kindle fire for days I could continue to bid on items when I'm away from my computer.
I love it and I'm glad I downloaded it!
App worked great at first then it would never open and the kindle would automatically close it out with a error message.
Very simple navagation and browsing tools!
I like that a list of your activity on ebay is easy to see and manage and it doesn't move from your main search list.
Great app, convenient and its free.
Great for watching those bids and just finding special items.
A must have app.
I have been dealing with ebay for years, almost all of my transactions were great.
And the best part about it is you don't have to deal with the over populated communities that we all live in.
Ebay is easy to use and a great way to get products at good prices without driving miles and wasting hours shopping and not finding the product I am looking for.
App is ok.
You can do some basic things with it... probably should have rated it a 4, but my God do I hate ebay...
I had my items to sell listed in minutes and there was even the option of importing pictures from my phone, no need to download to my computer!
Loaded this on my HTC 8X windows phone and it does everything I expect of it.
Very ice app, thanks.
Easy to use and handy.
Log in easy, search easy.
Way better on my tablet than trying to use the web browser!
This app is great!
So much better than the website - just wish I could see my eBay Bucks balance in the app instead of having to go to the site!
This is a nice app to stay informed of new posting on ebay.
I enter the search criteria and it sends me an update if someone posts it.
I love to shop on ebay.
Now i can where ever I have my Kindle.
Makes shopping much more easier.
Both mine and my husband's most used app on our phones and tablets alike.
Very practical and helpful for anyone.
I am a first time user so I am not confident.yet.
in using my devise.But so far.
so good I'll learn.I'm only 78 so I've got plenty of time.
I find this app easy to manage my ebay listing at a glance.
I know you can do more with it but I still use the computer to list my items.
by my title need to buy means u can not buy any thing from just the enternet u need the app to buy
Online if your not a member you can just pay for ur itemAnd then who ever ships to u like your a member the app doesn't give you a choice it makes u sign inSo I was going to purchase something off my kindle but instead had to go find it on eBay on the computer because I wasn't a member
Love this app.
I use it on my Kindle fire all the time.
It is very user friendly.
I would recommend
received quickly and was exactly what I wanted.
Was watching and auction I had a bid on and was able to follow progress of sale very easily.
Simple to use.
up date made it a lot better to buy and sale only if it was a way to print shippen lable to WiFi printer ill put 5 stars kingblack2210
Makes using my Ebay account easy when I can't get to a computer.
Now I don't miss out when I get out bid
I haven't really yet had a chance to use it, but I think it will be valuable for future use
I've only used this a few times, but I have enjoyed it very much.
All i can say is try it.
This application provided exactly what I would expect from an eBay application.
You can log into the application, view and monitor bids and create new bids.
I did not attempt to perform any sales from the application, but I did check and monitor bids, and it was effective.
I haven't used it much but I like the fact that it works very much like the regular PC version.
I would recommend this app to others.
JUst like the it should be.
With this app you can now see you favorite sellers and do everything you need to do.
This app is just like being on your computer but is for your smartphone.
I go on ebay often for auctions and just to browse through a category.
I have no problem purchasing items from this app.
Easy to use especially for someone who likes to search for great deals.
I love it.
I wish the computer version had some of the same filters.Couldnt be happier I downloaded this to my Kindle.
I liked having ebay to scan and play with right at my finger tips.
easy to use!get your app now
this app allows me to do everything that the phone app allows.
which is not surpising, because they are virtually the same thing.
I love shopping on ebay this ap allow me to shop on my kindle or iPhone anywhere I go, just love it
Runs smoothly on my Kindle and syncs with my account, therefore all my devices are updated and match.The mobile version is easy to use, I haven't posted a sale with my Kindle, but I am able to monitor anything I have posted from my phone or computer, and I can easily search and bid on items without any problems.
Very convenient and easy to use.
It's easy to navigate through the different pages or selling, sold, payments, et cetera.
what's there not to like, love and want to buy!
it's easy to use & you can create your own account and make tweak it too.
This is an awesome easy to use app.
It even has a few features that the eBay web site does not.
Now I can check my ebay listings with my Kindle Fire any time I am within WiFi range!
Love the reminders, loads fast, doesn't hog memory.
Easily browse thru EBAY with all your favorite sellers and watch list.
this app is amazing it works anywhere i go and its easier then logging into a super slow computer lets go horray for awesome apps
Notifications are helpful when working with other apps.
Easy to navigate and loads quickly.
Very helpful when searching and bidding!
It has really improved my searching for various items having the app handy on both my phone and kindle fire.
I have used it many times since installing without any failures.
I like it and use it.
But I wish it had a link to the full site like the mobile version does.
I find myself having to leave the app to go to website for some things... Like customer service for example.
Understated version of the the websight.
Works well for a scaled down version.
So far no issues.
Obviously not as thorough as the main website but that's the point right?
This app makes using ebay a snap on my Kindle.
I recommend this to anyone wanting to use ebay on their Kindle.
I love E-Bay but the format is very difficult to use on the Android phone.
Nothing like using a computer.
I really wanted to like it but find it is to dissimilar to the computer format I am used to.
It is okay.
Hard to find what I am looking for with the little drop downs.
I wouldn't use it to list an item, but I would probably use it to buy and check listings.
This app is easy to navigate and a joy to use!!
It is so much better than opening a browser window and doing that way.
Does everything you need it to!
Gets my items listed fast and easy.
Highly recommended to those looking for business or even fun.
I think this is a great app.
It's very easy to use and easy to navigate.
I use this all the time.
Nice little app lets me connect to ebay with one tap of the finger.
I can check my ebay bids on my kindle whileon the computer doing something else
they have done a good job addressing earlier issues and its become easier to resubmits auctions and change prices.
I use it daily go check my auctions
Very happy with this app.
Does just what I need it to do with frequent buying and selling.
Like the notifications.
Browsing eBay is fun and easy,but on the kindle fire we are stuck using the old version even though there has been an update out for about a month in googles marketplace.
wouldn't recommend Amazons version if you are lucky enough to be able to choose.
This app makes bidding on ebay fast and easy.
It allows you to shop from any place with wifi.
It's awesome.
I'll never use the website again!
This makes it so easy to shop.
Its almost intuitive.
I am really impressed.
Love being able to check my ebay on my phone, huge convenience.
Helps to keep track of your bids.
Yes this one more of my favorite sites.
I go to it often, and with the holidays come up I suspect I'll be frequenting even more.
If u dont have a paypal account you can't buy anything.
Nothing more to say.
This teally sucks.
Makes me not want to do any ratings
Works good just like the computer version, does what it is supposed to do.
I use it all the time.
this app works great if you use ebay alot.
it is easy to naviagte and it feels like you are online at home
I love using the app instead of the website.
App works well on my Kindle fire HD and my android devices.
this is great to have...still learning how to use.
getting better...like watching auctions...and keeping track what is going on.
If you want to buy things, you don't get as many results for your searches as you would on a pc.
I do both.
So I wish they would fix the problem.
It's annoying when I want to find certain things switching between my kindle and the pc.
So far so good.
Love having Ebay so handy at all times.So easy to keep up with my bidding.
You will not be disappointed with this application.
If you want to check up on an item, at any time, this is the one for you!
Just outstanding app for eBay, own a android phone now and this app picked up where my iPhone app left off.
I downloaded this app but never opened it, forgot about it, went on eBay as I usually do.
Then I ran into a problem when I tried to buy something, my payment got hung up, could not make my purchase.
For days I spent time and money calling eBay, Paypal, the bank, all as usual pointed fingers at the other.
Long story short, this app was the problem.
Once it was downloaded from the store (never opened) it altered something and this is all I can use when dealing with eBay.
I like it, it did take some adjusting to go to this app instead of the internet, but it is a good app...so far.
The app is a lot friendlier than the site, and easy to navigate and keep track of my bids.
Requred for me as I have an ebay store and this was simple to download.
Glad they made an app for the android platform!
It is properly laid out which allows me to find and track items I have purchased.
There is also those alerts that are sent on items ordered but not paid for.
I particularly liked that feature because I had some issues earlier with items I had ordered and had difficulty completing the transaction using another app.
What can you say.
Hay it's ebay.
I needed the app and use it to compare prices with Amazon.
Only buy if it's free shipping other than that prices are kind of high at ebay.
Not sure, but I always check EBay for whatever!
E-bay has a great selection of any item you might want.
My son purchased this App for me and I'm still learning to use the Kindle with my limited time to do so.
I would say it works ok but I'm disappointed in the Kindle Fire HD, to date.
Hopefully, as I use it, my impression will change.
This app is great.
I do a lot of shopping on ebay so I love this app it is very useful.
If you shop on ebay you should get this app.
This app work really well one of the better one I've used.
Happy it came along.
If you play or work on ebay then this is one you need...
I am very happy that I can list items for sell from my phone.
It is user friendly and I have never experienced a problem or bug with the ap.
Bought a new tail light assembly for my van via ebay that I found while surfing with my kindle.
Very easy to use.
Lots of adventure and suspense, I really like Daniel Criag as James Bond 007 The bad guy played a very convincing part!
I would recommend this app.
I haven't been able to use all the features yet, but it is working good for me!
I am very satisfied with ebay.
they are reliable, honest and always on time with product they send out.Will continue to shop on ebay.AAA+++
EBay made easy.
I wish amazon could make a similar app.
Always up to date with stuff I love it
THIS APP MAKES IT SO EASY TO LOOK AT EBAY WITHOUT GETTING OUT THE BIG COMPUTER.
I LOVE EBAY ANYWAY AND BEING ABLE TO GET TO IT IN A TOUCH OF THE SCREEN IS WONDERFUL.
I LOVE MY KINDLE.
IT MAKES THING MUCH EASIER.
this app works smoothly.
I enjoy shopping on ebay and this app keeps me in touch when i am away from my computer.
this app was downloaded to kindle.
On Kindle and Android both, eBay is always a reliable shopping tool.
It has an easy interface that allows browsing items and My eBay which allows users to login access to your personal profile and items.
I'm still getting used to this app.
I think I prefer to use a desktop/laptop instead.
I just think it's easier to search than this app.
I love this App.
Especially if we are travelling I can check auctions of my husband's and that way he doesn't have to find a computer at the hotel immediately.
One wish is that the daily deals could be filtered rather one big list that you have to scroll all the way through to see if something interests you.
Great app to keep track of all purchases and watched items and it connects to PayPal, which makes it even more convenient.
It definitely helps keep track of all purchases made.
It's easier to download app then to have to go to search engines all the time.
Plus it easier to get to.
Quick and easy to view and check up on my auctions when I'm away from my computer.
Very good selection arrangement.
The app works slightly differently than the PC version.
I'll revise this review after I have used the product more.
It concerns me that items I list can't be found on the search on this app.
Fine on my computer without the app.
Plus, glitchy as far as shipping prices being reflected correctly.
Needs more work!
This app is great if you frequently buy or sell on ebay.
It times out a lot though which is really irritating
quick and easy when u need it,thats what apps are for quick to get in and out.its great fun for all.
Simple application to select, install and use,Puts e-bay at your fingertips.
It makes your phone or tablet a tool for accessing your account.
It was easy to download and install.
Works well on my Kindle Fire.
I have yet to have a glitch with it.
Simple to use .
Has all the important features of the classic site.
I tried an earlier version and this has been debugged.
Love this app.
Just got a laptop thinking I'd use it for eBay instead of the tablet.
Tried it, but seem to have an easier time with the app.
Will probably go back and forth, but the app is great for checking, searching, etc.
Title says it all.
Text is extremely small on 10" tablet, almost unreadable.
Very few options.
Very limited use on 10" tablet.
I especially love the way it handles my searches where it remembers what I have previously viewed on each search list.
Great way to navigate eBay on my Kindle Fire HD.
Able to enlarge item photos and further zoom to see every detail.
So convenient and easy to use.
The best and easiest way to peruse Ebay simple to use and well put together.
I like it better than the webpage.
This application used to work - now with last 3 "updates" it will not connect to the network.
I even contacted eBay.
The answer... Yes, it is a known issue and we are working on it, but it could take up to 90 days to fix... Maybe.
What a mess!
Good time killer while I am at work.
I can see what deals I can find while I am on lunch and break...
I sell prints on eBay as well as other objects and it is very nice to get immediate notifications when something sells or when a buyer/potential buyer has a question!
Their mobile site seems to be missing some options for sorting that this app has.
I use the app instead of their mobile site.
Love my app.
So easy to take care of business!
I like being on the run and still have access to my business.
I just started using this app and so far so good.
I like that it notifies you if you have won an item and/or have been outbid on an item.
Very convenient app for ebay on a smartphone.
Very well organized and easy to use.
All the options you would want in is self-explanatory.
Good app to conect all
Best app in world
Finally web version available.
This app need a dark theme, too much white is killing my eyes.
Please add a dark theme :(
At the play store version.
Calling feature not working in my phone moto g 1st gen.
Keeps me connected
Updated whats app but could not get voice calling option.
Many of my friends are able to make a voice call facility.
y not me.
Whatsapp+ is more awesome
Make it movable to sd card
awesome just superb app i love it
Works as said, doesn't slow down the system
Is this true that the updated version of whatsapp will provide us video calling n likes & comments features???
Thanks to all what's app team member's, and i using for whtsap 2011 it's so nice app.
What's up plus awesome
No calling option,tried every possible method,but no luck
So many bugs.force crashes and messages cannot be sent.
I can not update my status nor change my dp what is going on
Loved this app
This app is class, not much else to say.
Animated gifs perhaps?
Video calling would be 5* material, hopefully that's next!
Need to be login & log out feature for security reason or password option
Sometimes takes too long to respond
Its simply amazing to use.
Please Improve Stickers
Conect to all friends
I have it texting is free
Very simple application...
Almost each and everyone who uses a smart phone, use this app it's just awesome
Its to good to connect with friends
Everything about it.
Free for a year then 60p a year after that and NO CATCH.
I definitely recommend you to download this app n try it fer yersrlves.
I have so much fun with my dude n ho's sending voice messages songs videos n pictures.
Viber,Snapchat Facebook etc got nothing on whatsapp.
The only downside for me ( using a sony experia E1) is that my media saves to my phone not my sd card n there's no option to change it like there wae with the older version on my blackberry.
All required issues have been resolved... Really looking forward to have whatsapp calling working...
It says it that my phone time is inccorrect
Very much time consuming specially when the time of installation
Its stupid...15 20 apps got updated last night and whatsapp kept prompting not sufficient space....wtf is that...
Hy guyz hlp me ma whatsapp expired nau i cant download it coz it kip on having sum errors
My whatsapp suddenly doesn't respond and a box I think that says'its not responding wanna close it' appears.
So I select yes and all my chat history is gone and im kicked out of my chat grps.
Can I cry ㅠ.ㅠDo you even read our reviews.
So nic whataapp now update
There is a better one than this u have whatsapp but
The name always appeared as numbers.
Gladys But is showing as 9... ...0
It's suck so much
A generous innovation
Its really nice.
I love it
Suits and fulfills my work
...I going to use a lot for work
This application is great
Must to uninstall then reinstall
Awesome aapp fast chatting
I would have rated 5 if there would have been a send option to multiple users...
Nice what'app
Voice messaging giving problems for some strange reason when you access voice message screen.
turns black and the volume is soo low that you have to listen to it on the ear piece and not loud speaker pls pls fix sending updates and still same problem pls fix
It's very good app
I can't get access to my profile .
please show me how to do that
I like this app get messages and pic just fine
I do love the app, but it was causing my phone to constantly power cycle.
Please fix so I can reinstall.
This is good
Awesome one, love it...
Calling voice not clear
Itz main problem is slow downloading new version of whtsap, it tk lot of time for download, aft oll if we see Thn whtsap is vgd, itz fastest nd easiest for conveying our mes as well as picz etc.
I wl gv full stars when it tkes less time for download
I'm not gettig the service of free call after updating it if I didn't got it soon I'm surely going to stop using whatsapp and uninstall it
When someone tries to view profile picture then it lags and full picture is not displayed even after scrolling down.
Which was very smooth until last update.
After upload I cant see caling option on my phone.pls solve my problem
Iam not able to open the others profile pics.....!!!!
In the latest version......wats the f..
Great Messaging and Great Images Sharing
Why I cannot call on whatsapp?
Unable to get it for my mi4i.....
It says error 927...pls resolve issue.
The best way of love
New Update made it possible to deduct 2 stars...
All of my archives and all of my messages just disappeared.
And there were sentimental keepsakes in there.
So screw you and whatever bug that caused this.
The app has crashed and after reinstalling it is not allowing me to register againg.
Shows connection error where as my wifi is working properly.
Very bad...please sort it out asap.
Calling is not actived
WO"W"hats "A"pp Good app but more asept thank you for whats spp maneger
I like this app
Easy to msj n col video to friends n family.
Good but previous versions UI was better ...
Its good but need some inputs
So nice this apss
I can't update the latest version what the hell?!
I have a large group of my friends.
Am in luv with this App
This app is nice but a problem always create later 3-4 months it have to redownload /update
Nice new functions
It now shows plenty of notifications whether they've been read or not
I love it too much
Wonderful easy and effective.
And enjoying the new call system
Have been trying for 24 hours to download app but it keeps saying cannot download due to error!?
Hey ajay is my relative
Like but why no calling
The update is crap it hangs alot
Must have app...
Back cool but hale and ehm
Just couldn't say anything except WOW
I will give only one star.
Can't live without it
Fix to send some pdf file
I give 5star bcoz i love whatsapp but sometimes it hangs in my htc mobile!!!
I cant download need SMS Plan and im using temporary phone still cant download WhatsApp
No calling option...
Just an idea if you maybe can make it happen dev.
I'm thinking that it would be better if you can expand the chat list.
Now, it only show 2 lines of information (line1: name, line2: last message).
See if you can make it to 3 lines of information (line1: name, line2: person's status, line3: last message).
I think it would be great, since it would be great to know what people thinking and start the talking based on that.
super using this
Nice for chatting
Its an awsome app... but it would be an more awsome if it had callin feature....am eagerly waiting for it
I've updated few days ago.
There is something wrong with this update.
I'm not getting notifications properly.
Please fix this and I' ll give you a high 5!!
Cheerio till then :)
Its very nice that it keeps people in touch who are far away from each other but it is also a distraction from other things !!
So only three stars !
Permission should be asked before downloading media instead of downloading by itself.
And if larger files could be transferred like over 50 mb then it would be great
I loved it
This app Is still installing
You need to prefix 0 to dial a phone number if it is an inter state call.
But then the contact won't show up in Whatsapp unless u add +91.
plz add stickers also like hike.
Then it will be more fun.
just updated n got whatsapp calling option...called thru wifi but unable to hear second party....then i received one call i answered still same prob....i checked with my friends here in uae and india all r facing same prob plz fix it.
Just stick to your whatsapp because it's really cool.
Just this update thing I hate it.
Works perfectly saves plenty money is just unbiliveble AMAZING TOP TOP 10
No new update
Best app but not a calling system
Please update app as It cannot be updated on Samsung galaxy S3 for voice calls.
ILL RATE IT 5...
This is xlent app.
frnds...every one should must install in your phone .
I love what SAP
Please launch Beta version.
& When will launch downloading whatsapp in memory card.
Packers and Movers Indore
I can call family in texas and Mexico.
Great chat block and talk hu
Plz...........download it fast
Whatever you guys do whatsapp + stays better unless you cooperate with whatsapp + team or at least put all whatsapp + features and options in your app...if it wasn't necessary for my work I wouldn't have downloaded the normal whatsapp since its not rich in options like its 3rd party brother brother was
Like the new calling option but a ridiculous place to put the button as keep pressing by mistake when trying to send a photo or video!
Needs repositioning ASAP!
where my whatsapp.
kmk dah install whatsapp...tapi xpat
It is a very good.
if you don't have this in your library for apps then you need to get it today is one app that I would get.
To be honest I would tell everybody I know to get it to complete their movie experience!!!!
out of no where the video will freeze up for a few minutes then after that it will force close.
I have to go through that a couple of times but other than that it is very great (:
awesome app but first you have to log out and in but still awesome app you should get it it is great
I have been a member of Netflix for several years.
I enjoy the service and they have an excellent selection and wide variety of movies and shows.
I haven't really used this yet, I have been just streaming free shows and movies from my kindle fire.
We shall see.
i love netflex it is.awesome it works VERY well i love.it i watch all my.movies.nd.shows on this.its better than red box or hulu but tht is my opinion
Love it Love it.
Did I say I love.
I got a Roku1 and watched a couple things on my 50 inch screen TV.
That was great.
I did have it free on my once during a movie.
I checked the internet connection, which was fine and it restarted ok.