market_bot 0.17.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -1
  3. data/Guardfile +70 -0
  4. data/README.markdown +45 -95
  5. data/Rakefile +0 -89
  6. data/bin/app_categories +17 -0
  7. data/bin/benchmark_parser_app +24 -0
  8. data/bin/console +14 -0
  9. data/bin/setup +7 -0
  10. data/bin/update_test_data +30 -0
  11. data/lib/market_bot.rb +20 -15
  12. data/lib/market_bot/exceptions.rb +2 -1
  13. data/lib/market_bot/play/app.rb +188 -0
  14. data/lib/market_bot/play/app/constants.rb +33 -0
  15. data/lib/market_bot/play/chart.rb +118 -0
  16. data/lib/market_bot/play/chart/constants.rb +74 -0
  17. data/lib/market_bot/play/constants.rb +7 -0
  18. data/lib/market_bot/play/developer.rb +32 -0
  19. data/lib/market_bot/util.rb +17 -0
  20. data/lib/market_bot/version.rb +1 -1
  21. data/market_bot.gemspec +6 -3
  22. data/spec/market_bot/play/app_spec.rb +201 -0
  23. data/spec/market_bot/play/chart_spec.rb +126 -0
  24. data/spec/market_bot/play/data/app-com.bluefroggaming.popdat.txt +99 -0
  25. data/spec/market_bot/play/data/app-com.mg.android.txt +103 -0
  26. data/spec/market_bot/play/data/chart-topselling_paid-GAME_ARCADE-0.txt +97 -0
  27. data/spec/market_bot/play/data/chart-topselling_paid-GAME_ARCADE-1.txt +97 -0
  28. data/spec/market_bot/play/data/chart-topselling_paid-GAME_ARCADE-2.txt +97 -0
  29. data/spec/market_bot/play/data/chart-topselling_paid-GAME_ARCADE-3.txt +97 -0
  30. data/spec/market_bot/play/data/chart-topselling_paid-GAME_ARCADE-4.txt +97 -0
  31. data/spec/market_bot/play/data/chart-topselling_paid-GAME_ARCADE-5.txt +97 -0
  32. data/spec/market_bot/play/data/chart-topselling_paid-GAME_ARCADE-6.txt +97 -0
  33. data/spec/market_bot/play/data/chart-topselling_paid-GAME_ARCADE-7.txt +97 -0
  34. data/spec/market_bot/play/data/developer-zynga.txt +97 -0
  35. data/spec/market_bot/play/developer_spec.rb +52 -0
  36. data/spec/market_bot_spec.rb +14 -0
  37. data/spec/spec_helper.rb +5 -11
  38. metadata +57 -52
  39. data/NOTES.txt +0 -61
  40. data/lib/market_bot/android/app.rb +0 -273
  41. data/lib/market_bot/android/developer.rb +0 -32
  42. data/lib/market_bot/android/leaderboard.rb +0 -232
  43. data/lib/market_bot/android/leaderboard/constants.rb +0 -59
  44. data/lib/market_bot/android/search_query.rb +0 -35
  45. data/lib/market_bot/movie/leaderboard.rb +0 -167
  46. data/lib/market_bot/movie/leaderboard/constants.rb +0 -30
  47. data/lib/market_bot/movie/search_query.rb +0 -32
  48. data/spec/market_bot/android/app_spec.rb +0 -253
  49. data/spec/market_bot/android/data/app_1.txt +0 -99
  50. data/spec/market_bot/android/data/app_2.txt +0 -100
  51. data/spec/market_bot/android/data/app_3.txt +0 -103
  52. data/spec/market_bot/android/data/app_4.txt +0 -117
  53. data/spec/market_bot/android/data/developer-zynga.txt +0 -97
  54. data/spec/market_bot/android/data/leaderboard-apps_editors_choice.txt +0 -97
  55. data/spec/market_bot/android/data/leaderboard-apps_topselling_paid-page1.txt +0 -97
  56. data/spec/market_bot/android/data/leaderboard-apps_topselling_paid-page2.txt +0 -97
  57. data/spec/market_bot/android/data/leaderboard-apps_topselling_paid-page3.txt +0 -97
  58. data/spec/market_bot/android/data/leaderboard-apps_topselling_paid-page4.txt +0 -97
  59. data/spec/market_bot/android/developer_spec.rb +0 -57
  60. data/spec/market_bot/android/leaderboard_spec.rb +0 -140
  61. data/spec/market_bot/android/search_query_spec.rb +0 -6
  62. data/spec/market_bot/movie/data/leaderboard-movies_comedy_topselling_paid.txt +0 -327
  63. data/spec/market_bot/movie/leaderboard_spec.rb +0 -67
@@ -1,30 +0,0 @@
1
- module MarketBot
2
- module Movie
3
-
4
- class Leaderboard
5
- IDENTIFIERS = [
6
- :topselling_paid,
7
- :topselling_paid_show
8
- ]
9
-
10
- CATEGORIES = [
11
- :action_and_adventure,
12
- :animation,
13
- :classics,
14
- :comedy,
15
- :crime,
16
- :documentary,
17
- :drama,
18
- :family,
19
- :horror,
20
- :independent,
21
- :indian_cinema,
22
- :music,
23
- :sci_fi_and_fantasy,
24
- :short_films,
25
- :sports,
26
- :world_cinema
27
- ]
28
- end
29
- end
30
- end
@@ -1,32 +0,0 @@
1
- module MarketBot
2
- module Movie
3
- class SearchQuery < MarketBot::Movie::Leaderboard
4
- def initialize(query, options={})
5
- super(query, nil, options)
6
- end
7
-
8
- def market_urls(options={})
9
- results = []
10
-
11
- min_page = options[:min_page] || 1
12
- max_page = options[:max_page] || 25
13
- country = options[:country] || 'us'
14
-
15
- (min_page..max_page).each do |page|
16
- start_val = (page - 1) * 24
17
-
18
- url = "https://play.google.com/store/search?"
19
- url << "q=#{URI.escape(identifier)}&"
20
- url << "c=movies&start=#{start_val}&"
21
- url << "gl=#{country}&"
22
- url << "num=24&hl=en"
23
-
24
- results << url
25
- end
26
-
27
- results
28
- end
29
- end
30
- end
31
- end
32
-
@@ -1,253 +0,0 @@
1
- require File.expand_path(File.dirname(__FILE__) + '../../../spec_helper')
2
-
3
- include MarketBot::Android
4
-
5
- test_id = 'com.bluefroggaming.popdat'
6
- test_src_data = read_file(File.dirname(__FILE__), 'data', 'app_1.txt')
7
- test_src_data2 = read_file(File.dirname(__FILE__), 'data', 'app_2.txt')
8
- test_src_data3 = read_file(File.dirname(__FILE__), 'data', 'app_3.txt')
9
- test_src_data4 = read_file(File.dirname(__FILE__), 'data', 'app_4.txt')
10
-
11
- def check_getters(app)
12
- it 'should populate the getters' do
13
- app.title.should == 'Pop Dat'
14
- app.rating.should == '4.7'
15
- app.updated.should == 'August 26, 2011'
16
- app.current_version.should == '1.0'
17
- app.requires_android.should == '2.2 and up'
18
- app.category.should == 'Arcade'
19
- app.category_url.should == 'GAME_ARCADE'
20
- app.installs.should == '500 - 1,000'
21
- app.size.should == '9.0M'
22
- app.price.should == '0'
23
- app.content_rating.should == 'Unrated'
24
- app.description.should =~ /^<div.*?>An action-packed blend of split-second skill and luck-based gameplay!/
25
- app.votes.should == '11'
26
- app.more_from_developer.should == [{:app_id=>"com.bluefroggaming.ghost_chicken"}]
27
- app.users_also_installed.should == [{:app_id=>"si.custom.snake"}]
28
- app.related.should == [{:app_id=>"si.custom.snake"}]
29
- app.banner_icon_url.should == 'https://lh3.ggpht.com/e6QqjMM9K__moeCm2C5HRb0SmGX0XqzhnhiE1MUx8MdNVdQbQW9rhFX_qmtbtBxHAa0=w300'
30
- app.banner_image_url.should == 'https://lh3.ggpht.com/e6QqjMM9K__moeCm2C5HRb0SmGX0XqzhnhiE1MUx8MdNVdQbQW9rhFX_qmtbtBxHAa0=w300'
31
- app.website_url.should == 'http://bluefroggaming.com'
32
- app.email.should == 'support@hdgames.zendesk.com'
33
- app.screenshot_urls.should == ["https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h310", "https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h310", "https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h310", "https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h310", "https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h310", "https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h310"]
34
- app.full_screenshot_urls.should == ["https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h900", "https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h900", "https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h900", "https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h900", "https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h900", "https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h900"]
35
- app.whats_new.should == nil
36
- #app.permissions.should == [{:security=>"dangerous", :group=>"Network communication", :description=>"full Internet access", :description_full=>"Allows the app to create network sockets."}, {:security=>"dangerous", :group=>"Phone calls", :description=>"read phone state and identity", :description_full=>"Allows the app to access the phone features of the device. An app with this permission can determine the phone number and serial number of this phone, whether a call is active, the number that call is connected to and the like."}, {:security=>"safe", :group=>"Network communication", :description=>"view network state", :description_full=>"Allows the app to view the state of all networks."}]
37
- # Stubbing out for now, can't find them in the redesigned page.
38
- app.permissions.should == []
39
-
40
- app.rating_distribution.should == {5=>10, 4=>0, 3=>0, 2=>1, 1=>0}
41
- app.html.class.should == String
42
- end
43
- end
44
-
45
- describe 'App' do
46
- context 'Construction' do
47
- it 'should copy the app_id param' do
48
- app = App.new(test_id)
49
- app.app_id.should == test_id
50
- end
51
-
52
- it 'should copy optional params' do
53
- hydra = Typhoeus::Hydra.new
54
- app = App.new(test_id, :hydra => hydra)
55
- app.hydra.should equal(hydra)
56
- end
57
- end
58
-
59
- it 'should generate market URLs' do
60
- App.new(test_id).market_url.should == "https://play.google.com/store/apps/details?id=#{test_id}&hl=en"
61
- end
62
-
63
- context 'Parsing' do
64
- it 'should populate a hash with the correct keys/values' do
65
- result = App.parse(test_src_data)
66
-
67
- result[:title].should == 'Pop Dat'
68
- result[:rating].should == '4.7'
69
- result[:updated].should == 'August 26, 2011'
70
- result[:current_version].should == '1.0'
71
- result[:requires_android].should == '2.2 and up'
72
- result[:category].should == 'Arcade'
73
- result[:category_url].should == 'GAME_ARCADE'
74
- result[:installs].should == '500 - 1,000'
75
- result[:size].should == '9.0M'
76
- result[:price].should == '0'
77
- result[:content_rating].should == 'Unrated'
78
- result[:description].should =~ /An action-packed blend of split-second/
79
- result[:votes].should == '11'
80
- result[:developer].should == 'Blue Frog Gaming'
81
- result[:banner_icon_url].should == 'https://lh3.ggpht.com/e6QqjMM9K__moeCm2C5HRb0SmGX0XqzhnhiE1MUx8MdNVdQbQW9rhFX_qmtbtBxHAa0=w300'
82
- result[:website_url].should == 'http://bluefroggaming.com'
83
- result[:email].should == 'support@hdgames.zendesk.com'
84
- result[:screenshot_urls].should == ["https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h310", "https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h310", "https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h310", "https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h310", "https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h310", "https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h310"]
85
- result[:full_screenshot_urls].should == ["https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h900", "https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h900", "https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h900", "https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h900", "https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h900", "https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h900"]
86
- result[:whats_new].should == nil
87
- #result[:permissions].should == [{:security=>"dangerous", :group=>"Network communication", :description=>"full Internet access", :description_full=>"Allows the app to create network sockets."}, {:security=>"dangerous", :group=>"Phone calls", :description=>"read phone state and identity", :description_full=>"Allows the app to access the phone features of the device. An app with this permission can determine the phone number and serial number of this phone, whether a call is active, the number that call is connected to and the like."}, {:security=>"safe", :group=>"Network communication", :description=>"view network state", :description_full=>"Allows the app to view the state of all networks."}]
88
- # Stubbing out for now, can't find them in the redesigned page.
89
- result[:permissions].should == []
90
- result[:rating_distribution].should == {5=>10, 4=>0, 3=>0, 2=>1, 1=>0}
91
- result[:html].should == test_src_data
92
-
93
- result
94
- end
95
-
96
- it 'should populate a hash with the correct keys/values' do
97
- result = App.parse(test_src_data2)
98
-
99
- result[:title].should == 'Evernote - stay organized.'
100
- result[:rating].should == '4.6'
101
- result[:updated].should == 'May 5, 2016'
102
- result[:current_version].should == 'Varies with device'
103
- result[:requires_android].should == 'Varies with device'
104
- result[:category].should == 'Productivity'
105
- result[:category_url].should == 'PRODUCTIVITY'
106
- result[:size].should == 'Varies with device'
107
- result[:price].should == '0'
108
- result[:content_rating].should == 'Everyone'
109
- result[:description].should =~ /New York Times/
110
- result[:votes].should == '1390801'
111
- result[:developer].should == 'Evernote Corporation'
112
- result[:installs].should == "100,000,000 - 500,000,000"
113
- result[:banner_icon_url].should == 'https://lh3.googleusercontent.com/atqaMgabx_ZXVi4AJUcDiHTy-G3nwMAGsjoCsfpebwPjXMV_QXTPefko7Wbwen-EnUo=w300'
114
- result[:banner_image_url].should == 'https://lh3.googleusercontent.com/atqaMgabx_ZXVi4AJUcDiHTy-G3nwMAGsjoCsfpebwPjXMV_QXTPefko7Wbwen-EnUo=w300'
115
- result[:website_url].should == 'http://evernote.com/privacy/'
116
- result[:email].should == 'appstore-evernote-android@evernote.com'
117
- result[:screenshot_urls].should == ["https://lh3.googleusercontent.com/AkEKnkvCyM6e-FS5RT5DExb56uCUDc1S0cc3sI4IORrJAT-HTLQz-jPu8whw-BL5oA=h310", "https://lh3.googleusercontent.com/qGb8MRDdS4T5pCepmVDWUy7si-fNddvsGLaF3rPYXlB89FjYa_on4VBp-8xPIKq5Qk9C=h310", "https://lh3.googleusercontent.com/N2IqJKGd9-pgW0HgRQhoSA9UNXZFV4OYVIv7l8mhyNmZESVGEywiXviU4OoMbeDqPg=h310", "https://lh3.googleusercontent.com/FfN8xU2ePAfgOCWIyBf-qkYKWk-ALKOwq0Y3F65NutRLF6YrrV-K2udP6xXP2k5PIRE=h310", "https://lh3.googleusercontent.com/9npD1H7xz7NwtyfM9cCOTaYSpqaXQMAWJGYh13q4_F1Kz1TfyWkz9ba0yWc6r6Wwbi8=h310", "https://lh3.googleusercontent.com/InW32sC2LFGHK3gqMT4rTYvu0XqR3ZBPE21Gsp2HAu3O5ilYG1Gi2t3klF_8_OPwQYM=h310", "https://lh3.googleusercontent.com/FX59DjcMqjEj01oGatPAQPZxXuD8A8xVYtpeArc1ECRcLueVJNHykTKw4TgnJSMPpzI=h310", "https://lh3.googleusercontent.com/fYrp0ou-qf5P-LXmUx6w54buL_WO3P4zaa68ULGP98zQirZr68PDdICQfq8bxmRoAA=h310", "https://lh3.googleusercontent.com/fg_VM5xXZqfr8npJm7Cc64Tf5N2Pb-lNkt88y2kjb_gObfXh1vbB9LA_jFYpyi2nxvFa=h310", "https://lh3.googleusercontent.com/-sYE4X1Ua6hM0TwBeZJf6OqT-8OZTI8lZx9TEbgnBlpIdoomaBORAoOqYii2a7FV6g=h310", "https://lh3.googleusercontent.com/pI8Gcd_S3gyVRlztODJ8rdZYD6sD1k36tbrvd4yY0n3vCU6_GCKIn-XyNiE3l1oDf-A=h310", "https://lh3.googleusercontent.com/GoDuyxtSwVzL6GAtT8O9JzV2ulaOFbUTHV0fQtMCrpLrxek4dsUzahnPs0eAd0-YC05z=h310", "https://lh3.googleusercontent.com/pGAi_1d2FlXhwJggTJFm_23pmhRmiGdBngjxmIiHUAwFYzrPizkZyxE7Srq_WzBs-Fpy=h310", "https://lh3.googleusercontent.com/85hsOFhv0fTSTxLmgRTEIdg5m8jFFnbMVcwWKzkeHxQ7MxaTpvdBkEcobteiEnZbGwI=h310", "https://lh3.googleusercontent.com/yNsucoQ93ZCDHSocqcPbvKL9J1KHruCvkzgpbqZwoXFX_cWQsHc81PR2kNemT6hBlw=h310", "https://lh3.googleusercontent.com/aIOqnxGnBOrJGqrSNFpay91nRdwcDXjbX1iQiY4Oepf3VUwqxFyCgD6GKauJ5LD0VA=h310", "https://lh3.googleusercontent.com/Ve7cJfhPpwMxeK350SAfYqCX9wbjdvtTgFb51cJI_IIBy-ciqrSh12XA3BAB-zWmaX4=h310", "https://lh3.googleusercontent.com/JKxZgzgcMX6B2UjuwHU3fFH20aqM6oBjdaugW_NRPinu1VL28Zsb0tOFmRLcg3hI2U8=h310", "https://lh3.googleusercontent.com/Y5V6rb-0fib5I4hufNdY5sSUE_ygvQNy2KO-PcGAR2xh5ciPrcbc3yLoWe-2blIQvw=h310", "https://lh3.googleusercontent.com/Onf1DjVvgdpmue7R8TtZ56wM3SNOD_VCxGshZX1hPnLHpMA7l6n3fQWXva7U7qjdy5ya=h310", "https://lh3.googleusercontent.com/gZCFLqggz9SCqzObmTQw_xXfBv9N7iXiEqUp2iHYwaqFBmpmgTYOaRllCF5VVGLkg0g=h310", "https://lh3.googleusercontent.com/VAYeCD2aIkR-EcF1-48ViOg0ZdYVAC-YU3wIVnDkp7GtxZh3tnv7rDRh_Fvtj-jM098g=h310", "https://lh3.googleusercontent.com/yj50UFheAT_1ZOvZGUOs8VjL6499391RB_x5LUNfpPW2enUcm_Lt95Bcih_AJ8VzpHI=h310", "https://lh3.googleusercontent.com/JO_h9TGYQOqyzCLhIWlLVkzF2DZc1Ib1kIOxg0WVIcH0tOuKPLQApxMxTywChqCa2A=h310"]
118
- result[:full_screenshot_urls].should == ["https://lh3.googleusercontent.com/AkEKnkvCyM6e-FS5RT5DExb56uCUDc1S0cc3sI4IORrJAT-HTLQz-jPu8whw-BL5oA=h900", "https://lh3.googleusercontent.com/qGb8MRDdS4T5pCepmVDWUy7si-fNddvsGLaF3rPYXlB89FjYa_on4VBp-8xPIKq5Qk9C=h900", "https://lh3.googleusercontent.com/N2IqJKGd9-pgW0HgRQhoSA9UNXZFV4OYVIv7l8mhyNmZESVGEywiXviU4OoMbeDqPg=h900", "https://lh3.googleusercontent.com/FfN8xU2ePAfgOCWIyBf-qkYKWk-ALKOwq0Y3F65NutRLF6YrrV-K2udP6xXP2k5PIRE=h900", "https://lh3.googleusercontent.com/9npD1H7xz7NwtyfM9cCOTaYSpqaXQMAWJGYh13q4_F1Kz1TfyWkz9ba0yWc6r6Wwbi8=h900", "https://lh3.googleusercontent.com/InW32sC2LFGHK3gqMT4rTYvu0XqR3ZBPE21Gsp2HAu3O5ilYG1Gi2t3klF_8_OPwQYM=h900", "https://lh3.googleusercontent.com/FX59DjcMqjEj01oGatPAQPZxXuD8A8xVYtpeArc1ECRcLueVJNHykTKw4TgnJSMPpzI=h900", "https://lh3.googleusercontent.com/fYrp0ou-qf5P-LXmUx6w54buL_WO3P4zaa68ULGP98zQirZr68PDdICQfq8bxmRoAA=h900", "https://lh3.googleusercontent.com/fg_VM5xXZqfr8npJm7Cc64Tf5N2Pb-lNkt88y2kjb_gObfXh1vbB9LA_jFYpyi2nxvFa=h900", "https://lh3.googleusercontent.com/-sYE4X1Ua6hM0TwBeZJf6OqT-8OZTI8lZx9TEbgnBlpIdoomaBORAoOqYii2a7FV6g=h900", "https://lh3.googleusercontent.com/pI8Gcd_S3gyVRlztODJ8rdZYD6sD1k36tbrvd4yY0n3vCU6_GCKIn-XyNiE3l1oDf-A=h900", "https://lh3.googleusercontent.com/GoDuyxtSwVzL6GAtT8O9JzV2ulaOFbUTHV0fQtMCrpLrxek4dsUzahnPs0eAd0-YC05z=h900", "https://lh3.googleusercontent.com/pGAi_1d2FlXhwJggTJFm_23pmhRmiGdBngjxmIiHUAwFYzrPizkZyxE7Srq_WzBs-Fpy=h900", "https://lh3.googleusercontent.com/85hsOFhv0fTSTxLmgRTEIdg5m8jFFnbMVcwWKzkeHxQ7MxaTpvdBkEcobteiEnZbGwI=h900", "https://lh3.googleusercontent.com/yNsucoQ93ZCDHSocqcPbvKL9J1KHruCvkzgpbqZwoXFX_cWQsHc81PR2kNemT6hBlw=h900", "https://lh3.googleusercontent.com/aIOqnxGnBOrJGqrSNFpay91nRdwcDXjbX1iQiY4Oepf3VUwqxFyCgD6GKauJ5LD0VA=h900", "https://lh3.googleusercontent.com/Ve7cJfhPpwMxeK350SAfYqCX9wbjdvtTgFb51cJI_IIBy-ciqrSh12XA3BAB-zWmaX4=h900", "https://lh3.googleusercontent.com/JKxZgzgcMX6B2UjuwHU3fFH20aqM6oBjdaugW_NRPinu1VL28Zsb0tOFmRLcg3hI2U8=h900", "https://lh3.googleusercontent.com/Y5V6rb-0fib5I4hufNdY5sSUE_ygvQNy2KO-PcGAR2xh5ciPrcbc3yLoWe-2blIQvw=h900", "https://lh3.googleusercontent.com/Onf1DjVvgdpmue7R8TtZ56wM3SNOD_VCxGshZX1hPnLHpMA7l6n3fQWXva7U7qjdy5ya=h900", "https://lh3.googleusercontent.com/gZCFLqggz9SCqzObmTQw_xXfBv9N7iXiEqUp2iHYwaqFBmpmgTYOaRllCF5VVGLkg0g=h900", "https://lh3.googleusercontent.com/VAYeCD2aIkR-EcF1-48ViOg0ZdYVAC-YU3wIVnDkp7GtxZh3tnv7rDRh_Fvtj-jM098g=h900", "https://lh3.googleusercontent.com/yj50UFheAT_1ZOvZGUOs8VjL6499391RB_x5LUNfpPW2enUcm_Lt95Bcih_AJ8VzpHI=h900", "https://lh3.googleusercontent.com/JO_h9TGYQOqyzCLhIWlLVkzF2DZc1Ib1kIOxg0WVIcH0tOuKPLQApxMxTywChqCa2A=h900"]
119
- result[:whats_new].should =~ /What's New/
120
- #result[:permissions].should == [{:security=>"dangerous", :group=>"Hardware controls", :description=>"record audio", :description_full=>"Allows the app to access the audio record path."}, {:security=>"dangerous", :group=>"Hardware controls", :description=>"take pictures and videos", :description_full=>"Allows the app to take pictures and videos with the camera. This allows the app at any time to collect images the camera is seeing."}, {:security=>"dangerous", :group=>"Your location", :description=>"coarse (network-based) location", :description_full=>"Access coarse location sources such as the cellular network database to determine an approximate tablet location, where available. Malicious apps may use this to determine approximately where you are. Access coarse location sources such as the cellular network database to determine an approximate phone location, where available. Malicious apps may use this to determine approximately where you are."}, {:security=>"dangerous", :group=>"Your location", :description=>"fine (GPS) location", :description_full=>"Access fine location sources such as the Global Positioning System on the tablet, where available. Malicious apps may use this to determine where you are, and may consume additional battery power. Access fine location sources such as the Global Positioning System on the phone, where available. Malicious apps may use this to determine where you are, and may consume additional battery power."}, {:security=>"dangerous", :group=>"Network communication", :description=>"full Internet access", :description_full=>"Allows the app to create network sockets."}, {:security=>"dangerous", :group=>"Your personal information", :description=>"read contact data", :description_full=>"Allows the app to read all of the contact (address) data stored on your tablet. Malicious apps may use this to send your data to other people. Allows the app to read all of the contact (address) data stored on your phone. Malicious apps may use this to send your data to other people."}, {:security=>"dangerous", :group=>"Your personal information", :description=>"read sensitive log data", :description_full=>"Allows the app to read from the system's various log files. This allows it to discover general information about what you are doing with the tablet, potentially including personal or private information. Allows the app to read from the system's various log files. This allows it to discover general information about what you are doing with the phone, potentially including personal or private information."}, {:security=>"dangerous", :group=>"Your personal information", :description=>"read calendar events plus confidential information", :description_full=>"Allows the app to read all calendar events stored on your tablet, including those of friends or coworkers. Malicious apps may extract personal information from these calendars without the owners' knowledge. Allows the app to read all calendar events stored on your phone, including those of friends or coworkers. Malicious apps may extract personal information from these calendars without the owners' knowledge."}, {:security=>"dangerous", :group=>"Phone calls", :description=>"read phone state and identity", :description_full=>"Allows the app to access the phone features of the device. An app with this permission can determine the phone number and serial number of this phone, whether a call is active, the number that call is connected to and the like."}, {:security=>"dangerous", :group=>"Storage", :description=>"modify/delete USB storage contents modify/delete SD card contents", :description_full=>"Allows the app to write to the USB storage. Allows the app to write to the SD card."}, {:security=>"dangerous", :group=>"System tools", :description=>"prevent tablet from sleeping prevent phone from sleeping", :description_full=>"Allows the app to prevent the tablet from going to sleep. Allows the app to prevent the phone from going to sleep."}, {:security=>"safe", :group=>"Your accounts", :description=>"discover known accounts", :description_full=>"Allows the app to get the list of accounts known by the tablet. Allows the app to get the list of accounts known by the phone."}, {:security=>"safe", :group=>"Hardware controls", :description=>"control vibrator", :description_full=>"Allows the app to control the vibrator."}, {:security=>"safe", :group=>"Network communication", :description=>"view network state", :description_full=>"Allows the app to view the state of all networks."}, {:security=>"safe", :group=>"Network communication", :description=>"view Wi-Fi state", :description_full=>"Allows the app to view the information about the state of Wi-Fi."}, {:security=>"safe", :group=>"Default", :description=>"Market billing service", :description_full=>"Allows the user to purchase items through Market from within this application"}]
121
- # Stubbing out for now, can't find them in the redesigned page.
122
- result[:permissions].should == []
123
- result[:rating_distribution].should == {5=>1009112, 4=>280079, 3=>51367, 2=>17062, 1=>32966}
124
- result[:html].should == test_src_data2
125
- end
126
-
127
- it 'should populate a hash with the correct keys/values' do
128
- result = App.parse(test_src_data3)
129
-
130
- result[:title].should == 'WeatherPro'
131
- result[:updated].should == "March 4, 2016"
132
- result[:current_version].should == "4.5.1"
133
- result[:requires_android].should == '2.3 and up'
134
- result[:category].should == 'Weather'
135
- result[:category_url].should == 'WEATHER'
136
- result[:size].should == '11M'
137
- result[:price].should == '$2.99'
138
- result[:content_rating].should == 'Everyone'
139
- result[:description].should =~ /^.*WeatherPro has been created by MeteoGroup,/
140
- result[:developer].should == 'MeteoGroup'
141
- result[:rating].should == '4.3'
142
- result[:votes].should == '44121'
143
- result[:banner_icon_url].should == 'https://lh5.ggpht.com/gEwuqrqo9Hu2qRNfBi8bLs0XByBQEmhvBhyNXJLuPmrT47GNfljir8ddam-Plzhovrg=w300'
144
- result[:banner_image_url].should == 'https://lh5.ggpht.com/gEwuqrqo9Hu2qRNfBi8bLs0XByBQEmhvBhyNXJLuPmrT47GNfljir8ddam-Plzhovrg=w300'
145
- result[:website_url].should == 'http://www.meteogroup.com/en/gb/about-meteogroup/privacy-policy-and-cookies.html'
146
- result[:email].should == 'support@android.weatherpro.de'
147
- result[:whats_new].should =~ /We have fixed bugs which can be reported via our help center/
148
- #result[:permissions].should == [{:security=>"dangerous", :group=>"Your location", :description=>"fine (GPS) location", :description_full=>"Access fine location sources such as the Global Positioning System on the tablet, where available. Malicious apps may use this to determine where you are, and may consume additional battery power. Access fine location sources such as the Global Positioning System on the phone, where available. Malicious apps may use this to determine where you are, and may consume additional battery power."}, {:security=>"dangerous", :group=>"Network communication", :description=>"full Internet access", :description_full=>"Allows the app to create network sockets."}, {:security=>"safe", :group=>"Network communication", :description=>"view network state", :description_full=>"Allows the app to view the state of all networks."}]
149
- # Stubbing out for now, can't find them in the redesigned page.
150
- result[:permissions].should == []
151
- result[:rating_distribution].should == {5=>26367, 4=>11216, 3=>2613, 2=>1455, 1=>2460}
152
- result[:html].should == test_src_data3
153
- end
154
-
155
- it 'should populate the associated apps keys' do
156
- result = App.parse(test_src_data2)
157
-
158
- result[:related].should be_a(Array)
159
- result[:users_also_installed].should be_a(Array)
160
- result[:more_from_developer].should be_a(Array)
161
-
162
- result[:related].first[:app_id].should == 'com.socialnmobile.dictapps.notepad.color.note'
163
- result[:users_also_installed].first[:app_id].should == 'com.socialnmobile.dictapps.notepad.color.note'
164
- result[:more_from_developer].first[:app_id].should == 'com.evernote.wear'
165
- end
166
-
167
- it 'should populate the reviews' do
168
- result = App.parse(test_src_data4)
169
- result[:reviews].should be_a(Array)
170
- result[:reviews].size == 9
171
- result[:reviews][2][:author_name].should == 'sidi Gueye'
172
- result[:reviews][2][:review_title].should == 'Trop cool'
173
- result[:reviews][2][:review_text].should == "J'ai vraiment adoré l'appli c trop cool !!"
174
- result[:reviews][2][:review_score].should == 5
175
- end
176
-
177
- end
178
-
179
- context 'Updating' do
180
- context 'Quick API' do
181
- app = App.new(test_id)
182
-
183
- response = Typhoeus::Response.new(:code => 200, :headers => '', :body => test_src_data)
184
- Typhoeus.stub(app.market_url).and_return(response)
185
-
186
- app.update
187
- check_getters(app)
188
- end
189
-
190
- context "Quick API not found" do
191
- let(:app) { App.new(test_id) }
192
-
193
- before do
194
- response = Typhoeus::Response.new(:code => 404)
195
- Typhoeus.stub(app.market_url).and_return(response)
196
- end
197
-
198
- it "raises a ResponseError" do
199
- expect {
200
- app.update
201
- }.to raise_error(MarketBot::ResponseError)
202
- end
203
- end
204
-
205
- context 'Batch API' do
206
- hydra = Typhoeus::Hydra.new
207
- app = App.new(test_id, :hydra => hydra)
208
-
209
- response = Typhoeus::Response.new(:code => 200, :headers => '', :body => test_src_data)
210
- Typhoeus.stub(app.market_url).and_return(response)
211
-
212
- callback_flag = false
213
-
214
- app.enqueue_update do |a|
215
- callback_flag = true
216
- end
217
-
218
- hydra.run
219
-
220
- it 'should call the callback' do
221
- callback_flag.should be(true)
222
- end
223
-
224
- check_getters(app)
225
- end
226
-
227
- context 'Batch API parser error' do
228
- hydra = Typhoeus::Hydra.new
229
- app = App.new(test_id, :hydra => hydra)
230
-
231
- response = Typhoeus::Response.new(:code => 200, :headers => '', :body => 'some broken app page')
232
- Typhoeus.stub(app.market_url).and_return(response)
233
-
234
- callback_flag = false
235
- error = nil
236
-
237
- app.enqueue_update do |a|
238
- callback_flag = true
239
- error = a.error
240
- end
241
-
242
- hydra.run
243
-
244
- it 'should call the callback' do
245
- callback_flag.should be(true)
246
- end
247
-
248
- it 'should set error to the exception' do
249
- error.should be_a(Exception)
250
- end
251
- end
252
- end
253
- end
@@ -1,99 +0,0 @@
1
- <!doctype html>
2
- <html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" lang="en_US"><head><script>(function(){window.latencyTrackerTimes={clientSideStartMs:Date.now()};})();</script><script>(function(){function _DumpException(b){window.console.error(b.stack)};var f=this,m=Date.now||function(){return+new Date};function aa(b,d){var a=["LOWLIFE_wizbind"],c=d||f;a[0]in c||!c.execScript||c.execScript("var "+a[0]);for(var e;a.length&&(e=a.shift());)a.length||void 0===b?c[e]?c=c[e]:c=c[e]={}:c[e]=b};function ba(b,d){if(null===d)return!1;if("contains"in b&&1==d.nodeType)return b.contains(d);if("compareDocumentPosition"in b)return b==d||!!(b.compareDocumentPosition(d)&16);for(;d&&b!=d;)d=d.parentNode;return d==b};var v={};function ca(b,d){return function(a){a||(a=window.event);return d.call(b,a)}}function y(b){b=b.target||b.srcElement;!b.getAttribute&&b.parentNode&&(b=b.parentNode);return b}var C="undefined"!=typeof navigator&&/Macintosh/.test(navigator.userAgent),da="undefined"!=typeof navigator&&!/Opera/.test(navigator.userAgent)&&/WebKit/.test(navigator.userAgent),ea={A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1};function fa(){this._mouseEventsPrevented=!0}
3
- var E={A:13,BUTTON:0,CHECKBOX:32,COMBOBOX:13,GRIDCELL:13,LINK:13,LISTBOX:13,MENU:0,MENUBAR:0,MENUITEM:0,MENUITEMCHECKBOX:0,MENUITEMRADIO:0,OPTION:0,RADIO:32,RADIOGROUP:32,RESET:0,SUBMIT:0,TAB:0,TREE:13,TREEITEM:13};function F(b){return(b.getAttribute("type")||b.tagName).toUpperCase()in ga}function G(b){return(b.getAttribute("type")||b.tagName).toUpperCase()in ha}
4
- var ga={CHECKBOX:!0,OPTION:!0,RADIO:!0},ha={COLOR:!0,DATE:!0,DATETIME:!0,"DATETIME-LOCAL":!0,EMAIL:!0,MONTH:!0,NUMBER:!0,PASSWORD:!0,RANGE:!0,SEARCH:!0,TEL:!0,TEXT:!0,TEXTAREA:!0,TIME:!0,URL:!0,WEEK:!0},ia={A:!0,AREA:!0,BUTTON:!0,DIALOG:!0,IMG:!0,INPUT:!0,LINK:!0,MENU:!0,OPTGROUP:!0,OPTION:!0,PROGRESS:!0,SELECT:!0,TEXTAREA:!0};function H(){this.j=[];this.a=[];this.c=[];this.i={};this.b=null;this.f=[]}var ja="undefined"!=typeof navigator&&/iPhone|iPad|iPod/.test(navigator.userAgent),I=String.prototype.trim?function(b){return b.trim()}:function(b){return b.replace(/^\s+/,"").replace(/\s+$/,"")},ka=/\s*;\s*/;function la(b,d){return function(a){var c;var e=d,n;if("click"==e&&(C&&a.metaKey||!C&&a.ctrlKey||2==a.which||null==a.which&&4==a.button||a.shiftKey))e="clickmod";else{var h;h=a.which||a.keyCode||a.key;da&&3==h&&(h=13);if(13!=h&&32!=h)h=!1;else{var l=y(a);n=(l.getAttribute("role")||l.type||l.tagName).toUpperCase();var g;(g="keydown"!=a.type)||("getAttribute"in l?(g=(l.getAttribute("role")||l.tagName).toUpperCase(),g=!G(l)&&("COMBOBOX"!=g||"INPUT"!=g)&&!l.isContentEditable):g=!1,g=!g);(g=g||a.ctrlKey||
5
- a.shiftKey||a.altKey||a.metaKey||F(l)&&32==h)||((g=l.tagName in ea)||(g=l.getAttributeNode("tabindex"),g=null!=g&&g.specified),g=!(g&&!l.disabled));g?h=!1:(l="INPUT"!=l.tagName.toUpperCase()||l.type,g=!(n in E)&&13==h,h=(0==E[n]%h||g)&&!!l)}h&&(e="clickkey")}l=a.srcElement||a.target;h=J(e,a,l,"",null);var p;for(n=l;n&&n!=this;n=n.__owner||n.parentNode){p=c=n;g=e;var q=p.__jsaction;if(!q){var w=K(p,"jsaction");if(w){q=v[w];if(!q){for(var q={},A=w.split(ka),B=0,z=A?A.length:0;B<z;B++){var t=A[B];if(t){var u=
6
- t.indexOf(":"),x=-1!=u,k=x?I(t.substr(0,u)):"click",t=x?I(t.substr(u+1)):t;q[k]=t}}v[w]=q}w=q;q={};for(k in w){A=q;B=k;b:if(z=w[k],!(0<=z.indexOf(".")))for(t=p;t;t=t.parentNode){u=t;x=u.__jsnamespace;void 0===x&&(x=K(u,"jsnamespace"),u.__jsnamespace=x);if(u=x){z=u+"."+z;break b}if(t==this)break}A[B]=z}p.__jsaction=q}else q=ma,p.__jsaction=q}"clickkey"==g?g="click":"click"!=g||q.click||(g="clickonly");p={h:g,action:q[g]||"",event:null,m:!1};if(p.m||p.action)break}p&&(h=J(p.h,p.event||a,l,p.action||
7
- "",c,h.timeStamp));h&&"touchend"==h.eventType&&(h.event._preventMouseEvents=fa);if(p&&p.action){if(k="clickkey"==e)k=y(a),k=(k.type||k.tagName).toUpperCase(),(k=32==(a.which||a.keyCode||a.key)&&"CHECKBOX"!=k)||(k=y(a),n=(k.getAttribute("role")||k.tagName).toUpperCase(),k=k.tagName.toUpperCase()in ia&&"A"!=n&&!F(k)&&!G(k)||"BUTTON"==n);k&&(a.preventDefault?a.preventDefault():a.returnValue=!1);if("mouseenter"==e||"mouseleave"==e)if(k=a.relatedTarget,!("mouseover"==a.type&&"mouseenter"==e||"mouseout"==
8
- a.type&&"mouseleave"==e)||k&&(k===c||ba(c,k)))h.action="",h.actionElement=null;else{var e={},r;for(r in a)"function"!==typeof a[r]&&"srcElement"!==r&&"target"!==r&&(e[r]=a[r]);e.type="mouseover"==a.type?"mouseenter":"mouseleave";e.target=e.srcElement=c;e.bubbles=!1;h.event=e;h.targetElement=c}}else h.action="",h.actionElement=null;c=h;b.b&&(r=J(c.eventType,c.event,c.targetElement,c.action,c.actionElement,c.timeStamp),"clickonly"==r.eventType&&(r.eventType="click"),b.b(r,!0));if(c.actionElement){"A"!=
9
- c.actionElement.tagName||"click"!=c.eventType&&"clickmod"!=c.eventType||(a.preventDefault?a.preventDefault():a.returnValue=!1);if(b.b)b.b(c);else{var D;if((r=f.document)&&!r.createEvent&&r.createEventObject)try{D=r.createEventObject(a)}catch(ta){D=a}else D=a;c.event=D;b.f.push(c)}if("touchend"==c.event.type&&c.event._mouseEventsPrevented){a=c.event;for(var ua in a);m()}}}}function J(b,d,a,c,e,n){return{eventType:b,event:d,targetElement:a,action:c,actionElement:e,timeStamp:n||m()}}
10
- function K(b,d){var a=null;"getAttribute"in b&&(a=b.getAttribute(d));return a}var ma={};function na(b,d){return function(a){var c=b,e=d,n=!1;"mouseenter"==c?c="mouseover":"mouseleave"==c&&(c="mouseout");if(a.addEventListener){if("focus"==c||"blur"==c||"error"==c||"load"==c)n=!0;a.addEventListener(c,e,n)}else a.attachEvent&&("focus"==c?c="focusin":"blur"==c&&(c="focusout"),e=ca(a,e),a.attachEvent("on"+c,e));return{h:c,g:e,l:n}}}
11
- function L(b,d){if(!b.i.hasOwnProperty(d)){var a=la(b,d),c=na(d,a);b.i[d]=a;b.j.push(c);for(a=0;a<b.a.length;++a){var e=b.a[a];e.b.push(c.call(null,e.a))}"click"==d&&L(b,"keydown")}}H.prototype.g=function(b){return this.i[b]};function M(b){var d=N,a=b.a;ja&&(a.style.cursor="pointer");for(a=0;a<d.j.length;++a)b.b.push(d.j[a].call(null,b.a))}function O(){for(var b=P,d=oa,a=0;a<d.length;++a)if(d[a].a!=b.a&&pa(d[a].a,b.a))return!0;return!1}
12
- function pa(b,d){for(;b!=d&&d.parentNode;)d=d.parentNode;return b==d};var qa=window,N=new H,ra=qa||window,sa=ra.document.documentElement,Q=new function(b){this.a=b;this.b=[]}(sa),R;a:{for(var S=0;S<N.a.length;S++)if(pa(N.a[S].a,sa)){R=!0;break a}R=!1}
13
- if(R)N.c.push(Q);else{M(Q);N.a.push(Q);for(var oa=N.c.concat(N.a),T=[],U=[],V=0;V<N.a.length;++V){var P=N.a[V];if(O()){T.push(P);for(var W=P,X=0;X<W.b.length;++X){var Y=W.a,Z=W.b[X];Y.removeEventListener?Y.removeEventListener(Z.h,Z.g,Z.l):Y.detachEvent&&Y.detachEvent("on"+Z.h,Z.g)}W.b=[]}else U.push(P)}for(V=0;V<N.c.length;++V)P=N.c[V],O()?T.push(P):(U.push(P),M(P));N.a=U;N.c=T}L(N,"click");L(N,"focus");L(N,"focusin");L(N,"blur");L(N,"focusout");L(N,"keydown");L(N,"keypress");L(N,"mouseover");L(N,"mouseout");L(N,"mouseenter");L(N,"mouseleave");L(N,"submit");L(N,"change");L(N,"input");L(N,"keyup");L(N,"mousedown");L(N,"mouseup");L(N,"touchcancel");(function(b,d){aa({trigger:function(a){var c=b.g(a.type);c||(L(b,a.type),c=b.g(a.type));c.call((a.target||a.srcElement).ownerDocument.documentElement,a)},bind:function(a){b.b=a;b.f&&(0<b.f.length&&a(b.f),b.f=null)}},d)})(N,ra);})();</script><meta content="IE=10" http-equiv="X-UA-Compatible"><link href="/store/opensearch.xml?hl=en_US" rel="search" title="Google Play" type="application/opensearchdescription+xml"><link href="android-app://com.android.vending/https/play.google.com/store/apps/details?id=com.bluefroggaming.popdat" rel="alternate"><meta content="PJKdyVFC5jlu_l8Wo_hirJkhs1cmitmn44fgpOc3zFc" name="google-site-verification"><meta content="A6H2WZG5rRIUFFopIQcyPeabS5ffxhFlhTiyhzWGPRA" name="google-site-verification"><style type="text/css">#gbar,#guser{font-size:13px;padding-top:0px !important;}#gbar{height:22px}#guser{padding-bottom:7px !important;text-align:right}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}@media all{.gb1{height:22px;margin-right:.5em;vertical-align:top}#gbar{float:left}}a.gb1,a.gb4{text-decoration:underline !important}a.gb1,a.gb4{color:#00c !important}.gbi .gb4{color:#dd8e27 !important}.gbf .gb4{color:#900 !important}
14
- </style><style type="text/css">@font-face {
15
- font-family: 'Roboto';
16
- font-style: normal;
17
- font-weight: 100;
18
- src: local('Roboto Thin'), local('Roboto-Thin'), url(//fonts.gstatic.com/s/roboto/v15/Jzo62I39jc0gQRrbndN6nfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
19
- }
20
- @font-face {
21
- font-family: 'Roboto';
22
- font-style: normal;
23
- font-weight: 300;
24
- src: local('Roboto Light'), local('Roboto-Light'), url(//fonts.gstatic.com/s/roboto/v15/Hgo13k-tfSpn0qi1SFdUfaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
25
- }
26
- @font-face {
27
- font-family: 'Roboto';
28
- font-style: normal;
29
- font-weight: 400;
30
- src: local('Roboto Regular'), local('Roboto-Regular'), url(//fonts.gstatic.com/s/roboto/v15/zN7GBFwfMP4uA6AR0HCoLQ.ttf) format('truetype');
31
- }
32
- @font-face {
33
- font-family: 'Roboto';
34
- font-style: normal;
35
- font-weight: 500;
36
- src: local('Roboto Medium'), local('Roboto-Medium'), url(//fonts.gstatic.com/s/roboto/v15/RxZJdnzeo3R5zSexge8UUaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
37
- }
38
- @font-face {
39
- font-family: 'Roboto';
40
- font-style: normal;
41
- font-weight: 700;
42
- src: local('Roboto Bold'), local('Roboto-Bold'), url(//fonts.gstatic.com/s/roboto/v15/d-6IYplOFocCacKzxwXSOKCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
43
- }
44
- @font-face {
45
- font-family: 'Roboto';
46
- font-style: italic;
47
- font-weight: 100;
48
- src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(//fonts.gstatic.com/s/roboto/v15/12mE4jfMSBTmg-81EiS-YS3USBnSvpkopQaUR-2r7iU.ttf) format('truetype');
49
- }
50
- @font-face {
51
- font-family: 'Roboto';
52
- font-style: italic;
53
- font-weight: 300;
54
- src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url(//fonts.gstatic.com/s/roboto/v15/7m8l7TlFO-S3VkhHuR0at50EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
55
- }
56
- @font-face {
57
- font-family: 'Roboto';
58
- font-style: italic;
59
- font-weight: 400;
60
- src: local('Roboto Italic'), local('Roboto-Italic'), url(//fonts.gstatic.com/s/roboto/v15/W4wDsBUluyw0tK3tykhXEfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
61
- }
62
- @font-face {
63
- font-family: 'Roboto Slab';
64
- font-style: normal;
65
- font-weight: 100;
66
- src: local('Roboto Slab Thin'), local('RobotoSlab-Thin'), url(//fonts.gstatic.com/s/robotoslab/v6/MEz38VLIFL-t46JUtkIEgH4UHu-c0cTZKOwO_f6u1Os.ttf) format('truetype');
67
- }
68
- @font-face {
69
- font-family: 'Roboto Slab';
70
- font-style: normal;
71
- font-weight: 300;
72
- src: local('Roboto Slab Light'), local('RobotoSlab-Light'), url(//fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJbfB31yxOzP-czbf6AAKCVo.ttf) format('truetype');
73
- }
74
- @font-face {
75
- font-family: 'Roboto Slab';
76
- font-style: normal;
77
- font-weight: 400;
78
- src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(//fonts.gstatic.com/s/robotoslab/v6/y7lebkjgREBJK96VQi37Zp0EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
79
- }
80
- @font-face {
81
- font-family: 'Roboto Slab';
82
- font-style: normal;
83
- font-weight: 700;
84
- src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(//fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJZ_TkvowlIOtbR7ePgFOpF4.ttf) format('truetype');
85
- }
86
- </style><link type='text/css' rel='stylesheet' href='//www.gstatic.com/_/play/_/ss/k=play.ss.1it4tzoc0qi2i.L.X.O/m=l/d=0/rs=AGlW0sbUgtCVXm3aMooke8qP25I43k54eQ'/><link type='text/css' rel='stylesheet' href='//www.gstatic.com/_/play/_/ss/k=play.ss.1it4tzoc0qi2i.L.X.O/m=l2/d=0/excm=l/ed=1/rs=AGlW0sbUgtCVXm3aMooke8qP25I43k54eQ'/><link href="//www.gstatic.com/android/market_images/web/favicon_v2.ico" rel="shortcut icon"><script type="text/javascript"></script><title id="main-title">Pop Dat - Android Apps on Google Play</title><meta content="Experience the next level of chain reaction games with ’Pop Dat’." name="description"><meta content="NOODP" name="robots"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat" rel="canonical"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat" hreflang="x-default" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=af" hreflang="af" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ms" hreflang="ms" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ca" hreflang="ca" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=cs" hreflang="cs" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=da" hreflang="da" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=de" hreflang="de" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=et" hreflang="et" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=en_GB" hreflang="en_GB" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=en" hreflang="en" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=es" hreflang="es" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=es_419" hreflang="es_419" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fil" hreflang="fil" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fr_CA" hreflang="fr_CA" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fr" hreflang="fr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=hr" hreflang="hr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=in" hreflang="in" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=zu" hreflang="zu" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=it" hreflang="it" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sw" hreflang="sw" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=lv" hreflang="lv" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=lt" hreflang="lt" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=hu" hreflang="hu" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=nl" hreflang="nl" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=no" hreflang="no" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=pl" hreflang="pl" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=pt_BR" hreflang="pt_BR" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=pt_PT" hreflang="pt_PT" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ro" hreflang="ro" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sk" hreflang="sk" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sl" hreflang="sl" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fi" hreflang="fi" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sv" hreflang="sv" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=vi" hreflang="vi" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=tr" hreflang="tr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=el" hreflang="el" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=be" hreflang="be" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=bg" hreflang="bg" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ru" hreflang="ru" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=sr" hreflang="sr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=uk" hreflang="uk" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ar" hreflang="ar" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=am" hreflang="am" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=hi" hreflang="hi" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=th" hreflang="th" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ko" hreflang="ko" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=zh_HK" hreflang="zh_HK" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=ja" hreflang="ja" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=zh_CN" hreflang="zh_CN" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=zh_TW" hreflang="zh_TW" rel="alternate"><meta content="website" property="og:type"><meta content="Pop Dat - Android Apps on Google Play" property="og:title"><meta content="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat" property="og:url"><script type="text/javascript">(function(){var trackingId='UA-19995903-1';(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
87
- })(window,document,'script','//www.google-analytics.com/analytics.js','play_ga');play_ga('create',trackingId);})();</script></head><body jscontroller="W98pGb" jsmodel="tIclve" class="no-focus-outline" data-page-server-cookie="" jsaction="rcuQ6b:rcuQ6b"><div class="exports-controller" jscontroller="nW6Ps" jsaction="rcuQ6b:rcuQ6b"> <div jscontroller="Oqzoie" jsaction="rcuQ6b:rcuQ6b" jsid="cWJEXd" aria-hidden="true" style="display:none"></div> <div jscontroller="GwTZHe" jsname="YBV3Qc" aria-hidden="true" style="display:none"></div> <div jscontroller="ruD2Lc" jsaction="rcuQ6b:rcuQ6b" jsid="ckLvgd" aria-hidden="true" style="display:none"></div> <div jscontroller="kPgATb" jsaction="rcuQ6b:rcuQ6b" jsid="bpGqMc" aria-hidden="true" style="display:none"></div> <div jscontroller="lW11I" jsaction="rcuQ6b:rcuQ6b" jsid="Kyke" aria-hidden="true" style="display:none"></div> <div jscontroller="sZzYte" jsname="j8fyN" aria-hidden="true" style="display:none"></div> <div jscontroller="qoVwNc" jsname="bXVAae" aria-hidden="true" style="display:none"></div> <div jscontroller="DSu7Id" jsaction="rcuQ6b:rcuQ6b" jsid="s1WrZb" aria-hidden="true" style="display:none"></div> <div jscontroller="KrKwmf" jsaction="rcuQ6b:rcuQ6b" jsid="oN63A" aria-hidden="true" style="display:none"></div> <div jscontroller="XyGpve" jsaction="rcuQ6b:rcuQ6b" jsid="DjeHHf" aria-hidden="true" style="display:none"></div> <div jscontroller="eDmQYe" jsaction="rcuQ6b:rcuQ6b" jsid="kv4dP" aria-hidden="true" style="display:none"></div> <div jscontroller="l88Qmf" jsaction="rcuQ6b:rcuQ6b" jsid="F0Shh" aria-hidden="true" style="display:none"></div> <div jscontroller="bsXnnd" jsaction="rcuQ6b:rcuQ6b" jsid="vebwY" aria-hidden="true" style="display:none"></div> <div jscontroller="r8KIR" jsaction="rcuQ6b:rcuQ6b" jsid="RrzaCb" aria-hidden="true" style="display:none"></div> <div jscontroller="MTZ8td" jsaction="rcuQ6b:rcuQ6b" jsid="lj1M3d" aria-hidden="true" style="display:none"></div> <div jscontroller="PsOe6e" jsaction="rcuQ6b:rcuQ6b" jsid="uRW8Hc" aria-hidden="true" style="display:none"></div> <div jscontroller="ZzwEmb" jsaction="rcuQ6b:rcuQ6b" jsid="tz9uec" aria-hidden="true" style="display:none"></div> <div jscontroller="HozgP" jsaction="rcuQ6b:rcuQ6b" jsid="BAnWfc" aria-hidden="true" style="display:none"></div> <div jscontroller="AO5Sn" jsname="iTLdMd" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="TfvoCd" jsaction="rcuQ6b:rcuQ6b" jsid="IIjvCf" aria-hidden="true" style="display:none"></div> <div jscontroller="KIL8ye" jsaction="rcuQ6b:rcuQ6b" jsid="kbwoAc" aria-hidden="true" style="display:none"></div> <div jscontroller="Mdud6e" jsaction="rcuQ6b:rcuQ6b" jsid="KdZzQc" aria-hidden="true" style="display:none"></div> <div jscontroller="UHw3ec" jsaction="rcuQ6b:WaUj5e" jsid="LKidnb" aria-hidden="true" style="display:none"></div> <div jscontroller="ytepuf" jsaction="rcuQ6b:rcuQ6b" jsid="sVkCQd" aria-hidden="true" style="display:none"></div> <div jscontroller="ikRapd" jsaction="rcuQ6b:rcuQ6b" jsid="wr9wlf" aria-hidden="true" style="display:none"></div> <div jscontroller="vhibMc" jsname="YZUbh" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="kaKwge" jsname="SxWQk" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="a9ZUbe" jsaction="rcuQ6b:rcuQ6b" jsid="RnalDd" aria-hidden="true" style="display:none"></div> <div jscontroller="C9GUfc" jsaction="rcuQ6b:Rayp9d" jsid="tu7Lvd" aria-hidden="true" style="display:none"></div> <div jscontroller="epH9Oe" jsaction="rcuQ6b:rcuQ6b" jsid="bWnBoe" aria-hidden="true" style="display:none"></div> <div jscontroller="bPmHCb" jsaction="rcuQ6b:rcuQ6b" jsid="qtBlid" aria-hidden="true" style="display:none"></div> <div jscontroller="QA6GN" jsname="Q9oe6" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="cFXAie" jsaction="rcuQ6b:rcuQ6b" jsid="HytyXe" aria-hidden="true" style="display:none"></div> <div jscontroller="JrpMz" jsaction="rcuQ6b:rcuQ6b" jsid="aA8rpd" aria-hidden="true" style="display:none"></div> <div jscontroller="vDC9tb" jsaction="rcuQ6b:rcuQ6b" jsid="BeORrc" aria-hidden="true" style="display:none"></div> <div jscontroller="XO8nne" jsaction="rcuQ6b:rcuQ6b" jsid="WGUPf" aria-hidden="true" style="display:none"></div> <div jscontroller="WeJJhe" jsname="yvOiYb" aria-hidden="true" style="display:none"></div> <div jscontroller="n0yTLc" jsaction="rcuQ6b:rcuQ6b" jsid="nYgjCf" aria-hidden="true" style="display:none"></div> <div jscontroller="SmMcVd" jsname="mzgKYb" aria-hidden="true" style="display:none"></div> <div jscontroller="l8Wiqc" jsname="rq3vtb" aria-hidden="true" style="display:none"></div> <div jscontroller="Twm5Zc" jsname="x5Ei5c" aria-hidden="true" style="display:none"></div> <div jscontroller="Nqs1f" jsname="fEGBrd" jsaction="rcuQ6b:rcuQ6b" jsid="fEGBrd" aria-hidden="true" style="display:none"> <div jscontroller="qoVwNc" jsname="bXVAae" jsid="bXVAae" aria-hidden="true" style="display:none"></div> <div jscontroller="JYKBLd" jsname="WgWZrc" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="jO3TP" jsname="ODkgAf" jsaction="rcuQ6b:rcuQ6b" jsid="ODkgAf" aria-hidden="true" style="display:none"></div> <div jscontroller="PNVjMb" jsname="Jmc6Od" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="YK1sC" jsname="DCaEEd" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> </div> </div><div jscontroller="BngI6" class="keyboard-shortcuts-controller" aria-hidden="true" jsaction="rcuQ6b:rcuQ6b" style="display:none"></div><div jscontroller="XmMFlb" jsaction="rcuQ6b:npT2md;submit:GNwXB;input:w2SLu;focus:qKoZef"><div id=gbar><nobr><a class=gb1 href="https://www.google.com/webhp?tab=8w">Search</a> <a class=gb1 href="http://www.google.com/imghp?hl=en&tab=8i">Images</a> <a class=gb1 href="https://maps.google.com/maps?hl=en&tab=8l">Maps</a> <b class=gb1>Play</b> <a class=gb1 href="https://www.youtube.com/?tab=81">YouTube</a> <a class=gb1 href="https://news.google.com/nwshp?hl=en&tab=8n">News</a> <a class=gb1 href="https://mail.google.com/mail/?tab=8m">Gmail</a> <a class=gb1 href="https://drive.google.com/?tab=8o">Drive</a> <a class=gb1 style="text-decoration:none" href="https://www.google.com/intl/en/options/"><u>More</u> &raquo;</a></nobr></div></div><div id="offscreen-renderer" style="position:fixed;top:-100000px;left:-100000px;opacity:0"></div><div class="wrapper wrapper-with-footer" id="wrapper"><div jscontroller="KLl4Ne" style="display:block" jsaction="rcuQ6b:rcuQ6b"> <div class="id-nav-container nav-container hover-zone" style="visibility:hidden" data-server-cookie="CAMiGwgBEAAaFRITCg12ZXJ0aWNhbF9tZW51EBoYAA==" data-uitype="418"> <span class="show-all-hover-zone"> <span class="hover-arrow"></span> </span> <ul class="nav id-corpus-nav-list corpus-nav-list newicon" role="navigation"> <li class="nav-list-item id-track-click apps" data-backend="3" data-server-cookie="CAQqBggDEAMoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change selected" href="/store/apps"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Apps </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="103"> <a class="library-link id-no-menu-change" href="/apps"> My apps </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/apps"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/apps/category/GAME"> Games </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/apps/category/FAMILY"> Family </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/apps/collection/editors_choice"> Editors' Choice </a> </li> </ul> </li> <li class="nav-list-item id-track-click movies-tv" data-backend="4" data-server-cookie="CAQqBggDEAQoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/movies"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Movies & TV </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="105"> <a class="library-link id-no-menu-change" href="/movies"> My movies & TV </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/movies"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/category/TV"> TV </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/category/FAMILY"> Family </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/collection/promotion_collections_movie_studios"> Studios </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/collection/promotion_collections_tv_networks"> Networks </a> </li> </ul> </li> <li class="nav-list-item id-track-click music" data-backend="2" data-server-cookie="CAQqBggDEAIoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/music"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Music </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="104"> <a class="library-link id-no-menu-change id-no-nav" href="/music?authuser"> My music </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/music"> Shop </a> </li> </ul> </li> <li class="nav-list-item id-track-click books" data-backend="1" data-server-cookie="CAQqBggDEAEoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/books"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Books </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="106"> <a class="library-link id-no-menu-change id-no-nav" href="/books"> My books </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/books"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/books/category/coll_1401"> Comics </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/books/collection/promotion_1001a15_textbooks"> Textbooks </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/books/category/coll_1689"> Children's Books </a> </li> </ul> </li> <li class="nav-list-item id-track-click magazines" data-backend="6" data-server-cookie="CAQqBggDEAYoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/newsstand"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title non-breaking-cjk"> Newsstand </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="library-link id-no-menu-change id-track-click" data-uitype="121" href="/newsstand"> My newsstand </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/newsstand"> Shop </a> </li> </ul> </li> <li class="nav-list-item id-track-click devices" data-backend="5" data-server-cookie="CAQqBggDEAUoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/devices"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Devices </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/devices"> Shop </a> </li> </ul> </li> <li class="nav-list-item id-track-click entertainment" data-backend="0" data-server-cookie="CAQqBggDEAAoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Entertainment </span> </span> </a> </li> </ul> <div> <ul class="id-sub-nav-store shared-sub-nav"> <li class="secondary-sub-nav-option id-track-click" data-uitype="110"> <a class="sub-nav-link id-no-menu-change" href="/store/account"> <span>My account</span> </a> </li> <li class="secondary-sub-nav-option id-track-click" data-uitype="123"> <a class="sub-nav-link id-no-menu-change" href="/store/myplayactivity"> My Play activity </a> </li> <li class="secondary-sub-nav-option id-track-click" data-uitype="108"> <a class="sub-nav-link id-no-menu-change" href="/wishlist"> My wishlist </a> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen redeem-option id-track-click" data-uitype="109"> <button class="sub-nav-link id-no-menu-change id-no-nav"> Redeem </button> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen id-track-click" data-uitype="125"> <a class="sub-nav-link" href="/store/gift"> Send gift </a> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen id-track-click" data-uitype="128"> <button class="sub-nav-link id-no-menu-change topup-link"> Add credit </button> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen id-track-click"> <a class="sub-nav-link id-no-menu-change" href="https://support.google.com/googleplay?p=pff_parentguide"> Parent Guide </a> </li> </ul> </div> </div> </div><div class="butterbar-container"><span id="butterbar"></span></div><div class="body-content-loading-overlay" style="display:none"><div class="body-content-loading-spinner"></div></div><script>(function(){window._sc='[[\x22/store/permissionsupdate\x22,\x22\x22,\x22/store\x22,\x22/store/account\x22,\x22/store/movies\x22,\x22/store/music\x22,\x22/store/books\x22,\x22/store/newsstand\x22,\x22/store/apps\x22,\x22/store/devices\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d0\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d4\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d1\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d6\x22,null,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d2\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d3\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d5\x22,null,\x22/\x22,\x22/play/log?format\\u003djson\x22,null,\x22https://play.google.com/intl/en-US_us/about/play-terms.html\x22,\x22https://support.google.com/googleplay/answer/2479637?topic\\u003d2450225\\u0026hl\\u003den_US\x22,null,\x22/store/install\x22,null,\x22/wishlist\x22,\x22/movies\x22,\x22/music?authuser\x22,\x22/books\x22,\x22/newsstand\x22,\x22/apps\x22,\x22/store/xhr/enablegpr\x22,\x22/store/xhr/deletereview\x22,\x22/store/xhr/ructx\x22,\x22/store/xhr/getuseraddress\x22,\x22/store/submitreview\x22,\x22/store/addtocart\x22,\x22/store/xhr/updatecart\x22,\x22https://www.gstatic.com/play/store/web/swf/4musicplayer.swf\x22,\x22/store/xhr/rapcategories\x22,\x22/store/xhr/rapsubmit\x22,\x22/store/xhr/puc\x22,\x22/store/xhr/pulc\x22,\x22/store/xhr/getwatchembed\x22,\x22https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d86400\x22,\x22https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d0\x22,null,\x22/store/xhr/mul\x22,\x22/store/xhr/getdoc\x22,\x22http://support.google.com/mobile/?p\\u003dbooks_formats\x22,\x22http://support.google.com/mobile/?p\\u003dbooks_devices\x22,\x22http://support.google.com/mobile/?p\\u003dbooks_androidapp\x22,\x22http://support.google.com/mobile/?p\\u003dbooks_iosapp\x22,\x22http://support.google.com/googleplay/bin/answer.py?answer\\u003d1062502\\u0026topic\\u003d1187416\\u0026ctx\\u003dtopic\x22,\x22/store/apps/details?id\\u003dcom.google.android.apps.books\x22,\x22/store/apps/details?id\\u003dcom.google.android.music\x22,\x22/store/apps/details?id\\u003dcom.google.android.videos\x22,\x22/store/apps/details?id\\u003dcom.google.android.apps.magazines\x22,\x22/store/xhr/topupopts\x22,\x22/store/setuserdata\x22,\x22/store/xhr/buynoco\x22,\x22/store/apps/collection/editors_choice\x22,\x22/store/apps/category/GAME\x22,\x22/store/account\x22,\x22/redeem\x22,null,\x22/store/cart?modTime\\u003d0\x22,\x22/store/xhr/cancelsub\x22,\x22/store/xhr/dfph\x22,\x22/store/gift\x22,\x22/store/movies/category/MOVIE\x22,\x22/store/movies/category/TV\x22,\x22/store/cancelpreorder\x22,\x22http://support.google.com/googleplay/devices\x22,\x22/settings\x22,\x22/store/ratereview\x22,\x22/store/getdevicepermissions\x22,\x22/store/xhr/hide\x22,\x22/store/getreviews\x22,\x22/store/movies/collection/promotion_collections_movie_studios\x22,\x22/store/movies/collection/promotion_collections_tv_networks\x22,\x22/store/xhr/canceldeviceorder\x22,\x22https://plus.google.com\x22,\x22https://wallet.google.com/updateCreditCard\x22,\x22/store/books/collection/promotion_1001a15_textbooks\x22,\x22/store/xhr/experimenttoggler\x22,\x22https://support.google.com/googleplay/?p\\u003dremote_install_error\x22,null,\x22/store/onewayredeem\x22,\x22https://wallet.google.com/legaldocument?docId\\u003d0.buyertos/US/2/1/und\x22,\x22/store/xhr/getvariantrec\x22,\x22https://wallet.google.com/legaldocument?family\\u003d0.privacynotice\\u0026hl\\u003den_US\x22,\x22https://play.google.com/intl/en-US_us/about/redeem-terms.html\x22,\x22/store/ees/xhr/prepur\x22,\x22/store/ees/xhr/comppurch\x22,\x22/store/xhr/getsimilarcluster\x22,\x22/store/xhr/getreviewannotation\x22,\x22/store/xhr/dismisssug\x22,\x22/store/xhr/getartistalbums\x22,\x22/store/myplayactivity\x22,\x22/store/opensearch.xml\x22,\x22https://ageverification.google.co.kr/ageverification?cl\\u003d1\\u0026hl\\u003dko\\u0026authuser\x22,\x22https://support.google.com/websearch/answer/4358949?ref_topic\\u003d3285072\\u0026hl\\u003dko\x22,\x22https://support.google.com/googleplay/?p\\u003dreport_content\x22,null,\x22/store/order\x22,\x22https://play.google.com/intl/en-US_us/about/promo-terms.html\x22,\x22/store/xhr/gbp\x22,\x22/store/xhr/uninstall\x22,\x22/store/xhr/searchcontent\x22,\x22/store/approveitem\x22,\x22\x22,\x22/store/licenses/apps\x22,\x22/store/unapproveitem\x22,\x22/store/xhr/pglc\x22,\x22/store/xhr/assign\x22,\x22https://wallet.google.com\x22,\x22/store/xhr/accepttos\x22,\x22\x22,\x22/store/xhr/getassignments\x22,\x22/store/xhr/guided_help_get\x22,\x22/store/xhr/guided_help_set\x22,\x22/store/xhr/pp\x22,\x22/store/xhr/cp\x22,\x22/store/chrome\x22,\x22/store/teacheraccess\x22,\x22/store/apps/category/FAMILY\x22,\x22https://sandbox.google.com\x22,\x22/store/xhr/edu_get_enc_po_signup\x22,\x22/store/xhr/edu_create_po\x22,null,\x22/store/xhr/edu_getdelegatedusers\x22,\x22/store/pos\x22,\x22/store/books/category/coll_1689\x22,\x22/store/xhr/user_install\x22,\x22/store/movies/category/FAMILY\x22,\x22/store/xhr/getbulkpurchasehistory\x22,\x22/store/xhr/delegate\x22,\x22/store/xhr/edu_get_currency_code\x22,\x22https://support.google.com/googleplay/work/answer/6170898\x22,\x22/store/xhr/getpos\x22,\x22/store/xhr/grouplicenserefund\x22,\x22/store/xhr/ttd\x22,\x22/store/xhr/ttp\x22,\x22/store/xhr/managecontent\x22,\x22/store/xhr/getuseremail\x22,\x22/store/checkoutcart\x22,\x22/store/xhr/edu_ggast\x22,\x22/store/xhr/asa\x22,\x22/store/xhr/edu_getpodelegatedusers\x22,\x22/store/xhr/delegate_po\x22,\x22https://support.google.com/googleplay?p\\u003dpff_parentguide\x22,\x22https://support.google.com/googleplay?p\\u003dappgame_ratings\x22,\x22/store/xhr/edu_start_po_setup\x22,\x22https://support.google.com/googleplay/?p\\u003dpage_count_issues\x22,\x22https://support.google.com/books/partner/contact/report_offensive_content\x22,\x22/store/ereview\x22,\x22https://accounts.google.com/AccountChooser?service\\u003dgoogleplay\x22,\x22https://support.google.com/googleplay/answer/3401166#readaloud\x22,\x22/store/myrewards\x22,\x22/store/xhr/addresswidgetdata\x22,\x22/music/listen?signup\\u003d1\\u0026utm_source\\u003dplaystore\\u0026utm_medium\\u003dalbum_detail_page\\u0026utm_campaign\\u003d30daytrial\x22,\x22/store/xhr/edu_getdevicepermissions\x22,\x22/store/getfamilywalletsettings\x22,\x22/store/xhr/setfamilywalletsettings\x22,\x22https://play.google.com/intl/en-US_us/about/gift-terms.html\x22,\x22https://payments.google.com\x22,\x22https://store.google.com/terms/google_store_promo_codes\x22,\x22http://www.google.com/intl/en-US_us/policies/privacy/\x22,\x22/store/books/category/coll_1401\x22,\x22/store/xhr/recordtos\x22,null,\x22http://play.google.com/intl/en-US_us/about/giftcards/index.html?utm_source\\u003dplayui\\u0026utm_medium\\u003dlink\\u0026utm_campaign\\u003ddigitalgifts#giftcards-retailers\x22,\x22/store/xhr/addresswidgetdata\x22,\x22https://www.ftc.gov/system/files/documents/cases/140904googleplayorder.pdf\x22,\x22/store/xhr/createenterprise\x22,\x22/store/xhr/ent_prepurch\x22,\x22/store/xhr/ent_comppurch\x22,\x22/store/xhr/usi\x22,\x22https://payments.google.com/payments/v4/js/integrator.js?ss\\u003dn\x22,\x22/store/xhr/sharepurchase\x22,\x22https://clients2.google.com/gr/gr_sync.js\x22]\n,1,1,[\x22/store/search\x22,\x22Search\x22]\n,\x22UA-19995903-1\x22,\x22PROD\x22,1,\x22https://wallet.google.com/payments/widgets/instrument_creator.js\x22,60000,0,\x221\x22,0,1,1,0]\n';})();</script><script>(function(){window._uc='[null,\x22\x22,\x22en\x22,\x22US\x22,[[\x222f20b378\x22,null,1,\x22enable_family_wallet\x22]\n,[\x22ab23480d\x22,null,1,\x22enable_ads_supported_label_for_all_apps\x22]\n,[\x2229e13522\x22,null,1,\x22enable_hd_availability_tv_strings\x22]\n,[\x2237ad289c\x22,null,1,\x22enable_hardware_cancel_redirect_on_success\x22]\n,[\x22b023b0c4\x22,null,1,\x22enable_music_preview_rights\x22]\n,[\x229cd547a3\x22,null,1,\x22enable_enable_scs\x22]\n,[\x2283a1c766\x22,null,1,\x22enable_grouping_app_permissions\x22]\n,[\x222b277ce0\x22,null,1,\x22enable_glass_discount\x22]\n,[\x22cd9bd9ce\x22,null,1,\x22enable_mobile_video_trailer\x22]\n,[\x22f6caf8fb\x22,null,1,\x22enable_in_app_rap_fix\x22]\n,[\x226c45bbf7\x22,null,1,\x22enable_books_family_store\x22]\n,[\x22758f5f1b\x22,null,1,\x22enable_money_with_add_on\x22]\n,[\x22cfc83a8f\x22,null,1,\x22enable_movie_device_setup_page\x22]\n,[\x22d0e25706\x22,null,1,\x22enable_movies_family_store\x22]\n,[\x2272b063b1\x22,null,1,\x22enable_movies_chrome_app_integration\x22]\n,[\x221e72ba8d\x22,null,1,\x22enable_flag_inappropriate\x22]\n,[\x22860ff220\x22,null,1,\x22enable_enterprise_loonie\x22]\n,[\x22fd0884cc\x22,null,1,\x22enable_inapp_purchase_text\x22]\n,[\x2286cd3d0c\x22,null,1,\x22enable_newsstand_details_page_redesign\x22]\n,[\x22fd2d7ae8\x22,null,1,\x22enable_loonie_for_newsstand\x22]\n,[\x22b744e4cb\x22,null,1,\x22enable_signout_options_for_logout\x22]\n,[\x22e38df948\x22,null,1,\x22enable_finsky_wishlist_icon_adjust\x22]\n,[\x2226edeec1\x22,null,1,\x22enable_hydra_icons\x22]\n,[\x225d382d8c\x22,null,1,\x22enable_entertainment_home_home\x22]\n,[\x22c4ce7ad4\x22,null,1,\x22enable_smith_redirect\x22]\n]\n,0,null,0,null,null,[]\n,null,0,[\x22nocache:apps_family_store_enabled\x22,\x22nocache:books_family_store_enabled\x22,\x22nocache:laz\x22,\x22nocache:luffy_search_clusters_v1d:launch\x22,\x22nocache:movies_family_store_enabled\x22,\x22nocache:payments_flow_for_add_paypal\x22,\x22nocache:payments_flow_for_setup_stored_value\x22,\x22nocache:payments_flow_for_update_profile_at_purchase\x22,\x22signed-out\x22]\n,[5500217,5500186,5500344,5500276,5500356,5500033,5500166,5500131,5500112,5500172,5500120,5500125,5500211,5500079,5500133,5500364,5500118,5500165,5500185,5500267,5500233,5500162,5500285,5500216,5500348,5500259,5500286]\n,null,null,null,\x22en-US\x22,[2,null,null,null,null,null,null,null,[\x22en_US\x22]\n]\n,[]\n,\x22United States\x22,\x223eb450fa-3058-4b0b-ac51-fb302a07e306\x22]\n';})();</script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script><script src="//www.gstatic.com/_/play/_/js/k=play.js.en_US.EYALm8JT1Lk.O/m=base,m,i/rt=j/d=1/rs=AGlW0sY38yKTnmsJep9BHsMX5mykBECzKQ" id="base-js"></script><script>pressPlay();</script><script type="text/javascript">(function(){var locale='';window.___gcfg = {lang:locale,parsetags:'explicit'
88
- };})();</script><div class="id-body-content-beginning" aria-labelledby="main-title" tabindex="-1"></div><div class="action-bar-container" role="navigation" jsl="$t t-mtgV572_Ih8;$x 0;"> <div class="id-action-bar-inner action-bar-inner"> <div class="action-bar apps" jsl="$x 1;" jsan="7.action-bar,7.apps"> <div jsinstance="0" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;$t t-QH4hoG9vrLo;$x 0;" class="action-bar-dropdown-container" jsan="t-QH4hoG9vrLo,7.action-bar-dropdown-container"> <div class="action-bar-dropdown"> <button class="action-bar-dropdown-top" aria-controls="action-dropdown-children-Categories" aria-owns="action-dropdown-children-Categories" id="action-dropdown-parent-Categories" aria-expanded="false" aria-haspopup="true" jsl="$x 1;" jsan="7.action-bar-dropdown-top,0.aria-controls,0.aria-owns,0.id,0.aria-expanded,0.aria-haspopup"> <span class="title" jsl="$x 2;" jsan="7.title">Categories</span> <span class="dropdown-icon"></span> </button> </div> <div class="name-edit-toggle" style="display:none"> <input class="edit-field-text" value="Categories" maxlength="50" size="18" type="text" jsl="$x 3;"> </div> <div class="action-bar-dropdown-children-container" aria-labelledby="action-dropdown-parent-Categories" id="action-dropdown-children-Categories" jsl="$x 4;" style="display:none"> <div class="dropdown-submenu" jsl="$x 5;" jsan="7.dropdown-submenu"> <ul jsl="$x 6;"> <li jsinstance="0" class="action-dropdown-outer-list-item list-item" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item,7.list-item"> <ul jsl="$x 8;$t t-lkJy1hChpmQ;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;" style="display:none"> <a href="#" title="" jsl="$x 2;" jsan="8.href,0.title"></a> </li> <li class="submenu-divider" jsl="$x 3;" style="display:none"></li> <li jsinstance="0" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/ANDROID_WEAR" title="Android Wear" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Android Wear</a> </li><li jsinstance="1" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/BOOKS_AND_REFERENCE" title="Books &amp; Reference" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Books &amp; Reference</a> </li><li jsinstance="2" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/BUSINESS" title="Business" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Business</a> </li><li jsinstance="3" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/COMICS" title="Comics" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Comics</a> </li><li jsinstance="4" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/COMMUNICATION" title="Communication" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Communication</a> </li><li jsinstance="5" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/EDUCATION" title="Education" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Education</a> </li><li jsinstance="6" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/ENTERTAINMENT" title="Entertainment" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Entertainment</a> </li><li jsinstance="7" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FINANCE" title="Finance" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Finance</a> </li><li jsinstance="8" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/HEALTH_AND_FITNESS" title="Health &amp; Fitness" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Health &amp; Fitness</a> </li><li jsinstance="9" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/LIBRARIES_AND_DEMO" title="Libraries &amp; Demo" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Libraries &amp; Demo</a> </li><li jsinstance="10" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/LIFESTYLE" title="Lifestyle" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Lifestyle</a> </li><li jsinstance="11" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/APP_WALLPAPER" title="Live Wallpaper" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Live Wallpaper</a> </li><li jsinstance="12" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MEDIA_AND_VIDEO" title="Media &amp; Video" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Media &amp; Video</a> </li><li jsinstance="13" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MEDICAL" title="Medical" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Medical</a> </li><li jsinstance="14" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MUSIC_AND_AUDIO" title="Music &amp; Audio" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Music &amp; Audio</a> </li><li jsinstance="15" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/NEWS_AND_MAGAZINES" title="News &amp; Magazines" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">News &amp; Magazines</a> </li><li jsinstance="16" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PERSONALIZATION" title="Personalization" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Personalization</a> </li><li jsinstance="17" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PHOTOGRAPHY" title="Photography" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Photography</a> </li><li jsinstance="18" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PRODUCTIVITY" title="Productivity" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Productivity</a> </li><li jsinstance="19" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SHOPPING" title="Shopping" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Shopping</a> </li><li jsinstance="20" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SOCIAL" title="Social" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Social</a> </li><li jsinstance="21" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SPORTS" title="Sports" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Sports</a> </li><li jsinstance="22" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TOOLS" title="Tools" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Tools</a> </li><li jsinstance="23" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TRANSPORTATION" title="Transportation" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Transportation</a> </li><li jsinstance="24" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TRAVEL_AND_LOCAL" title="Travel &amp; Local" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Travel &amp; Local</a> </li><li jsinstance="25" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/WEATHER" title="Weather" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Weather</a> </li><li jsinstance="*26" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/APP_WIDGETS" title="Widgets" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Widgets</a> </li> </ul> <div jsl="$x 9;" style="display:none"></div> </li><li jsinstance="1" class="action-dropdown-outer-list-item list-item" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item,7.list-item"> <ul jsl="$x 8;$t t-lkJy1hChpmQ;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;"> <a class="parent-submenu-link" href="/store/apps/category/GAME" title="Games" jsl="$x 2;" jsan="7.parent-submenu-link,8.href,0.title">Games</a> </li> <li class="submenu-divider" jsl="$x 3;"></li> <li jsinstance="0" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ACTION" title="Action" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Action</a> </li><li jsinstance="1" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ADVENTURE" title="Adventure" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Adventure</a> </li><li jsinstance="2" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ARCADE" title="Arcade" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Arcade</a> </li><li jsinstance="3" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_BOARD" title="Board" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Board</a> </li><li jsinstance="4" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CARD" title="Card" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Card</a> </li><li jsinstance="5" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CASINO" title="Casino" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Casino</a> </li><li jsinstance="6" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CASUAL" title="Casual" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Casual</a> </li><li jsinstance="7" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_EDUCATIONAL" title="Educational" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Educational</a> </li><li jsinstance="8" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_MUSIC" title="Music" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Music</a> </li><li jsinstance="9" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_PUZZLE" title="Puzzle" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Puzzle</a> </li><li jsinstance="10" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_RACING" title="Racing" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Racing</a> </li><li jsinstance="11" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ROLE_PLAYING" title="Role Playing" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Role Playing</a> </li><li jsinstance="12" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_SIMULATION" title="Simulation" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Simulation</a> </li><li jsinstance="13" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_SPORTS" title="Sports" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Sports</a> </li><li jsinstance="14" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_STRATEGY" title="Strategy" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Strategy</a> </li><li jsinstance="15" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_TRIVIA" title="Trivia" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Trivia</a> </li><li jsinstance="*16" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_WORD" title="Word" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Word</a> </li> </ul> <div jsl="$x 9;" style="display:none"></div> </li><li jsinstance="*2" class="action-dropdown-outer-list-item list-item" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item,7.list-item"> <ul jsl="$x 8;$t t-lkJy1hChpmQ;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;"> <a class="parent-submenu-link" href="/store/apps/category/FAMILY" title="Family" jsl="$x 2;" jsan="7.parent-submenu-link,8.href,0.title">Family</a> </li> <li class="submenu-divider" jsl="$x 3;"></li> <li jsinstance="0" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY?age=AGE_RANGE1" title="Ages 5 &amp; Under" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Ages 5 &amp; Under</a> </li><li jsinstance="1" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY?age=AGE_RANGE2" title="Ages 6-8" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Ages 6-8</a> </li><li jsinstance="2" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY?age=AGE_RANGE3" title="Ages 9 &amp; Up" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Ages 9 &amp; Up</a> </li><li jsinstance="3" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/info/collection/promotion_family_popular_characters" title="Popular Characters" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Popular Characters</a> </li><li jsinstance="4" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_ACTION" title="Action &amp; Adventure" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Action &amp; Adventure</a> </li><li jsinstance="5" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_BRAINGAMES" title="Brain Games" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Brain Games</a> </li><li jsinstance="6" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_CREATE" title="Creativity" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Creativity</a> </li><li jsinstance="7" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_EDUCATION" title="Education" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Education</a> </li><li jsinstance="8" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_MUSICVIDEO" title="Music &amp; Video" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Music &amp; Video</a> </li><li jsinstance="*9" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_PRETEND" title="Pretend Play" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Pretend Play</a> </li> </ul> <div jsl="$x 9;" style="display:none"></div> </li> </ul> </div> </div> </div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="1" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="2" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-j5pjMgcfXGc;$x 0;" class="action-bar-link" jsan="t-j5pjMgcfXGc,7.action-bar-link"> <a class="action-bar-link-title anchor" aria-selected="false" href="/store/apps" jsl="$x 1;" jsan="7.action-bar-link-title,7.anchor,0.aria-selected,8.href">Home</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="3" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-j5pjMgcfXGc;$x 0;" class="action-bar-link" jsan="t-j5pjMgcfXGc,7.action-bar-link"> <a class="action-bar-link-title anchor" aria-selected="false" href="/store/apps/top" jsl="$x 1;" jsan="7.action-bar-link-title,7.anchor,0.aria-selected,8.href">Top Charts</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="4" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-j5pjMgcfXGc;$x 0;" class="action-bar-link" jsan="t-j5pjMgcfXGc,7.action-bar-link"> <a class="action-bar-link-title anchor" aria-selected="false" href="/store/apps/new" jsl="$x 1;" jsan="7.action-bar-link-title,7.anchor,0.aria-selected,8.href">New Releases</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="*5" jsl="$x 2;$t t-GqOCazsd7cI;$x 0;" class="action-bar-aux" jsan="t-GqOCazsd7cI,7.action-bar-aux"> <div jsinstance="0" jsl="$x 1;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;$t t-U4R0M3UJfzc;$x 0;" jscontroller="bJGPjf" class="action-bar-link action-bar-help play-button small id-track-click" data-uitype="112" title="Help" jsaction="rcuQ6b:rcuQ6b;L1KARc" jsvs="'bJGPjf';'rcuQ6b:rcuQ6b;L1KARc';" jsan="t-U4R0M3UJfzc,0.jscontroller,7.action-bar-link,7.action-bar-help,7.play-button,7.small,7.id-track-click,0.data-uitype,0.title,22.jsaction"> <span class="action-bar-link-title" jsl="$x 1;" jsan="7.action-bar-link-title"></span> </button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="*1" jsl="$x 1;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item settings-gear-menu play-button small" jsan="t-RAKlAzbC9gM,7.action-bar-item,7.settings-gear-menu,7.play-button,7.small"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div data-uitype="2905" jsl="$x 5;$t t-QH4hoG9vrLo;$x 0;" class="action-bar-dropdown-container" jsan="0.data-uitype,t-QH4hoG9vrLo,7.action-bar-dropdown-container"> <div class="action-bar-dropdown"> <button class="action-bar-dropdown-top" aria-controls="action-dropdown-children-" aria-label="Settings" aria-owns="action-dropdown-children-" id="action-dropdown-parent-" aria-expanded="false" aria-haspopup="true" jsl="$x 1;" jsan="7.action-bar-dropdown-top,0.aria-controls,0.aria-label,0.aria-owns,0.id,0.aria-expanded,0.aria-haspopup"> <span class="title" jsl="$x 2;" jsan="7.title"></span> <span class="dropdown-icon"></span> </button> </div> <div class="name-edit-toggle" style="display:none"> <input class="edit-field-text" value="" maxlength="50" size="18" type="text" jsl="$x 3;"> </div> <div class="action-bar-dropdown-children-container" aria-labelledby="action-dropdown-parent-" id="action-dropdown-children-" jsl="$x 4;" style="display:none"> <div class="dropdown-submenu" jsl="$x 5;" jsan="7.dropdown-submenu"> <ul class="submenu-item-wrapper" jsl="$x 6;" jsan="7.submenu-item-wrapper"> <li jsinstance="0" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-qseNNdCvOYc;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="/settings" title="Settings" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.title">Settings</a> <button jsl="$x 2;" style="display:none" jsan="5.display"></button> </div> </li><li jsinstance="*1" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-qseNNdCvOYc;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="https://www.google.com/android/devicemanager?hl=en_US" target="_blank" title="Android Device Manager" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.target,0.title">Android Device Manager</a> <button jsl="$x 2;" style="display:none" jsan="5.display"></button> </div> </li> </ul> </div> </div> </div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div> </div> </div> </div> </div><div class="body-content" itemscope="itemscope" itemtype="http://schema.org/MobileApplication" id="body-content" role="main"><meta content="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat" itemprop="url"><div class="outer-container"><div class="inner-container"><div class="main-content"><div> <div class="details-wrapper apps square-cover id-track-partial-impression id-deep-link-item" data-deep-link-server-cookie="CAQqKQgEEAMaIRIfChljb20uYmx1ZWZyb2dnYW1pbmcucG9wZGF0EAEYAygB" data-deep-link-type="1" data-docid="com.bluefroggaming.popdat" data-server-cookie="CAIaJQohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgDQgA=" data-uitype="209"> <div class="details-info"> <div class="cover-container"> <img class="cover-image" src="https://lh3.ggpht.com/e6QqjMM9K__moeCm2C5HRb0SmGX0XqzhnhiE1MUx8MdNVdQbQW9rhFX_qmtbtBxHAa0=w300" alt="Cover art" aria-hidden="true" itemprop="image"> </div> <div class="info-container"> <div class="document-title" itemprop="name"> <div class="id-app-title" tabindex="0">Pop Dat</div> </div> <div itemprop="author" itemscope="" itemtype="http://schema.org/Organization"> <meta content="/store/apps/developer?id=Blue+Frog+Gaming" itemprop="url"> <a class="document-subtitle primary" href="/store/apps/developer?id=Blue+Frog+Gaming"> <span itemprop="name">Blue Frog Gaming</span> </a> <div class="document-subtitle">- August 26, 2011</div> <div class="document-subtitle">-</div> <div class="document-subtitle content-rating-title">Unrated</div> </div> <div> <a class="document-subtitle category" href="/store/apps/category/GAME_ARCADE"> <span itemprop="genre">Arcade</span> </a> </div> <div> </div> <div class="details-actions"> <span> <span class="apps medium play-button buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.bluefroggaming.popdat"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaJQohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgDQgA=" data-uitype="221"> <span> <span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer"> <meta content="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;rdid=com.bluefroggaming.popdat&amp;rdot=1&amp;feature=md" itemprop="url"> <meta content="0" itemprop="price"> <span itemprop="seller" itemscope="itemscope" itemtype="http://schema.org/Organization"> <meta content="Android" itemprop="name"> </span> </span> </span> <jsl jsl="$x 1;$t t-nH6Xd1T8X0Y;$x 0;"> <jsl jsl="$x 1;$t t-R7hS--kHwck;$x 0;"> <span jsl="$x 1;" style="display:none" jsan="5.display"></span> </jsl> </jsl> <span>Install</span> </button> </span> </span> <div jscontroller="bt3Kk" class="id-wishlist-display wishlist-display" jsaction="rcuQ6b:rcuQ6b"> <div class="wishlist-container id-track-click id-track-impression" data-enable-wishlist-icon-center="true" data-server-cookie="CAIaJQohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgDQgA=" data-uitype="203"> <button class="play-button default wishlist-content userlist-yet-to-add" data-docid="com.bluefroggaming.popdat"> <div class="wishlist-icon"></div> <div class="wishlist-text"> <div class="wishlist-text-default wishlist-text-add id-track-click" data-server-cookie="CAIaJQohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgDQgA=" data-uitype="204"> Add to Wishlist </div> <div class="wishlist-text-default wishlist-text-adding" aria-hidden="true"> Adding... </div> <div class="wishlist-text-default wishlist-text-added id-track-impression" aria-label=" Remove from wishlist. "> Added to Wishlist </div> <div class="wishlist-text-default wishlist-text-remove id-track-click" data-server-cookie="CAIaJQohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgDQgA=" data-uitype="205" aria-label=" Remove from wishlist. "> Remove </div> <div class="wishlist-text-default wishlist-text-removing" aria-hidden="true"> Removing... </div> </div> </button> <div aria-atomic="true" aria-live="polite" role="status"> <span class="off-screen id-item-added-msg" style="display:none"> Item added to wishlist. </span> </div> <div aria-atomic="true" aria-live="polite" role="status"> <span class="off-screen id-item-removed-msg" style="display:none"> Item removed from wishlist. </span> </div> </div> </div> </div> <div class="voucher-message id-voucher-message" style="display:none"></div> <div jscontroller="uT9F9" class="app-compatibility" data-docid="com.bluefroggaming.popdat" jsaction="rcuQ6b:Y7BZMd;h5M12e"> <div jsname="qTzz5c" class="app-compatibility-initial" style="display:none"> <div class="compatibility-loading compatibility-image"></div> <span> Loading device compatibility... </span> </div> <div jsname="H4yxEf" class="app-compatibility-final" style="display:none"> <div jsname="OgDRCf" class="compatibility-image"></div> </div> <div> <div jscontroller="WxTtSc" jsname="xl07Ob" class="app-compatibility-device-list" tabindex="0" jsaction="hINwcc:ti6hGc;blur:ZYIfFd" style="display:none"> </div> </div> </div> <div class="details-info-divider"></div> <div class="header-star-badge"> <div class="stars-container"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.7 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 94.54545021057129%;"></div> </div> </div> <div class="stars-count"> (<span class="reviewers-small" aria-label=" 11 ratings "></span> 11) </div> </div> <div class="details-sharing-section"> <div class="plusone-container"> <div class="g-plusone" data-align="right" data-href="https://market.android.com/details?id=com.bluefroggaming.popdat" data-annotation="inline" data-recommendations="false" data-se="3" data-size="medium" data-source="google:market" data-width="240"></div> <script type="text/javascript">if (window.gapi && gapi.plusone){gapi.plusone.go("body-content");}
89
- </script> </div> </div> </div> </div> <div class="details-section screenshots"> <div class="details-section-contents"> <div class="details-section-body expandable"> <div class="thumbnails-wrapper"> <div class="thumbnails" data-expand-target="thumbnails"> <img class="screenshot" data-expand-to="full-screenshot-0" src="https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h310" alt=" Pop Dat- screenshot thumbnail " title=" Pop Dat- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-1" src="https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h310" alt=" Pop Dat- screenshot thumbnail " title=" Pop Dat- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-2" src="https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h310" alt=" Pop Dat- screenshot thumbnail " title=" Pop Dat- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-3" src="https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h310" alt=" Pop Dat- screenshot thumbnail " title=" Pop Dat- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-4" src="https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h310" alt=" Pop Dat- screenshot thumbnail " title=" Pop Dat- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-5" src="https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h310" alt=" Pop Dat- screenshot thumbnail " title=" Pop Dat- screenshot thumbnail " itemprop="screenshot" tabindex="0"> </div> </div> <div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-0" data-expand-to="full-screenshot-1" src="https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h900" alt=" Pop Dat- screenshot " title=" Pop Dat- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-1" data-expand-to="full-screenshot-2" src="https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h900" alt=" Pop Dat- screenshot " title=" Pop Dat- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-2" data-expand-to="full-screenshot-3" src="https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h900" alt=" Pop Dat- screenshot " title=" Pop Dat- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-3" data-expand-to="full-screenshot-4" src="https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h900" alt=" Pop Dat- screenshot " title=" Pop Dat- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-4" data-expand-to="full-screenshot-5" src="https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h900" alt=" Pop Dat- screenshot " title=" Pop Dat- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-5" data-expand-to="thumbnails" src="https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h900" alt=" Pop Dat- screenshot " title=" Pop Dat- screenshot " tabindex="0"> </div> </div> </div> </div> </div> <div class="details-section-divider"></div> </div> <div class="details-section description simple contains-text-link"> <div class="details-section-contents show-more-container" jscontroller="G7YeLc" jsaction="rcuQ6b:rcuQ6b" data-show-use-buffer="true"> <div jscontroller="NlxvWb"> <h1 class="heading" tabindex="0"> Description </h1> <div class="show-more-content text-body" itemprop="description" tabindex="0"> <div jsname="C4s9Ed">An action-packed blend of split-second skill and luck-based gameplay! Set off consecutive chains of particles to rack up massive combos as the energy bar refills. Keep those explosions comin’ or else it’s Game Over!<p>Features:<br>• Addictive ‘Endurance Mode’ that gets more challenging the longer you play!<br>• Radiant, expressive, and colorful graphics that take full advantage of High Resolution Displays!<br>• Beat the high scores of your friends and climb the ranks with competitive Leaderboards!<br>• Toe-tappingly catchy soundtrack that highlights every ‘Pop’ and ‘Boom’ of the on-screen action!<br>• Updates packed with new features and goodies coming soon!</p></div> <div class="show-more-end" jsaction="click:vhaaFf"></div> </div> </div> <div> <button class="play-button show-more small" jsaction="KoToPc"> Read more </button> <button class="play-button expand-close" jsaction="vhaaFf"> <div class="close-image"> </div> </button> </div> </div> <div class="details-section-divider"></div> </div> </div> </div> <div class="details-wrapper apps" data-docid="com.bluefroggaming.popdat"> <div class="details-section highlighted-review" style="display:none"> <div class="highlighted-section-contents"> <div style="display:none" class="my-review-panel highlighted-review-panel" data-reviewid=""> <div class="review-row reviews-heading"> <div class="review-row-header heading"> My review </div> </div> <div class="review-panel-content"> <div class="review-image-row"> </div> <div class="review-author-stars"> <div class="review-author-name" style="display:none"> </div> <div class="review-stars-container"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" jsname="jIIjq" style="width: 0%;"></div> </div> </div> </div> <div class="review-row review-body-text"> <span class="review-title"></span> </div> <div class="review-action-button-container"> <button class="play-button icon-button small review-action-button-gap id-review-trash-button" aria-label=" Delete review. "> <div class="review-trash-button-icon"></div> </button> </div> <div class="review-row"> </div> </div> </div> <div style="display:none" class="highlighted-review-panel id-selected-review-panel" data-reviewid=""> <div class="review-row reviews-heading"> <div class="review-row-header heading"> <span> Review from <span style="display:none"></span> </span> </div> </div> <div class="review-panel-content"> <div class="review-image-row"> </div> <div class="review-author-stars"> <div class="review-author-name" style="display:none"> </div> <div class="review-stars-container"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" jsname="jIIjq" style="width: 0%;"></div> </div> </div> </div> <div class="review-row review-body-text"> <span class="review-title"></span> </div> <div class="rate-review-wrapper" style="display:none"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> <div class="review-row"> </div> </div> </div> </div> </div> <div class="details-section reviews"> <div class="details-section-contents"> <div class="details-section-heading"> <h1 class="heading"> Reviews </h1> <div class="review-actions id-track-click" data-uitype="206"> <div class="review-filters" data-expanded-only="true" style="display:none"> <div class="review-filter id-review-sort-filter dropdown-menu-container" jsl="$t t-iOmsrJCHA3E;$x 0;"> <button class="dropdown-menu" aria-haspopup="true"> <span class="displayed-child"><jsl jsl="$x 1;">Helpfulness</jsl></span> <div class="dropdown-icon"></div> </button> <div class="dropdown-menu-children"> <ul> <jsl jsl="$x 2;"> <li role="menuitem" tabindex="-1" jsl="$t t-VM2neMmpSqg;$x 0;"> <button class="dropdown-child" data-dropdown-value="0" tabindex="0" jsl="$x 1;" jsan="7.dropdown-child,0.data-dropdown-value,0.tabindex"> <jsl jsl="$x 2;">Newest</jsl> </button> </li><li role="menuitem" tabindex="-1" jsl="$t t-VM2neMmpSqg;$x 0;"> <button class="dropdown-child" data-dropdown-value="1" tabindex="0" jsl="$x 1;" jsan="7.dropdown-child,0.data-dropdown-value,0.tabindex"> <jsl jsl="$x 2;">Rating</jsl> </button> </li><li role="menuitem" tabindex="-1" jsl="$t t-VM2neMmpSqg;$x 0;"> <button class="dropdown-child selected" data-dropdown-value="2" tabindex="0" jsl="$x 1;" jsan="7.dropdown-child,7.selected,0.data-dropdown-value,0.tabindex"> <jsl jsl="$x 2;">Helpfulness</jsl> </button> </li> </jsl> </ul> </div> </div><div class="review-filter id-review-version-filter dropdown-menu-container" jsl="$t t-iOmsrJCHA3E;$x 0;"> <button class="dropdown-menu" aria-haspopup="true"> <span class="displayed-child"><jsl jsl="$x 1;">All Versions</jsl></span> <div class="dropdown-icon"></div> </button> <div class="dropdown-menu-children"> <ul> <jsl jsl="$x 2;"> <li role="menuitem" tabindex="-1" jsl="$t t-VM2neMmpSqg;$x 0;"> <button class="dropdown-child selected" data-dropdown-value="" tabindex="0" jsl="$x 1;" jsan="7.dropdown-child,7.selected,0.data-dropdown-value,0.tabindex"> <jsl jsl="$x 2;">All Versions</jsl> </button> </li><li role="menuitem" tabindex="-1" jsl="$t t-VM2neMmpSqg;$x 0;"> <button class="dropdown-child" data-dropdown-value="2" tabindex="0" jsl="$x 1;" jsan="7.dropdown-child,0.data-dropdown-value,0.tabindex"> <jsl jsl="$x 2;">Latest Version</jsl> </button> </li> </jsl> </ul> </div> </div> </div> <button class="id-write-button play-button"> <span class="write-review-button-icon"></span> <span> Write a Review </span> </button> <button class="id-edit-button play-button" style="display:none"> <span class="write-review-button-icon"></span> <span> Edit Review </span> </button> </div> </div> <div class="details-section-body expandable" data-done-fetching="true" data-load-more-docid="com.bluefroggaming.popdat" data-load-more-section-id="reviews"> <div class="preview-panel"> <div class="preview-reviews multicol" data-multicol-fixed-height="true" data-multicol-width="auto"> <div class="rating-box"> <div class="score-container" itemprop="aggregateRating" itemscope="itemscope" itemtype="http://schema.org/AggregateRating"> <meta content="4.7272725105285645" itemprop="ratingValue"> <meta content="11" itemprop="ratingCount"> <div class="score" aria-label=" Rated 4.7 stars out of five stars ">4.7</div> <div class="score-container-star-rating"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated 4.7 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 94.54545021057129%;"></div> </div> </div> <div class="reviews-stats"> <span class="reviewers-small"></span> <span class="reviews-num" aria-label=" 11 ratings ">11</span> total </div> </div> <div class="rating-histogram"> <div class="rating-bar-container five"> <span class="bar-label"> <span class="star-tiny star-full"></span>5 </span> <span class="bar" style="width:100%"></span> <span class="bar-number" aria-label=" 10 ratings ">10</span> </div><div class="rating-bar-container four"> <span class="bar-label"> <span class="star-tiny star-full"></span>4 </span> <span class="bar" style="width:0"></span> <span class="bar-number" aria-label=" 0 ratings ">0</span> </div><div class="rating-bar-container three"> <span class="bar-label"> <span class="star-tiny star-full"></span>3 </span> <span class="bar" style="width:0"></span> <span class="bar-number" aria-label=" 0 ratings ">0</span> </div><div class="rating-bar-container two"> <span class="bar-label"> <span class="star-tiny star-full"></span>2 </span> <span class="bar" style="width:10%"></span> <span class="bar-number" aria-label=" 1 ratings ">1</span> </div><div class="rating-bar-container one"> <span class="bar-label"> <span class="star-tiny star-full"></span>1 </span> <span class="bar" style="width:0"></span> <span class="bar-number" aria-label=" 0 ratings ">0</span> </div> </div> </div> <div class="featured-review" data-expand-to="user-0" data-reviewid="lg:AOqpTOFLotRWWL8F50O4eRjgG4qLIdxscdhqfgUYPIXPFSKdYST3akGCq1AbpwN5AIC2cL0A_IusaIg0iNeX9Q" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> </div> <div> <span class="author-name"> A Google User </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 2 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 40%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Nearly fell asleep</span> There's potential but watching the little dots move around with nothing to do for seconds at a time. Plus, the sharing scores with friends didn't work <div class="paragraph-end details-light"></div> </div> </div> </div> </div> <div class="featured-review" data-expand-to="user-1" data-reviewid="lg:AOqpTOEP10sdyLzTvD5K-uaeuxd5p5Nvxty2sZH1l0n4XiI53kT8PKlxbRA-W_9ApKTCF7SeuVdI45AmOf6Ccg" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> </div> <div> <span class="author-name"> A Google User </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title"></span> Addicting. Great sound and music <div class="paragraph-end details-light"></div> </div> </div> </div> </div> <div class="featured-review" data-expand-to="user-2" data-reviewid="lg:AOqpTOH5CGpJIWhh85M3LbdvavtQqvFV6Zku_0g6C03cLvtlNLc_cN-rM6z9Tb4CpdujAwMgj3AZt4yG5JdxKw" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> </div> <div> <span class="author-name"> A Google User </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title"></span> Nostalgic <div class="paragraph-end details-light"></div> </div> </div> </div> </div> <div class="featured-review" data-expand-to="user-3" data-reviewid="lg:AOqpTOHRVyUFOWdcf3fdXadmV5O7BhgOmA5XpAmvafelzLR6l-AmdeDkf7dKgnBr76glGq3zCtsNHWJ89zYANA" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> </div> <div> <span class="author-name"> A Google User </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Fun and Addicting!</span> Before I know it, I've spent hours trying for a new high score. The game is extremely fun and keeps you interested as your strive for your longest chain reaction and a new high score! <div class="paragraph-end details-light"></div> </div> </div> </div> </div> </div> </div> <div style="display:none" class="all-reviews multicol" data-expand-scroll="true" data-multicol-fixed-height="true"> <div> <div class="reviews-heading"> User reviews </div> <div class="single-review" tabindex="0"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> <div class="review-header" data-expand-target="user-0" data-reviewid="lg:AOqpTOFLotRWWL8F50O4eRjgG4qLIdxscdhqfgUYPIXPFSKdYST3akGCq1AbpwN5AIC2cL0A_IusaIg0iNeX9Q"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">September 12, 2011</span> <a class="reviews-permalink" href="/store/apps/details?id=com.bluefroggaming.popdat&amp;reviewId=bGc6QU9xcFRPRkxvdFJXV0w4RjUwTzRlUmpnRzRxTElkeHNjZGhxZmdVWVBJWFBGU0tkWVNUM2FrR0NxMUFicHdONUFJQzJjTDBBX0l1c2FJZzBpTmVYOVE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 2 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 40%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Nearly fell asleep</span> There's potential but watching the little dots move around with nothing to do for seconds at a time. Plus, the sharing scores with friends didn't work <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> <div class="review-header" data-expand-target="user-1" data-reviewid="lg:AOqpTOEP10sdyLzTvD5K-uaeuxd5p5Nvxty2sZH1l0n4XiI53kT8PKlxbRA-W_9ApKTCF7SeuVdI45AmOf6Ccg"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">November 19, 2011</span> <a class="reviews-permalink" href="/store/apps/details?id=com.bluefroggaming.popdat&amp;reviewId=bGc6QU9xcFRPRVAxMHNkeUx6VHZENUstdWFldXhkNXA1TnZ4dHkyc1pIMWwwbjRYaUk1M2tUOFBLbHhiUkEtV185QXBLVENGN1NldVZkSTQ1QW1PZjZDY2c" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title"></span> Addicting. Great sound and music <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> <div class="review-header" data-expand-target="user-2" data-reviewid="lg:AOqpTOH5CGpJIWhh85M3LbdvavtQqvFV6Zku_0g6C03cLvtlNLc_cN-rM6z9Tb4CpdujAwMgj3AZt4yG5JdxKw"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">September 3, 2011</span> <a class="reviews-permalink" href="/store/apps/details?id=com.bluefroggaming.popdat&amp;reviewId=bGc6QU9xcFRPSDVDR3BKSVdoaDg1TTNMYmR2YXZ0UXF2RlY2Wmt1XzBnNkMwM2NMdnRsTkxjX2NOLXJNNno5VGI0Q3BkdWpBd01najNBWnQ0eUc1SmR4S3c" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title"></span> Nostalgic <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> <div class="review-header" data-expand-target="user-3" data-reviewid="lg:AOqpTOHRVyUFOWdcf3fdXadmV5O7BhgOmA5XpAmvafelzLR6l-AmdeDkf7dKgnBr76glGq3zCtsNHWJ89zYANA"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">August 28, 2011</span> <a class="reviews-permalink" href="/store/apps/details?id=com.bluefroggaming.popdat&amp;reviewId=bGc6QU9xcFRPSFJWeVVGT1dkY2YzZmRYYWRtVjVPN0JoZ09tQTVYcEFtdmFmZWx6TFI2bC1BbWRlRGtmN2RLZ25Ccjc2Z2xHcTN6Q3RzTkhXSjg5ellBTkE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Fun and Addicting!</span> Before I know it, I've spent hours trying for a new high score. The game is extremely fun and keeps you interested as your strive for your longest chain reaction and a new high score! <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> </div> </div> </div> <div class="details-section-divider"></div> </div> <div aria-atomic="true" aria-live="polite" role="status"> <span class="off-screen id-review-deleted-msg" style="display:none"> Review deleted </span> </div> <script>if (typeof ircs == 'undefined'){jQuery('body').one('onExportsReady',function(){ircs();});}else {ircs();}
90
- </script> </div> <div class="details-wrapper"> <div class="details-section metadata"> <div class="details-section-heading"> <h1 class="heading"> Additional information </h1> </div> <div class="details-section-contents"> <div class="meta-info"> <div class="title">Updated</div> <div class="content" itemprop="datePublished">August 26, 2011</div> </div> <div class="meta-info"> <div class="title">Size</div> <div class="content" itemprop="fileSize"> 9.0M </div> </div> <div class="meta-info"> <div class="title">Installs</div> <div class="content" itemprop="numDownloads"> 500 - 1,000 </div> </div> <div class="meta-info"> <div class="title">Current Version</div> <div class="content" itemprop="softwareVersion"> 1.0 </div> </div> <div class="meta-info"> <div class="title">Requires Android</div> <div class="content" itemprop="operatingSystems"> 2.2 and up </div> </div> <div class="meta-info contains-text-link"> <div class="title">Content Rating</div> <div class="content" itemprop="contentRating">Unrated</div> <div class="content">Warning – content has not yet been rated. Unrated apps may potentially contain content appropriate for mature audiences only.</div> <a class="content" href="https://support.google.com/googleplay?p=appgame_ratings" target="_blank">Learn more</a> </div> <div class="meta-info"> <div class="title">Permissions</div> <button class="content id-view-permissions-details fake-link" data-docid="com.bluefroggaming.popdat"> View details </button> </div> <div class="meta-info contains-text-link"> <div class="title">Report</div> <a class="content" href="https://support.google.com/googleplay/?p=report_content" target="_blank"> Flag as inappropriate </a> </div> <div class="meta-info"> <div class="title"> Offered By </div> <div class="content">Blue Frog Gaming</div> </div> <div class="meta-info"> <div class="title"> Developer </div> <div class="content contains-text-link"> <a class="dev-link" href="https://www.google.com/url?q=http://bluefroggaming.com&amp;sa=D&amp;usg=AFQjCNFJZLN9txV8hct_LYh5XkBJbNBhiQ" rel="nofollow" target="_blank"> Visit website </a> <a class="dev-link" href="mailto:support@hdgames.zendesk.com" rel="nofollow" target="_blank"> Email support@hdgames.zendesk.com </a> </div> </div> </div> <div class="details-section-divider"></div> </div> </div><div class="details-wrapper"> <div class="id-cluster-container details-section recommendation"> <div class="details-section-contents"> <div class="rec-cluster" data-server-cookie="CAMiKQgCEAMaIRIfChljb20uYmx1ZWZyb2dnYW1pbmcucG9wZGF0EAEYAygB" data-uitype="400"> <h1 class="heading"> Similar </h1> <div class="cards expandable id-card-list"> <div class="card no-rationale square-cover apps small" data-docid="si.custom.snake" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="si.custom.snake" data-server-cookie="CAIaGwoXEhUKD3NpLmN1c3RvbS5zbmFrZRABGANCAA==" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaGwoXEhUKD3NpLmN1c3RvbS5zbmFrZRABGANCAA==" data-uitype="500" href="/store/apps/details?id=si.custom.snake" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Dat Snake" class="cover-image" data-cover-large="//lh5.ggpht.com/liehEjWse38Ij83K0rB758LeAN4eAdCkAVfKGo7injmii7ZZ7568q0zUWYOAUOuDjXIt=w340" data-cover-small="//lh5.ggpht.com/liehEjWse38Ij83K0rB758LeAN4eAdCkAVfKGo7injmii7ZZ7568q0zUWYOAUOuDjXIt=w170" src="//lh5.ggpht.com/liehEjWse38Ij83K0rB758LeAN4eAdCkAVfKGo7injmii7ZZ7568q0zUWYOAUOuDjXIt=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=si.custom.snake" aria-label=" Dat Snake "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="si.custom.snake"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=si.custom.snake" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=si.custom.snake" title="Dat Snake" aria-hidden="true" tabindex="-1"> Dat Snake <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Oranza+Kreativna+Komunikacija" title="Oranza Kreativna Komunikacija">Oranza Kreativna Komunikacija</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="si.custom.snake"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaGwoXEhUKD3NpLmN1c3RvbS5zbmFrZRABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Best snake game on Android Platform. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=si.custom.snake" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=si.custom.snake"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5.0 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="si.custom.snake"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaGwoXEhUKD3NpLmN1c3RvbS5zbmFrZRABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> </div> </div> </div> </div> </div> <div class="more-from-developer"> <div class="details-wrapper"> <div class="id-cluster-container details-section recommendation"> <div class="details-section-contents"> <div class="rec-cluster" data-server-cookie="CAMiKQgCEAMaIRIfChljb20uYmx1ZWZyb2dnYW1pbmcucG9wZGF0EAEYAygB" data-uitype="400"> <h1 class="heading"> <a class="title-link id-track-click" data-server-cookie="CAMiKQgCEAMaIRIfChljb20uYmx1ZWZyb2dnYW1pbmcucG9wZGF0EAEYAygB" data-uitype="291" href="/store/apps/developer?id=Blue+Frog+Gaming">More from developer</a> </h1> <div class="cards expandable id-card-list"> <div class="card no-rationale square-cover apps medium-long" data-docid="com.bluefroggaming.ghost_chicken" data-original-classes="card no-rationale square-cover apps medium-long" data-short-classes="card no-rationale square-cover apps medium-long" data-thin-classes="card no-rationale square-cover apps medium-long"> <div class="card-content id-track-click id-track-impression" data-docid="com.bluefroggaming.ghost_chicken" data-server-cookie="CAIaLAooEiYKIGNvbS5ibHVlZnJvZ2dhbWluZy5naG9zdF9jaGlja2VuEAEYA0IA" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaLAooEiYKIGNvbS5ibHVlZnJvZ2dhbWluZy5naG9zdF9jaGlja2VuEAEYA0IA" data-uitype="500" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Ghost Chicken" class="cover-image" data-cover-large="https://lh6.ggpht.com/X9pCCCCgIpJHi8LL9dj2ai0gClaNfc5hoYypwxKj0ImOgov1LzWwVA93-olaey2qVdc=w340" data-cover-small="https://lh6.ggpht.com/X9pCCCCgIpJHi8LL9dj2ai0gClaNfc5hoYypwxKj0ImOgov1LzWwVA93-olaey2qVdc=w170" src="https://lh6.ggpht.com/X9pCCCCgIpJHi8LL9dj2ai0gClaNfc5hoYypwxKj0ImOgov1LzWwVA93-olaey2qVdc=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" aria-label=" Ghost Chicken "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.bluefroggaming.ghost_chicken"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" title="Ghost Chicken" aria-hidden="true" tabindex="-1"> Ghost Chicken <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Blue+Frog+Gaming" title="Blue Frog Gaming">Blue Frog Gaming</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.bluefroggaming.ghost_chicken"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaLAooEiYKIGNvbS5ibHVlZnJvZ2dhbWluZy5naG9zdF9jaGlja2VuEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Don&#39;t be a chicken. Play Ghost Chicken! <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.bluefroggaming.ghost_chicken"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.9 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 77.2580623626709%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.bluefroggaming.ghost_chicken"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaLAooEiYKIGNvbS5ibHVlZnJvZ2dhbWluZy5naG9zdF9jaGlja2VuEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div><div class="secondary-content"></div></div></div></div><div class="overlay-background" style="display:none"></div><div class="overlay-wrapper" style="display:none"><div class="overlay-content-wrapper"><div id="overlay-content"></div></div></div><div style="clear:both"></div><div jscontroller="n9NDF" id="footer-content" jsaction="FibEpb:dwbRB"> <button class="play-button" id="show-more-button" style="display:none"> Show More </button> <div class="bottom-loading" style="display:none"></div> <div class="footer"> <div class="footer-links-container"> <span class="copyright"> ©2016 Google</span> <a class="footer-link id-no-nav" href="https://play.google.com/intl/en-US_us/about/play-terms.html" target="_blank"> Site Terms of Service</a> <a class="footer-link id-no-nav" href="http://www.google.com/intl/en-US_us/policies/privacy/" target="_blank"> Privacy Policy</a> <a class="footer-link id-no-nav" href="http://developer.android.com/index.html" target="_blank"> Developers</a> <a class="footer-link id-no-nav" href="https://play.google.com/artists" target="_blank"> Artists</a> <a class="footer-link id-no-nav" href="https://support.google.com/googleplay/?p=about_play" target="_blank"> About Google</a> <div jsname="Gvbqzc" class="contains-text-link"> <span> By purchasing this item, you are transacting with Google Payments and agreeing to the Google Payments <a href="https://payments.google.com/termsOfService?hl=en_US" target="_blank"> Terms of Service </a> and <a href="https://payments.google.com/legaldocument?family=0.privacynotice&amp;hl=en_US" target="_blank"> Privacy Notice </a>. </span> </div> </div> </div> </div></div><div class="loading" jscontroller="EgJAl" jsaction="rcuQ6b:rcuQ6b" id="page-load-indicator"></div><div id="instrument-manager-parent"></div><div> <div jscontroller="zIhZNe" data-is-details-page="true" data-my-account-action-required="false" jsaction="rcuQ6b:npT2md"></div> <script>(function(){var fu=true;var pt='';var ab='';var lmt='';var curl='https://play.google.com/store/apps/details?id\x3dcom.bluefroggaming.popdat';var nbp='';var sc='CAESJQgFIiESHwoZY29tLmJsdWVmcm9nZ2FtaW5nLnBvcGRhdBABGAM\x3d';var pgj=false;var di='com.bluefroggaming.popdat';var du=2;window.updateClient = function(){if (fu){if (pt){upt(pt);}
91
- if (ab){uab(ab);}
92
- if (lmt){ihc(lmt);}
93
- if (nbp && typeof snbp != 'undefined'){snbp(nbp);}else {icfl();}
94
- if (curl){sglc(curl);}
95
- if (pgj){if (gapi && gapi.plus && gapi.plus.go){gapi.plus.go();}
96
- }
97
- upba(di,du);usc(sc);}
98
- };if (window.exportsReady){window.updateClient();}else {jQuery('body').one('onExportsReady',function(){window.updateClient();});}
99
- })();</script> </div></body></html>
@@ -1,100 +0,0 @@
1
- <!doctype html>
2
- <html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" lang="en_US"><head><script>(function(){window.latencyTrackerTimes={clientSideStartMs:Date.now()};})();</script><script>(function(){function _DumpException(b){window.console.error(b.stack)};var f=this,m=Date.now||function(){return+new Date};function aa(b,d){var a=["LOWLIFE_wizbind"],c=d||f;a[0]in c||!c.execScript||c.execScript("var "+a[0]);for(var e;a.length&&(e=a.shift());)a.length||void 0===b?c[e]?c=c[e]:c=c[e]={}:c[e]=b};function ba(b,d){if(null===d)return!1;if("contains"in b&&1==d.nodeType)return b.contains(d);if("compareDocumentPosition"in b)return b==d||!!(b.compareDocumentPosition(d)&16);for(;d&&b!=d;)d=d.parentNode;return d==b};var v={};function ca(b,d){return function(a){a||(a=window.event);return d.call(b,a)}}function y(b){b=b.target||b.srcElement;!b.getAttribute&&b.parentNode&&(b=b.parentNode);return b}var C="undefined"!=typeof navigator&&/Macintosh/.test(navigator.userAgent),da="undefined"!=typeof navigator&&!/Opera/.test(navigator.userAgent)&&/WebKit/.test(navigator.userAgent),ea={A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1};function fa(){this._mouseEventsPrevented=!0}
3
- var E={A:13,BUTTON:0,CHECKBOX:32,COMBOBOX:13,GRIDCELL:13,LINK:13,LISTBOX:13,MENU:0,MENUBAR:0,MENUITEM:0,MENUITEMCHECKBOX:0,MENUITEMRADIO:0,OPTION:0,RADIO:32,RADIOGROUP:32,RESET:0,SUBMIT:0,TAB:0,TREE:13,TREEITEM:13};function F(b){return(b.getAttribute("type")||b.tagName).toUpperCase()in ga}function G(b){return(b.getAttribute("type")||b.tagName).toUpperCase()in ha}
4
- var ga={CHECKBOX:!0,OPTION:!0,RADIO:!0},ha={COLOR:!0,DATE:!0,DATETIME:!0,"DATETIME-LOCAL":!0,EMAIL:!0,MONTH:!0,NUMBER:!0,PASSWORD:!0,RANGE:!0,SEARCH:!0,TEL:!0,TEXT:!0,TEXTAREA:!0,TIME:!0,URL:!0,WEEK:!0},ia={A:!0,AREA:!0,BUTTON:!0,DIALOG:!0,IMG:!0,INPUT:!0,LINK:!0,MENU:!0,OPTGROUP:!0,OPTION:!0,PROGRESS:!0,SELECT:!0,TEXTAREA:!0};function H(){this.j=[];this.a=[];this.c=[];this.i={};this.b=null;this.f=[]}var ja="undefined"!=typeof navigator&&/iPhone|iPad|iPod/.test(navigator.userAgent),I=String.prototype.trim?function(b){return b.trim()}:function(b){return b.replace(/^\s+/,"").replace(/\s+$/,"")},ka=/\s*;\s*/;function la(b,d){return function(a){var c;var e=d,n;if("click"==e&&(C&&a.metaKey||!C&&a.ctrlKey||2==a.which||null==a.which&&4==a.button||a.shiftKey))e="clickmod";else{var h;h=a.which||a.keyCode||a.key;da&&3==h&&(h=13);if(13!=h&&32!=h)h=!1;else{var l=y(a);n=(l.getAttribute("role")||l.type||l.tagName).toUpperCase();var g;(g="keydown"!=a.type)||("getAttribute"in l?(g=(l.getAttribute("role")||l.tagName).toUpperCase(),g=!G(l)&&("COMBOBOX"!=g||"INPUT"!=g)&&!l.isContentEditable):g=!1,g=!g);(g=g||a.ctrlKey||
5
- a.shiftKey||a.altKey||a.metaKey||F(l)&&32==h)||((g=l.tagName in ea)||(g=l.getAttributeNode("tabindex"),g=null!=g&&g.specified),g=!(g&&!l.disabled));g?h=!1:(l="INPUT"!=l.tagName.toUpperCase()||l.type,g=!(n in E)&&13==h,h=(0==E[n]%h||g)&&!!l)}h&&(e="clickkey")}l=a.srcElement||a.target;h=J(e,a,l,"",null);var p;for(n=l;n&&n!=this;n=n.__owner||n.parentNode){p=c=n;g=e;var q=p.__jsaction;if(!q){var w=K(p,"jsaction");if(w){q=v[w];if(!q){for(var q={},A=w.split(ka),B=0,z=A?A.length:0;B<z;B++){var t=A[B];if(t){var u=
6
- t.indexOf(":"),x=-1!=u,k=x?I(t.substr(0,u)):"click",t=x?I(t.substr(u+1)):t;q[k]=t}}v[w]=q}w=q;q={};for(k in w){A=q;B=k;b:if(z=w[k],!(0<=z.indexOf(".")))for(t=p;t;t=t.parentNode){u=t;x=u.__jsnamespace;void 0===x&&(x=K(u,"jsnamespace"),u.__jsnamespace=x);if(u=x){z=u+"."+z;break b}if(t==this)break}A[B]=z}p.__jsaction=q}else q=ma,p.__jsaction=q}"clickkey"==g?g="click":"click"!=g||q.click||(g="clickonly");p={h:g,action:q[g]||"",event:null,m:!1};if(p.m||p.action)break}p&&(h=J(p.h,p.event||a,l,p.action||
7
- "",c,h.timeStamp));h&&"touchend"==h.eventType&&(h.event._preventMouseEvents=fa);if(p&&p.action){if(k="clickkey"==e)k=y(a),k=(k.type||k.tagName).toUpperCase(),(k=32==(a.which||a.keyCode||a.key)&&"CHECKBOX"!=k)||(k=y(a),n=(k.getAttribute("role")||k.tagName).toUpperCase(),k=k.tagName.toUpperCase()in ia&&"A"!=n&&!F(k)&&!G(k)||"BUTTON"==n);k&&(a.preventDefault?a.preventDefault():a.returnValue=!1);if("mouseenter"==e||"mouseleave"==e)if(k=a.relatedTarget,!("mouseover"==a.type&&"mouseenter"==e||"mouseout"==
8
- a.type&&"mouseleave"==e)||k&&(k===c||ba(c,k)))h.action="",h.actionElement=null;else{var e={},r;for(r in a)"function"!==typeof a[r]&&"srcElement"!==r&&"target"!==r&&(e[r]=a[r]);e.type="mouseover"==a.type?"mouseenter":"mouseleave";e.target=e.srcElement=c;e.bubbles=!1;h.event=e;h.targetElement=c}}else h.action="",h.actionElement=null;c=h;b.b&&(r=J(c.eventType,c.event,c.targetElement,c.action,c.actionElement,c.timeStamp),"clickonly"==r.eventType&&(r.eventType="click"),b.b(r,!0));if(c.actionElement){"A"!=
9
- c.actionElement.tagName||"click"!=c.eventType&&"clickmod"!=c.eventType||(a.preventDefault?a.preventDefault():a.returnValue=!1);if(b.b)b.b(c);else{var D;if((r=f.document)&&!r.createEvent&&r.createEventObject)try{D=r.createEventObject(a)}catch(ta){D=a}else D=a;c.event=D;b.f.push(c)}if("touchend"==c.event.type&&c.event._mouseEventsPrevented){a=c.event;for(var ua in a);m()}}}}function J(b,d,a,c,e,n){return{eventType:b,event:d,targetElement:a,action:c,actionElement:e,timeStamp:n||m()}}
10
- function K(b,d){var a=null;"getAttribute"in b&&(a=b.getAttribute(d));return a}var ma={};function na(b,d){return function(a){var c=b,e=d,n=!1;"mouseenter"==c?c="mouseover":"mouseleave"==c&&(c="mouseout");if(a.addEventListener){if("focus"==c||"blur"==c||"error"==c||"load"==c)n=!0;a.addEventListener(c,e,n)}else a.attachEvent&&("focus"==c?c="focusin":"blur"==c&&(c="focusout"),e=ca(a,e),a.attachEvent("on"+c,e));return{h:c,g:e,l:n}}}
11
- function L(b,d){if(!b.i.hasOwnProperty(d)){var a=la(b,d),c=na(d,a);b.i[d]=a;b.j.push(c);for(a=0;a<b.a.length;++a){var e=b.a[a];e.b.push(c.call(null,e.a))}"click"==d&&L(b,"keydown")}}H.prototype.g=function(b){return this.i[b]};function M(b){var d=N,a=b.a;ja&&(a.style.cursor="pointer");for(a=0;a<d.j.length;++a)b.b.push(d.j[a].call(null,b.a))}function O(){for(var b=P,d=oa,a=0;a<d.length;++a)if(d[a].a!=b.a&&pa(d[a].a,b.a))return!0;return!1}
12
- function pa(b,d){for(;b!=d&&d.parentNode;)d=d.parentNode;return b==d};var qa=window,N=new H,ra=qa||window,sa=ra.document.documentElement,Q=new function(b){this.a=b;this.b=[]}(sa),R;a:{for(var S=0;S<N.a.length;S++)if(pa(N.a[S].a,sa)){R=!0;break a}R=!1}
13
- if(R)N.c.push(Q);else{M(Q);N.a.push(Q);for(var oa=N.c.concat(N.a),T=[],U=[],V=0;V<N.a.length;++V){var P=N.a[V];if(O()){T.push(P);for(var W=P,X=0;X<W.b.length;++X){var Y=W.a,Z=W.b[X];Y.removeEventListener?Y.removeEventListener(Z.h,Z.g,Z.l):Y.detachEvent&&Y.detachEvent("on"+Z.h,Z.g)}W.b=[]}else U.push(P)}for(V=0;V<N.c.length;++V)P=N.c[V],O()?T.push(P):(U.push(P),M(P));N.a=U;N.c=T}L(N,"click");L(N,"focus");L(N,"focusin");L(N,"blur");L(N,"focusout");L(N,"keydown");L(N,"keypress");L(N,"mouseover");L(N,"mouseout");L(N,"mouseenter");L(N,"mouseleave");L(N,"submit");L(N,"change");L(N,"input");L(N,"keyup");L(N,"mousedown");L(N,"mouseup");L(N,"touchcancel");(function(b,d){aa({trigger:function(a){var c=b.g(a.type);c||(L(b,a.type),c=b.g(a.type));c.call((a.target||a.srcElement).ownerDocument.documentElement,a)},bind:function(a){b.b=a;b.f&&(0<b.f.length&&a(b.f),b.f=null)}},d)})(N,ra);})();</script><meta content="IE=10" http-equiv="X-UA-Compatible"><link href="/store/opensearch.xml?hl=en_US" rel="search" title="Google Play" type="application/opensearchdescription+xml"><link href="android-app://com.android.vending/https/play.google.com/store/apps/details?id=com.evernote" rel="alternate"><meta content="PJKdyVFC5jlu_l8Wo_hirJkhs1cmitmn44fgpOc3zFc" name="google-site-verification"><meta content="A6H2WZG5rRIUFFopIQcyPeabS5ffxhFlhTiyhzWGPRA" name="google-site-verification"><style type="text/css">#gbar,#guser{font-size:13px;padding-top:0px !important;}#gbar{height:22px}#guser{padding-bottom:7px !important;text-align:right}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}@media all{.gb1{height:22px;margin-right:.5em;vertical-align:top}#gbar{float:left}}a.gb1,a.gb4{text-decoration:underline !important}a.gb1,a.gb4{color:#00c !important}.gbi .gb4{color:#dd8e27 !important}.gbf .gb4{color:#900 !important}
14
- </style><style type="text/css">@font-face {
15
- font-family: 'Roboto';
16
- font-style: normal;
17
- font-weight: 100;
18
- src: local('Roboto Thin'), local('Roboto-Thin'), url(//fonts.gstatic.com/s/roboto/v15/Jzo62I39jc0gQRrbndN6nfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
19
- }
20
- @font-face {
21
- font-family: 'Roboto';
22
- font-style: normal;
23
- font-weight: 300;
24
- src: local('Roboto Light'), local('Roboto-Light'), url(//fonts.gstatic.com/s/roboto/v15/Hgo13k-tfSpn0qi1SFdUfaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
25
- }
26
- @font-face {
27
- font-family: 'Roboto';
28
- font-style: normal;
29
- font-weight: 400;
30
- src: local('Roboto Regular'), local('Roboto-Regular'), url(//fonts.gstatic.com/s/roboto/v15/zN7GBFwfMP4uA6AR0HCoLQ.ttf) format('truetype');
31
- }
32
- @font-face {
33
- font-family: 'Roboto';
34
- font-style: normal;
35
- font-weight: 500;
36
- src: local('Roboto Medium'), local('Roboto-Medium'), url(//fonts.gstatic.com/s/roboto/v15/RxZJdnzeo3R5zSexge8UUaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
37
- }
38
- @font-face {
39
- font-family: 'Roboto';
40
- font-style: normal;
41
- font-weight: 700;
42
- src: local('Roboto Bold'), local('Roboto-Bold'), url(//fonts.gstatic.com/s/roboto/v15/d-6IYplOFocCacKzxwXSOKCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
43
- }
44
- @font-face {
45
- font-family: 'Roboto';
46
- font-style: italic;
47
- font-weight: 100;
48
- src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(//fonts.gstatic.com/s/roboto/v15/12mE4jfMSBTmg-81EiS-YS3USBnSvpkopQaUR-2r7iU.ttf) format('truetype');
49
- }
50
- @font-face {
51
- font-family: 'Roboto';
52
- font-style: italic;
53
- font-weight: 300;
54
- src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url(//fonts.gstatic.com/s/roboto/v15/7m8l7TlFO-S3VkhHuR0at50EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
55
- }
56
- @font-face {
57
- font-family: 'Roboto';
58
- font-style: italic;
59
- font-weight: 400;
60
- src: local('Roboto Italic'), local('Roboto-Italic'), url(//fonts.gstatic.com/s/roboto/v15/W4wDsBUluyw0tK3tykhXEfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
61
- }
62
- @font-face {
63
- font-family: 'Roboto Slab';
64
- font-style: normal;
65
- font-weight: 100;
66
- src: local('Roboto Slab Thin'), local('RobotoSlab-Thin'), url(//fonts.gstatic.com/s/robotoslab/v6/MEz38VLIFL-t46JUtkIEgH4UHu-c0cTZKOwO_f6u1Os.ttf) format('truetype');
67
- }
68
- @font-face {
69
- font-family: 'Roboto Slab';
70
- font-style: normal;
71
- font-weight: 300;
72
- src: local('Roboto Slab Light'), local('RobotoSlab-Light'), url(//fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJbfB31yxOzP-czbf6AAKCVo.ttf) format('truetype');
73
- }
74
- @font-face {
75
- font-family: 'Roboto Slab';
76
- font-style: normal;
77
- font-weight: 400;
78
- src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(//fonts.gstatic.com/s/robotoslab/v6/y7lebkjgREBJK96VQi37Zp0EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
79
- }
80
- @font-face {
81
- font-family: 'Roboto Slab';
82
- font-style: normal;
83
- font-weight: 700;
84
- src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(//fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJZ_TkvowlIOtbR7ePgFOpF4.ttf) format('truetype');
85
- }
86
- </style><link type='text/css' rel='stylesheet' href='//www.gstatic.com/_/play/_/ss/k=play.ss.1it4tzoc0qi2i.L.X.O/m=l/d=0/rs=AGlW0sbUgtCVXm3aMooke8qP25I43k54eQ'/><link type='text/css' rel='stylesheet' href='//www.gstatic.com/_/play/_/ss/k=play.ss.1it4tzoc0qi2i.L.X.O/m=l2/d=0/excm=l/ed=1/rs=AGlW0sbUgtCVXm3aMooke8qP25I43k54eQ'/><link href="//www.gstatic.com/android/market_images/web/favicon_v2.ico" rel="shortcut icon"><script type="text/javascript"></script><title id="main-title">Evernote - stay organized. - Android Apps on Google Play</title><meta content="Use Evernote to make notes, remember everything and collaborate on any project." name="description"><meta content="NOODP" name="robots"><link href="https://play.google.com/store/apps/details?id=com.evernote" rel="canonical"><link href="https://play.google.com/store/apps/details?id=com.evernote" hreflang="x-default" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=af" hreflang="af" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=ms" hreflang="ms" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=ca" hreflang="ca" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=cs" hreflang="cs" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=da" hreflang="da" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=de" hreflang="de" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=et" hreflang="et" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=en_GB" hreflang="en_GB" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=en" hreflang="en" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=es" hreflang="es" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=es_419" hreflang="es_419" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=fil" hreflang="fil" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=fr_CA" hreflang="fr_CA" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=fr" hreflang="fr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=hr" hreflang="hr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=in" hreflang="in" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=zu" hreflang="zu" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=it" hreflang="it" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=sw" hreflang="sw" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=lv" hreflang="lv" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=lt" hreflang="lt" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=hu" hreflang="hu" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=nl" hreflang="nl" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=no" hreflang="no" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=pl" hreflang="pl" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=pt_BR" hreflang="pt_BR" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=pt_PT" hreflang="pt_PT" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=ro" hreflang="ro" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=sk" hreflang="sk" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=sl" hreflang="sl" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=fi" hreflang="fi" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=sv" hreflang="sv" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=vi" hreflang="vi" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=tr" hreflang="tr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=el" hreflang="el" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=be" hreflang="be" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=bg" hreflang="bg" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=ru" hreflang="ru" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=sr" hreflang="sr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=uk" hreflang="uk" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=ar" hreflang="ar" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=am" hreflang="am" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=hi" hreflang="hi" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=th" hreflang="th" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=ko" hreflang="ko" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=zh_HK" hreflang="zh_HK" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=ja" hreflang="ja" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=zh_CN" hreflang="zh_CN" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=zh_TW" hreflang="zh_TW" rel="alternate"><meta content="website" property="og:type"><meta content="Evernote - stay organized. - Android Apps on Google Play" property="og:title"><meta content="https://play.google.com/store/apps/details?id=com.evernote" property="og:url"><script type="text/javascript">(function(){var trackingId='UA-19995903-1';(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
87
- })(window,document,'script','//www.google-analytics.com/analytics.js','play_ga');play_ga('create',trackingId);})();</script></head><body jscontroller="W98pGb" jsmodel="tIclve" class="no-focus-outline" data-page-server-cookie="" jsaction="rcuQ6b:rcuQ6b"><div class="exports-controller" jscontroller="nW6Ps" jsaction="rcuQ6b:rcuQ6b"> <div jscontroller="Oqzoie" jsaction="rcuQ6b:rcuQ6b" jsid="cWJEXd" aria-hidden="true" style="display:none"></div> <div jscontroller="GwTZHe" jsname="YBV3Qc" aria-hidden="true" style="display:none"></div> <div jscontroller="ruD2Lc" jsaction="rcuQ6b:rcuQ6b" jsid="ckLvgd" aria-hidden="true" style="display:none"></div> <div jscontroller="kPgATb" jsaction="rcuQ6b:rcuQ6b" jsid="bpGqMc" aria-hidden="true" style="display:none"></div> <div jscontroller="lW11I" jsaction="rcuQ6b:rcuQ6b" jsid="Kyke" aria-hidden="true" style="display:none"></div> <div jscontroller="sZzYte" jsname="j8fyN" aria-hidden="true" style="display:none"></div> <div jscontroller="qoVwNc" jsname="bXVAae" aria-hidden="true" style="display:none"></div> <div jscontroller="DSu7Id" jsaction="rcuQ6b:rcuQ6b" jsid="s1WrZb" aria-hidden="true" style="display:none"></div> <div jscontroller="KrKwmf" jsaction="rcuQ6b:rcuQ6b" jsid="oN63A" aria-hidden="true" style="display:none"></div> <div jscontroller="XyGpve" jsaction="rcuQ6b:rcuQ6b" jsid="DjeHHf" aria-hidden="true" style="display:none"></div> <div jscontroller="eDmQYe" jsaction="rcuQ6b:rcuQ6b" jsid="kv4dP" aria-hidden="true" style="display:none"></div> <div jscontroller="l88Qmf" jsaction="rcuQ6b:rcuQ6b" jsid="F0Shh" aria-hidden="true" style="display:none"></div> <div jscontroller="bsXnnd" jsaction="rcuQ6b:rcuQ6b" jsid="vebwY" aria-hidden="true" style="display:none"></div> <div jscontroller="r8KIR" jsaction="rcuQ6b:rcuQ6b" jsid="RrzaCb" aria-hidden="true" style="display:none"></div> <div jscontroller="MTZ8td" jsaction="rcuQ6b:rcuQ6b" jsid="lj1M3d" aria-hidden="true" style="display:none"></div> <div jscontroller="PsOe6e" jsaction="rcuQ6b:rcuQ6b" jsid="uRW8Hc" aria-hidden="true" style="display:none"></div> <div jscontroller="ZzwEmb" jsaction="rcuQ6b:rcuQ6b" jsid="tz9uec" aria-hidden="true" style="display:none"></div> <div jscontroller="HozgP" jsaction="rcuQ6b:rcuQ6b" jsid="BAnWfc" aria-hidden="true" style="display:none"></div> <div jscontroller="AO5Sn" jsname="iTLdMd" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="TfvoCd" jsaction="rcuQ6b:rcuQ6b" jsid="IIjvCf" aria-hidden="true" style="display:none"></div> <div jscontroller="KIL8ye" jsaction="rcuQ6b:rcuQ6b" jsid="kbwoAc" aria-hidden="true" style="display:none"></div> <div jscontroller="Mdud6e" jsaction="rcuQ6b:rcuQ6b" jsid="KdZzQc" aria-hidden="true" style="display:none"></div> <div jscontroller="UHw3ec" jsaction="rcuQ6b:WaUj5e" jsid="LKidnb" aria-hidden="true" style="display:none"></div> <div jscontroller="ytepuf" jsaction="rcuQ6b:rcuQ6b" jsid="sVkCQd" aria-hidden="true" style="display:none"></div> <div jscontroller="ikRapd" jsaction="rcuQ6b:rcuQ6b" jsid="wr9wlf" aria-hidden="true" style="display:none"></div> <div jscontroller="vhibMc" jsname="YZUbh" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="kaKwge" jsname="SxWQk" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="a9ZUbe" jsaction="rcuQ6b:rcuQ6b" jsid="RnalDd" aria-hidden="true" style="display:none"></div> <div jscontroller="C9GUfc" jsaction="rcuQ6b:Rayp9d" jsid="tu7Lvd" aria-hidden="true" style="display:none"></div> <div jscontroller="epH9Oe" jsaction="rcuQ6b:rcuQ6b" jsid="bWnBoe" aria-hidden="true" style="display:none"></div> <div jscontroller="bPmHCb" jsaction="rcuQ6b:rcuQ6b" jsid="qtBlid" aria-hidden="true" style="display:none"></div> <div jscontroller="QA6GN" jsname="Q9oe6" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="cFXAie" jsaction="rcuQ6b:rcuQ6b" jsid="HytyXe" aria-hidden="true" style="display:none"></div> <div jscontroller="JrpMz" jsaction="rcuQ6b:rcuQ6b" jsid="aA8rpd" aria-hidden="true" style="display:none"></div> <div jscontroller="vDC9tb" jsaction="rcuQ6b:rcuQ6b" jsid="BeORrc" aria-hidden="true" style="display:none"></div> <div jscontroller="XO8nne" jsaction="rcuQ6b:rcuQ6b" jsid="WGUPf" aria-hidden="true" style="display:none"></div> <div jscontroller="WeJJhe" jsname="yvOiYb" aria-hidden="true" style="display:none"></div> <div jscontroller="n0yTLc" jsaction="rcuQ6b:rcuQ6b" jsid="nYgjCf" aria-hidden="true" style="display:none"></div> <div jscontroller="SmMcVd" jsname="mzgKYb" aria-hidden="true" style="display:none"></div> <div jscontroller="l8Wiqc" jsname="rq3vtb" aria-hidden="true" style="display:none"></div> <div jscontroller="Twm5Zc" jsname="x5Ei5c" aria-hidden="true" style="display:none"></div> <div jscontroller="Nqs1f" jsname="fEGBrd" jsaction="rcuQ6b:rcuQ6b" jsid="fEGBrd" aria-hidden="true" style="display:none"> <div jscontroller="qoVwNc" jsname="bXVAae" jsid="bXVAae" aria-hidden="true" style="display:none"></div> <div jscontroller="JYKBLd" jsname="WgWZrc" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="jO3TP" jsname="ODkgAf" jsaction="rcuQ6b:rcuQ6b" jsid="ODkgAf" aria-hidden="true" style="display:none"></div> <div jscontroller="PNVjMb" jsname="Jmc6Od" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> <div jscontroller="YK1sC" jsname="DCaEEd" jsaction="rcuQ6b:rcuQ6b" aria-hidden="true" style="display:none"></div> </div> </div><div jscontroller="BngI6" class="keyboard-shortcuts-controller" aria-hidden="true" jsaction="rcuQ6b:rcuQ6b" style="display:none"></div><div jscontroller="XmMFlb" jsaction="rcuQ6b:npT2md;submit:GNwXB;input:w2SLu;focus:qKoZef"><div id=gbar><nobr><a class=gb1 href="https://www.google.com/webhp?tab=8w">Search</a> <a class=gb1 href="http://www.google.com/imghp?hl=en&tab=8i">Images</a> <a class=gb1 href="https://maps.google.com/maps?hl=en&tab=8l">Maps</a> <b class=gb1>Play</b> <a class=gb1 href="https://www.youtube.com/?tab=81">YouTube</a> <a class=gb1 href="https://news.google.com/nwshp?hl=en&tab=8n">News</a> <a class=gb1 href="https://mail.google.com/mail/?tab=8m">Gmail</a> <a class=gb1 href="https://drive.google.com/?tab=8o">Drive</a> <a class=gb1 style="text-decoration:none" href="https://www.google.com/intl/en/options/"><u>More</u> &raquo;</a></nobr></div></div><div id="offscreen-renderer" style="position:fixed;top:-100000px;left:-100000px;opacity:0"></div><div class="wrapper wrapper-with-footer" id="wrapper"><div jscontroller="KLl4Ne" style="display:block" jsaction="rcuQ6b:rcuQ6b"> <div class="id-nav-container nav-container hover-zone" style="visibility:hidden" data-server-cookie="CAMiGwgBEAAaFRITCg12ZXJ0aWNhbF9tZW51EBoYAA==" data-uitype="418"> <span class="show-all-hover-zone"> <span class="hover-arrow"></span> </span> <ul class="nav id-corpus-nav-list corpus-nav-list newicon" role="navigation"> <li class="nav-list-item id-track-click apps" data-backend="3" data-server-cookie="CAQqBggDEAMoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change selected" href="/store/apps"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Apps </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="103"> <a class="library-link id-no-menu-change" href="/apps"> My apps </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/apps"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/apps/category/GAME"> Games </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/apps/category/FAMILY"> Family </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/apps/collection/editors_choice"> Editors' Choice </a> </li> </ul> </li> <li class="nav-list-item id-track-click movies-tv" data-backend="4" data-server-cookie="CAQqBggDEAQoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/movies"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Movies & TV </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="105"> <a class="library-link id-no-menu-change" href="/movies"> My movies & TV </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/movies"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/category/TV"> TV </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/category/FAMILY"> Family </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/collection/promotion_collections_movie_studios"> Studios </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/collection/promotion_collections_tv_networks"> Networks </a> </li> </ul> </li> <li class="nav-list-item id-track-click music" data-backend="2" data-server-cookie="CAQqBggDEAIoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/music"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Music </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="104"> <a class="library-link id-no-menu-change id-no-nav" href="/music?authuser"> My music </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/music"> Shop </a> </li> </ul> </li> <li class="nav-list-item id-track-click books" data-backend="1" data-server-cookie="CAQqBggDEAEoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/books"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Books </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="106"> <a class="library-link id-no-menu-change id-no-nav" href="/books"> My books </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/books"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/books/category/coll_1401"> Comics </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/books/collection/promotion_1001a15_textbooks"> Textbooks </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/books/category/coll_1689"> Children's Books </a> </li> </ul> </li> <li class="nav-list-item id-track-click magazines" data-backend="6" data-server-cookie="CAQqBggDEAYoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/newsstand"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title non-breaking-cjk"> Newsstand </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="library-link id-no-menu-change id-track-click" data-uitype="121" href="/newsstand"> My newsstand </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/newsstand"> Shop </a> </li> </ul> </li> <li class="nav-list-item id-track-click devices" data-backend="5" data-server-cookie="CAQqBggDEAUoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/devices"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Devices </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/devices"> Shop </a> </li> </ul> </li> <li class="nav-list-item id-track-click entertainment" data-backend="0" data-server-cookie="CAQqBggDEAAoBA==" data-uitype="101" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Entertainment </span> </span> </a> </li> </ul> <div> <ul class="id-sub-nav-store shared-sub-nav"> <li class="secondary-sub-nav-option id-track-click" data-uitype="110"> <a class="sub-nav-link id-no-menu-change" href="/store/account"> <span>My account</span> </a> </li> <li class="secondary-sub-nav-option id-track-click" data-uitype="123"> <a class="sub-nav-link id-no-menu-change" href="/store/myplayactivity"> My Play activity </a> </li> <li class="secondary-sub-nav-option id-track-click" data-uitype="108"> <a class="sub-nav-link id-no-menu-change" href="/wishlist"> My wishlist </a> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen redeem-option id-track-click" data-uitype="109"> <button class="sub-nav-link id-no-menu-change id-no-nav"> Redeem </button> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen id-track-click" data-uitype="125"> <a class="sub-nav-link" href="/store/gift"> Send gift </a> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen id-track-click" data-uitype="128"> <button class="sub-nav-link id-no-menu-change topup-link"> Add credit </button> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen id-track-click"> <a class="sub-nav-link id-no-menu-change" href="https://support.google.com/googleplay?p=pff_parentguide"> Parent Guide </a> </li> </ul> </div> </div> </div><div class="butterbar-container"><span id="butterbar"></span></div><div class="body-content-loading-overlay" style="display:none"><div class="body-content-loading-spinner"></div></div><script>(function(){window._sc='[[\x22/store/permissionsupdate\x22,\x22\x22,\x22/store\x22,\x22/store/account\x22,\x22/store/movies\x22,\x22/store/music\x22,\x22/store/books\x22,\x22/store/newsstand\x22,\x22/store/apps\x22,\x22/store/devices\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d0\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d4\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d1\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d6\x22,null,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d2\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d3\x22,\x22https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d5\x22,null,\x22/\x22,\x22/play/log?format\\u003djson\x22,null,\x22https://play.google.com/intl/en-US_us/about/play-terms.html\x22,\x22https://support.google.com/googleplay/answer/2479637?topic\\u003d2450225\\u0026hl\\u003den_US\x22,null,\x22/store/install\x22,null,\x22/wishlist\x22,\x22/movies\x22,\x22/music?authuser\x22,\x22/books\x22,\x22/newsstand\x22,\x22/apps\x22,\x22/store/xhr/enablegpr\x22,\x22/store/xhr/deletereview\x22,\x22/store/xhr/ructx\x22,\x22/store/xhr/getuseraddress\x22,\x22/store/submitreview\x22,\x22/store/addtocart\x22,\x22/store/xhr/updatecart\x22,\x22https://www.gstatic.com/play/store/web/swf/4musicplayer.swf\x22,\x22/store/xhr/rapcategories\x22,\x22/store/xhr/rapsubmit\x22,\x22/store/xhr/puc\x22,\x22/store/xhr/pulc\x22,\x22/store/xhr/getwatchembed\x22,\x22https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d86400\x22,\x22https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d0\x22,null,\x22/store/xhr/mul\x22,\x22/store/xhr/getdoc\x22,\x22http://support.google.com/mobile/?p\\u003dbooks_formats\x22,\x22http://support.google.com/mobile/?p\\u003dbooks_devices\x22,\x22http://support.google.com/mobile/?p\\u003dbooks_androidapp\x22,\x22http://support.google.com/mobile/?p\\u003dbooks_iosapp\x22,\x22http://support.google.com/googleplay/bin/answer.py?answer\\u003d1062502\\u0026topic\\u003d1187416\\u0026ctx\\u003dtopic\x22,\x22/store/apps/details?id\\u003dcom.google.android.apps.books\x22,\x22/store/apps/details?id\\u003dcom.google.android.music\x22,\x22/store/apps/details?id\\u003dcom.google.android.videos\x22,\x22/store/apps/details?id\\u003dcom.google.android.apps.magazines\x22,\x22/store/xhr/topupopts\x22,\x22/store/setuserdata\x22,\x22/store/xhr/buynoco\x22,\x22/store/apps/collection/editors_choice\x22,\x22/store/apps/category/GAME\x22,\x22/store/account\x22,\x22/redeem\x22,null,\x22/store/cart?modTime\\u003d0\x22,\x22/store/xhr/cancelsub\x22,\x22/store/xhr/dfph\x22,\x22/store/gift\x22,\x22/store/movies/category/MOVIE\x22,\x22/store/movies/category/TV\x22,\x22/store/cancelpreorder\x22,\x22http://support.google.com/googleplay/devices\x22,\x22/settings\x22,\x22/store/ratereview\x22,\x22/store/getdevicepermissions\x22,\x22/store/xhr/hide\x22,\x22/store/getreviews\x22,\x22/store/movies/collection/promotion_collections_movie_studios\x22,\x22/store/movies/collection/promotion_collections_tv_networks\x22,\x22/store/xhr/canceldeviceorder\x22,\x22https://plus.google.com\x22,\x22https://wallet.google.com/updateCreditCard\x22,\x22/store/books/collection/promotion_1001a15_textbooks\x22,\x22/store/xhr/experimenttoggler\x22,\x22https://support.google.com/googleplay/?p\\u003dremote_install_error\x22,null,\x22/store/onewayredeem\x22,\x22https://wallet.google.com/legaldocument?docId\\u003d0.buyertos/US/2/1/und\x22,\x22/store/xhr/getvariantrec\x22,\x22https://wallet.google.com/legaldocument?family\\u003d0.privacynotice\\u0026hl\\u003den_US\x22,\x22https://play.google.com/intl/en-US_us/about/redeem-terms.html\x22,\x22/store/ees/xhr/prepur\x22,\x22/store/ees/xhr/comppurch\x22,\x22/store/xhr/getsimilarcluster\x22,\x22/store/xhr/getreviewannotation\x22,\x22/store/xhr/dismisssug\x22,\x22/store/xhr/getartistalbums\x22,\x22/store/myplayactivity\x22,\x22/store/opensearch.xml\x22,\x22https://ageverification.google.co.kr/ageverification?cl\\u003d1\\u0026hl\\u003dko\\u0026authuser\x22,\x22https://support.google.com/websearch/answer/4358949?ref_topic\\u003d3285072\\u0026hl\\u003dko\x22,\x22https://support.google.com/googleplay/?p\\u003dreport_content\x22,null,\x22/store/order\x22,\x22https://play.google.com/intl/en-US_us/about/promo-terms.html\x22,\x22/store/xhr/gbp\x22,\x22/store/xhr/uninstall\x22,\x22/store/xhr/searchcontent\x22,\x22/store/approveitem\x22,\x22\x22,\x22/store/licenses/apps\x22,\x22/store/unapproveitem\x22,\x22/store/xhr/pglc\x22,\x22/store/xhr/assign\x22,\x22https://wallet.google.com\x22,\x22/store/xhr/accepttos\x22,\x22\x22,\x22/store/xhr/getassignments\x22,\x22/store/xhr/guided_help_get\x22,\x22/store/xhr/guided_help_set\x22,\x22/store/xhr/pp\x22,\x22/store/xhr/cp\x22,\x22/store/chrome\x22,\x22/store/teacheraccess\x22,\x22/store/apps/category/FAMILY\x22,\x22https://sandbox.google.com\x22,\x22/store/xhr/edu_get_enc_po_signup\x22,\x22/store/xhr/edu_create_po\x22,null,\x22/store/xhr/edu_getdelegatedusers\x22,\x22/store/pos\x22,\x22/store/books/category/coll_1689\x22,\x22/store/xhr/user_install\x22,\x22/store/movies/category/FAMILY\x22,\x22/store/xhr/getbulkpurchasehistory\x22,\x22/store/xhr/delegate\x22,\x22/store/xhr/edu_get_currency_code\x22,\x22https://support.google.com/googleplay/work/answer/6170898\x22,\x22/store/xhr/getpos\x22,\x22/store/xhr/grouplicenserefund\x22,\x22/store/xhr/ttd\x22,\x22/store/xhr/ttp\x22,\x22/store/xhr/managecontent\x22,\x22/store/xhr/getuseremail\x22,\x22/store/checkoutcart\x22,\x22/store/xhr/edu_ggast\x22,\x22/store/xhr/asa\x22,\x22/store/xhr/edu_getpodelegatedusers\x22,\x22/store/xhr/delegate_po\x22,\x22https://support.google.com/googleplay?p\\u003dpff_parentguide\x22,\x22https://support.google.com/googleplay?p\\u003dappgame_ratings\x22,\x22/store/xhr/edu_start_po_setup\x22,\x22https://support.google.com/googleplay/?p\\u003dpage_count_issues\x22,\x22https://support.google.com/books/partner/contact/report_offensive_content\x22,\x22/store/ereview\x22,\x22https://accounts.google.com/AccountChooser?service\\u003dgoogleplay\x22,\x22https://support.google.com/googleplay/answer/3401166#readaloud\x22,\x22/store/myrewards\x22,\x22/store/xhr/addresswidgetdata\x22,\x22/music/listen?signup\\u003d1\\u0026utm_source\\u003dplaystore\\u0026utm_medium\\u003dalbum_detail_page\\u0026utm_campaign\\u003d30daytrial\x22,\x22/store/xhr/edu_getdevicepermissions\x22,\x22/store/getfamilywalletsettings\x22,\x22/store/xhr/setfamilywalletsettings\x22,\x22https://play.google.com/intl/en-US_us/about/gift-terms.html\x22,\x22https://payments.google.com\x22,\x22https://store.google.com/terms/google_store_promo_codes\x22,\x22http://www.google.com/intl/en-US_us/policies/privacy/\x22,\x22/store/books/category/coll_1401\x22,\x22/store/xhr/recordtos\x22,null,\x22http://play.google.com/intl/en-US_us/about/giftcards/index.html?utm_source\\u003dplayui\\u0026utm_medium\\u003dlink\\u0026utm_campaign\\u003ddigitalgifts#giftcards-retailers\x22,\x22/store/xhr/addresswidgetdata\x22,\x22https://www.ftc.gov/system/files/documents/cases/140904googleplayorder.pdf\x22,\x22/store/xhr/createenterprise\x22,\x22/store/xhr/ent_prepurch\x22,\x22/store/xhr/ent_comppurch\x22,\x22/store/xhr/usi\x22,\x22https://payments.google.com/payments/v4/js/integrator.js?ss\\u003dn\x22,\x22/store/xhr/sharepurchase\x22,\x22https://clients2.google.com/gr/gr_sync.js\x22]\n,1,1,[\x22/store/search\x22,\x22Search\x22]\n,\x22UA-19995903-1\x22,\x22PROD\x22,1,\x22https://wallet.google.com/payments/widgets/instrument_creator.js\x22,60000,0,\x221\x22,0,1,1,0]\n';})();</script><script>(function(){window._uc='[null,\x22\x22,\x22en\x22,\x22US\x22,[[\x22b023b0c4\x22,null,1,\x22enable_music_preview_rights\x22]\n,[\x229cd547a3\x22,null,1,\x22enable_enable_scs\x22]\n,[\x2283a1c766\x22,null,1,\x22enable_grouping_app_permissions\x22]\n,[\x22ab23480d\x22,null,1,\x22enable_ads_supported_label_for_all_apps\x22]\n,[\x225d382d8c\x22,null,1,\x22enable_entertainment_home_home\x22]\n,[\x2237ad289c\x22,null,1,\x22enable_hardware_cancel_redirect_on_success\x22]\n,[\x22f6caf8fb\x22,null,1,\x22enable_in_app_rap_fix\x22]\n,[\x226c45bbf7\x22,null,1,\x22enable_books_family_store\x22]\n,[\x22b744e4cb\x22,null,1,\x22enable_signout_options_for_logout\x22]\n,[\x2226edeec1\x22,null,1,\x22enable_hydra_icons\x22]\n,[\x22cfc83a8f\x22,null,1,\x22enable_movie_device_setup_page\x22]\n,[\x2229e13522\x22,null,1,\x22enable_hd_availability_tv_strings\x22]\n,[\x2286cd3d0c\x22,null,1,\x22enable_newsstand_details_page_redesign\x22]\n,[\x22fd2d7ae8\x22,null,1,\x22enable_loonie_for_newsstand\x22]\n,[\x22d0e25706\x22,null,1,\x22enable_movies_family_store\x22]\n,[\x2272b063b1\x22,null,1,\x22enable_movies_chrome_app_integration\x22]\n,[\x221e72ba8d\x22,null,1,\x22enable_flag_inappropriate\x22]\n,[\x22758f5f1b\x22,null,1,\x22enable_money_with_add_on\x22]\n,[\x22c4ce7ad4\x22,null,1,\x22enable_smith_redirect\x22]\n,[\x22e38df948\x22,null,1,\x22enable_finsky_wishlist_icon_adjust\x22]\n,[\x22860ff220\x22,null,1,\x22enable_enterprise_loonie\x22]\n,[\x22fd0884cc\x22,null,1,\x22enable_inapp_purchase_text\x22]\n,[\x22cd9bd9ce\x22,null,1,\x22enable_mobile_video_trailer\x22]\n,[\x222b277ce0\x22,null,1,\x22enable_glass_discount\x22]\n,[\x222f20b378\x22,null,1,\x22enable_family_wallet\x22]\n]\n,0,null,0,null,null,[]\n,null,0,[\x22nocache:apps_family_store_enabled\x22,\x22nocache:books_family_store_enabled\x22,\x22nocache:laz\x22,\x22nocache:luffy_search_clusters_v1d:launch\x22,\x22nocache:movies_family_store_enabled\x22,\x22nocache:payments_flow_for_add_paypal\x22,\x22nocache:payments_flow_for_setup_stored_value\x22,\x22nocache:payments_flow_for_update_profile_at_purchase\x22,\x22signed-out\x22]\n,[5500233,5500131,5500079,5500166,5500344,5500185,5500356,5500133,5500348,5500216,5500125,5500162,5500276,5500211,5500217,5500120,5500165,5500112,5500186,5500033,5500267,5500259,5500364,5500118,5500286,5500172,5500285]\n,null,null,null,\x22en-US\x22,[2,null,null,null,null,null,null,null,[\x22en_US\x22]\n]\n,[]\n,\x22United States\x22,\x2295d84a1c-6dbe-4714-9111-97cfcefa2470\x22]\n';})();</script><script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script><script src="//www.gstatic.com/_/play/_/js/k=play.js.en_US.EYALm8JT1Lk.O/m=base,m,i/rt=j/d=1/rs=AGlW0sY38yKTnmsJep9BHsMX5mykBECzKQ" id="base-js"></script><script>pressPlay();</script><script type="text/javascript">(function(){var locale='';window.___gcfg = {lang:locale,parsetags:'explicit'
88
- };})();</script><div class="id-body-content-beginning" aria-labelledby="main-title" tabindex="-1"></div><div class="action-bar-container" role="navigation" jsl="$t t-mtgV572_Ih8;$x 0;"> <div class="id-action-bar-inner action-bar-inner"> <div class="action-bar apps" jsl="$x 1;" jsan="7.action-bar,7.apps"> <div jsinstance="0" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;$t t-QH4hoG9vrLo;$x 0;" class="action-bar-dropdown-container" jsan="t-QH4hoG9vrLo,7.action-bar-dropdown-container"> <div class="action-bar-dropdown"> <button class="action-bar-dropdown-top" aria-controls="action-dropdown-children-Categories" aria-owns="action-dropdown-children-Categories" id="action-dropdown-parent-Categories" aria-expanded="false" aria-haspopup="true" jsl="$x 1;" jsan="7.action-bar-dropdown-top,0.aria-controls,0.aria-owns,0.id,0.aria-expanded,0.aria-haspopup"> <span class="title" jsl="$x 2;" jsan="7.title">Categories</span> <span class="dropdown-icon"></span> </button> </div> <div class="name-edit-toggle" style="display:none"> <input class="edit-field-text" value="Categories" maxlength="50" size="18" type="text" jsl="$x 3;"> </div> <div class="action-bar-dropdown-children-container" aria-labelledby="action-dropdown-parent-Categories" id="action-dropdown-children-Categories" jsl="$x 4;" style="display:none"> <div class="dropdown-submenu" jsl="$x 5;" jsan="7.dropdown-submenu"> <ul jsl="$x 6;"> <li jsinstance="0" class="action-dropdown-outer-list-item list-item" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item,7.list-item"> <ul jsl="$x 8;$t t-lkJy1hChpmQ;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;" style="display:none"> <a href="#" title="" jsl="$x 2;" jsan="8.href,0.title"></a> </li> <li class="submenu-divider" jsl="$x 3;" style="display:none"></li> <li jsinstance="0" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/ANDROID_WEAR" title="Android Wear" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Android Wear</a> </li><li jsinstance="1" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/BOOKS_AND_REFERENCE" title="Books &amp; Reference" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Books &amp; Reference</a> </li><li jsinstance="2" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/BUSINESS" title="Business" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Business</a> </li><li jsinstance="3" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/COMICS" title="Comics" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Comics</a> </li><li jsinstance="4" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/COMMUNICATION" title="Communication" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Communication</a> </li><li jsinstance="5" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/EDUCATION" title="Education" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Education</a> </li><li jsinstance="6" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/ENTERTAINMENT" title="Entertainment" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Entertainment</a> </li><li jsinstance="7" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FINANCE" title="Finance" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Finance</a> </li><li jsinstance="8" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/HEALTH_AND_FITNESS" title="Health &amp; Fitness" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Health &amp; Fitness</a> </li><li jsinstance="9" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/LIBRARIES_AND_DEMO" title="Libraries &amp; Demo" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Libraries &amp; Demo</a> </li><li jsinstance="10" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/LIFESTYLE" title="Lifestyle" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Lifestyle</a> </li><li jsinstance="11" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/APP_WALLPAPER" title="Live Wallpaper" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Live Wallpaper</a> </li><li jsinstance="12" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MEDIA_AND_VIDEO" title="Media &amp; Video" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Media &amp; Video</a> </li><li jsinstance="13" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MEDICAL" title="Medical" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Medical</a> </li><li jsinstance="14" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MUSIC_AND_AUDIO" title="Music &amp; Audio" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Music &amp; Audio</a> </li><li jsinstance="15" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/NEWS_AND_MAGAZINES" title="News &amp; Magazines" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">News &amp; Magazines</a> </li><li jsinstance="16" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PERSONALIZATION" title="Personalization" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Personalization</a> </li><li jsinstance="17" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PHOTOGRAPHY" title="Photography" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Photography</a> </li><li jsinstance="18" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PRODUCTIVITY" title="Productivity" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Productivity</a> </li><li jsinstance="19" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SHOPPING" title="Shopping" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Shopping</a> </li><li jsinstance="20" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SOCIAL" title="Social" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Social</a> </li><li jsinstance="21" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SPORTS" title="Sports" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Sports</a> </li><li jsinstance="22" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TOOLS" title="Tools" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Tools</a> </li><li jsinstance="23" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TRANSPORTATION" title="Transportation" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Transportation</a> </li><li jsinstance="24" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TRAVEL_AND_LOCAL" title="Travel &amp; Local" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Travel &amp; Local</a> </li><li jsinstance="25" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/WEATHER" title="Weather" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Weather</a> </li><li jsinstance="*26" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/APP_WIDGETS" title="Widgets" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Widgets</a> </li> </ul> <div jsl="$x 9;" style="display:none"></div> </li><li jsinstance="1" class="action-dropdown-outer-list-item list-item" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item,7.list-item"> <ul jsl="$x 8;$t t-lkJy1hChpmQ;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;"> <a class="parent-submenu-link" href="/store/apps/category/GAME" title="Games" jsl="$x 2;" jsan="7.parent-submenu-link,8.href,0.title">Games</a> </li> <li class="submenu-divider" jsl="$x 3;"></li> <li jsinstance="0" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ACTION" title="Action" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Action</a> </li><li jsinstance="1" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ADVENTURE" title="Adventure" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Adventure</a> </li><li jsinstance="2" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ARCADE" title="Arcade" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Arcade</a> </li><li jsinstance="3" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_BOARD" title="Board" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Board</a> </li><li jsinstance="4" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CARD" title="Card" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Card</a> </li><li jsinstance="5" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CASINO" title="Casino" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Casino</a> </li><li jsinstance="6" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CASUAL" title="Casual" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Casual</a> </li><li jsinstance="7" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_EDUCATIONAL" title="Educational" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Educational</a> </li><li jsinstance="8" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_MUSIC" title="Music" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Music</a> </li><li jsinstance="9" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_PUZZLE" title="Puzzle" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Puzzle</a> </li><li jsinstance="10" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_RACING" title="Racing" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Racing</a> </li><li jsinstance="11" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ROLE_PLAYING" title="Role Playing" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Role Playing</a> </li><li jsinstance="12" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_SIMULATION" title="Simulation" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Simulation</a> </li><li jsinstance="13" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_SPORTS" title="Sports" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Sports</a> </li><li jsinstance="14" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_STRATEGY" title="Strategy" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Strategy</a> </li><li jsinstance="15" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_TRIVIA" title="Trivia" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Trivia</a> </li><li jsinstance="*16" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_WORD" title="Word" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Word</a> </li> </ul> <div jsl="$x 9;" style="display:none"></div> </li><li jsinstance="*2" class="action-dropdown-outer-list-item list-item" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item,7.list-item"> <ul jsl="$x 8;$t t-lkJy1hChpmQ;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;"> <a class="parent-submenu-link" href="/store/apps/category/FAMILY" title="Family" jsl="$x 2;" jsan="7.parent-submenu-link,8.href,0.title">Family</a> </li> <li class="submenu-divider" jsl="$x 3;"></li> <li jsinstance="0" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY?age=AGE_RANGE1" title="Ages 5 &amp; Under" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Ages 5 &amp; Under</a> </li><li jsinstance="1" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY?age=AGE_RANGE2" title="Ages 6-8" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Ages 6-8</a> </li><li jsinstance="2" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY?age=AGE_RANGE3" title="Ages 9 &amp; Up" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Ages 9 &amp; Up</a> </li><li jsinstance="3" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/info/collection/promotion_family_popular_characters" title="Popular Characters" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Popular Characters</a> </li><li jsinstance="4" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_ACTION" title="Action &amp; Adventure" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Action &amp; Adventure</a> </li><li jsinstance="5" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_BRAINGAMES" title="Brain Games" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Brain Games</a> </li><li jsinstance="6" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_CREATE" title="Creativity" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Creativity</a> </li><li jsinstance="7" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_EDUCATION" title="Education" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Education</a> </li><li jsinstance="8" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_MUSICVIDEO" title="Music &amp; Video" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Music &amp; Video</a> </li><li jsinstance="*9" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FAMILY_PRETEND" title="Pretend Play" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Pretend Play</a> </li> </ul> <div jsl="$x 9;" style="display:none"></div> </li> </ul> </div> </div> </div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="1" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="2" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-j5pjMgcfXGc;$x 0;" class="action-bar-link" jsan="t-j5pjMgcfXGc,7.action-bar-link"> <a class="action-bar-link-title anchor" aria-selected="false" href="/store/apps" jsl="$x 1;" jsan="7.action-bar-link-title,7.anchor,0.aria-selected,8.href">Home</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="3" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-j5pjMgcfXGc;$x 0;" class="action-bar-link" jsan="t-j5pjMgcfXGc,7.action-bar-link"> <a class="action-bar-link-title anchor" aria-selected="false" href="/store/apps/top" jsl="$x 1;" jsan="7.action-bar-link-title,7.anchor,0.aria-selected,8.href">Top Charts</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="4" jsl="$x 2;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-j5pjMgcfXGc;$x 0;" class="action-bar-link" jsan="t-j5pjMgcfXGc,7.action-bar-link"> <a class="action-bar-link-title anchor" aria-selected="false" href="/store/apps/new" jsl="$x 1;" jsan="7.action-bar-link-title,7.anchor,0.aria-selected,8.href">New Releases</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="*5" jsl="$x 2;$t t-GqOCazsd7cI;$x 0;" class="action-bar-aux" jsan="t-GqOCazsd7cI,7.action-bar-aux"> <div jsinstance="0" jsl="$x 1;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item" jsan="t-RAKlAzbC9gM,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;$t t-U4R0M3UJfzc;$x 0;" jscontroller="bJGPjf" class="action-bar-link action-bar-help play-button small id-track-click" data-uitype="112" title="Help" jsaction="rcuQ6b:rcuQ6b;L1KARc" jsvs="'bJGPjf';'rcuQ6b:rcuQ6b;L1KARc';" jsan="t-U4R0M3UJfzc,0.jscontroller,7.action-bar-link,7.action-bar-help,7.play-button,7.small,7.id-track-click,0.data-uitype,0.title,22.jsaction"> <span class="action-bar-link-title" jsl="$x 1;" jsan="7.action-bar-link-title"></span> </button> <div jsl="$x 5;" style="display:none" jsan="5.display"></div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div><div jsinstance="*1" jsl="$x 1;$t t-RAKlAzbC9gM;$x 0;" class="action-bar-item settings-gear-menu play-button small" jsan="t-RAKlAzbC9gM,7.action-bar-item,7.settings-gear-menu,7.play-button,7.small"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <button jsl="$x 4;" style="display:none" jsan="5.display"></button> <div data-uitype="2905" jsl="$x 5;$t t-QH4hoG9vrLo;$x 0;" class="action-bar-dropdown-container" jsan="0.data-uitype,t-QH4hoG9vrLo,7.action-bar-dropdown-container"> <div class="action-bar-dropdown"> <button class="action-bar-dropdown-top" aria-controls="action-dropdown-children-" aria-label="Settings" aria-owns="action-dropdown-children-" id="action-dropdown-parent-" aria-expanded="false" aria-haspopup="true" jsl="$x 1;" jsan="7.action-bar-dropdown-top,0.aria-controls,0.aria-label,0.aria-owns,0.id,0.aria-expanded,0.aria-haspopup"> <span class="title" jsl="$x 2;" jsan="7.title"></span> <span class="dropdown-icon"></span> </button> </div> <div class="name-edit-toggle" style="display:none"> <input class="edit-field-text" value="" maxlength="50" size="18" type="text" jsl="$x 3;"> </div> <div class="action-bar-dropdown-children-container" aria-labelledby="action-dropdown-parent-" id="action-dropdown-children-" jsl="$x 4;" style="display:none"> <div class="dropdown-submenu" jsl="$x 5;" jsan="7.dropdown-submenu"> <ul class="submenu-item-wrapper" jsl="$x 6;" jsan="7.submenu-item-wrapper"> <li jsinstance="0" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-qseNNdCvOYc;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="/settings" title="Settings" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.title">Settings</a> <button jsl="$x 2;" style="display:none" jsan="5.display"></button> </div> </li><li jsinstance="*1" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-qseNNdCvOYc;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="https://www.google.com/android/devicemanager?hl=en_US" target="_blank" title="Android Device Manager" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.target,0.title">Android Device Manager</a> <button jsl="$x 2;" style="display:none" jsan="5.display"></button> </div> </li> </ul> </div> </div> </div> <div jsl="$x 6;" style="display:none" class="action-bar-spacer"> </div> <div jsl="$x 7;" style="display:none"></div> </div> </div> </div> </div> </div><div class="body-content" itemscope="itemscope" itemtype="http://schema.org/MobileApplication" id="body-content" role="main"><meta content="https://play.google.com/store/apps/details?id=com.evernote" itemprop="url"><div class="outer-container"><div class="inner-container"><div class="main-content"><div> <div class="details-wrapper apps square-cover id-track-partial-impression id-deep-link-item" data-deep-link-server-cookie="CAQqHAgEEAMaFBISCgxjb20uZXZlcm5vdGUQARgDKAE=" data-deep-link-type="1" data-docid="com.evernote" data-server-cookie="CAIaGAoUEhIKDGNvbS5ldmVybm90ZRABGANCAA==" data-uitype="209"> <div class="details-info"> <div class="cover-container"> <img class="cover-image" src="//lh3.googleusercontent.com/atqaMgabx_ZXVi4AJUcDiHTy-G3nwMAGsjoCsfpebwPjXMV_QXTPefko7Wbwen-EnUo=w300" alt="Cover art" aria-hidden="true" itemprop="image"> </div> <div class="info-container"> <div class="document-title" itemprop="name"> <div class="id-app-title" tabindex="0">Evernote - stay organized.</div> </div> <div itemprop="author" itemscope="" itemtype="http://schema.org/Organization"> <meta content="/store/apps/developer?id=Evernote+Corporation" itemprop="url"> <a class="document-subtitle primary" href="/store/apps/developer?id=Evernote+Corporation"> <span itemprop="name">Evernote Corporation</span> </a> <div class="document-subtitle">- May 5, 2016</div> <div class="document-subtitle">-</div> <img alt="Everyone" class="document-subtitle content-rating-badge" src="//lh3.ggpht.com/fDrMd6BZDQGe1-ND2uyWviZx2O_Tqssk8pvmVEvXdJRvYtMz4c-LFPfB6C5qdAC-mCqFN4Iptr_Fv54e=h28"> <div class="document-subtitle content-rating-title">Everyone</div> </div> <div> <a class="document-subtitle category" href="/store/apps/category/PRODUCTIVITY"> <span itemprop="genre">Productivity</span> </a> </div> <div> </div> <div class="details-actions"> <span> <span class="apps medium play-button buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.evernote"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaGAoUEhIKDGNvbS5ldmVybm90ZRABGANCAA==" data-uitype="221"> <span> <span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer"> <meta content="https://play.google.com/store/apps/details?id=com.evernote&amp;rdid=com.evernote&amp;rdot=1&amp;feature=md" itemprop="url"> <meta content="0" itemprop="price"> <span itemprop="seller" itemscope="itemscope" itemtype="http://schema.org/Organization"> <meta content="Android" itemprop="name"> </span> </span> </span> <jsl jsl="$x 1;$t t-nH6Xd1T8X0Y;$x 0;"> <jsl jsl="$x 1;$t t-R7hS--kHwck;$x 0;"> <span jsl="$x 1;" style="display:none" jsan="5.display"></span> </jsl> </jsl> <span>Install</span> </button> </span> </span> <div jscontroller="bt3Kk" class="id-wishlist-display wishlist-display" jsaction="rcuQ6b:rcuQ6b"> <div class="wishlist-container id-track-click id-track-impression" data-enable-wishlist-icon-center="true" data-server-cookie="CAIaGAoUEhIKDGNvbS5ldmVybm90ZRABGANCAA==" data-uitype="203"> <button class="play-button default wishlist-content userlist-yet-to-add" data-docid="com.evernote"> <div class="wishlist-icon"></div> <div class="wishlist-text"> <div class="wishlist-text-default wishlist-text-add id-track-click" data-server-cookie="CAIaGAoUEhIKDGNvbS5ldmVybm90ZRABGANCAA==" data-uitype="204"> Add to Wishlist </div> <div class="wishlist-text-default wishlist-text-adding" aria-hidden="true"> Adding... </div> <div class="wishlist-text-default wishlist-text-added id-track-impression" aria-label=" Remove from wishlist. "> Added to Wishlist </div> <div class="wishlist-text-default wishlist-text-remove id-track-click" data-server-cookie="CAIaGAoUEhIKDGNvbS5ldmVybm90ZRABGANCAA==" data-uitype="205" aria-label=" Remove from wishlist. "> Remove </div> <div class="wishlist-text-default wishlist-text-removing" aria-hidden="true"> Removing... </div> </div> </button> <div aria-atomic="true" aria-live="polite" role="status"> <span class="off-screen id-item-added-msg" style="display:none"> Item added to wishlist. </span> </div> <div aria-atomic="true" aria-live="polite" role="status"> <span class="off-screen id-item-removed-msg" style="display:none"> Item removed from wishlist. </span> </div> </div> </div> </div> <div class="voucher-message id-voucher-message" style="display:none"></div> <div class="inapp-msg">Offers in-app purchases</div> <div jscontroller="uT9F9" class="app-compatibility" data-docid="com.evernote" jsaction="rcuQ6b:Y7BZMd;h5M12e"> <div jsname="qTzz5c" class="app-compatibility-initial" style="display:none"> <div class="compatibility-loading compatibility-image"></div> <span> Loading device compatibility... </span> </div> <div jsname="H4yxEf" class="app-compatibility-final" style="display:none"> <div jsname="OgDRCf" class="compatibility-image"></div> </div> <div> <div jscontroller="WxTtSc" jsname="xl07Ob" class="app-compatibility-device-list" tabindex="0" jsaction="hINwcc:ti6hGc;blur:ZYIfFd" style="display:none"> </div> </div> </div> <div class="details-info-divider"></div> <div class="header-star-badge"> <div class="stars-container"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.6 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 91.86151504516602%;"></div> </div> </div> <div class="stars-count"> (<span class="reviewers-small" aria-label=" 1,390,801 ratings "></span> 1,390,801) </div> <div> <span class="badge"> <meta content="https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png" itemprop="topDeveloperBadgeUrl"> <img src="https://lh3.ggpht.com/llUbVmqTAfi_3v5cEKyp9yedgtXukkk18QzrEB0C_ykleML1wFIsRKRFw78Aqhp2cikQduQ66pUSX7iy=w14" aria-hidden="true"> <span class="badge-title">Top Developer</span> </span> </div> </div> <div class="details-sharing-section"> <div class="plusone-container"> <div class="g-plusone" data-align="right" data-href="https://market.android.com/details?id=com.evernote" data-annotation="inline" data-recommendations="false" data-se="3" data-size="medium" data-source="google:market" data-width="240"></div> <script type="text/javascript">if (window.gapi && gapi.plusone){gapi.plusone.go("body-content");}
89
- </script> </div> </div> </div> </div> <div class="details-section screenshots"> <div class="details-section-contents"> <div class="details-section-body expandable"> <div class="thumbnails-wrapper"> <div class="thumbnails" data-expand-target="thumbnails"> <img class="screenshot" data-expand-to="full-screenshot-0" src="//lh3.googleusercontent.com/AkEKnkvCyM6e-FS5RT5DExb56uCUDc1S0cc3sI4IORrJAT-HTLQz-jPu8whw-BL5oA=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-1" src="//lh3.googleusercontent.com/qGb8MRDdS4T5pCepmVDWUy7si-fNddvsGLaF3rPYXlB89FjYa_on4VBp-8xPIKq5Qk9C=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-2" src="//lh3.googleusercontent.com/N2IqJKGd9-pgW0HgRQhoSA9UNXZFV4OYVIv7l8mhyNmZESVGEywiXviU4OoMbeDqPg=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-3" src="//lh3.googleusercontent.com/FfN8xU2ePAfgOCWIyBf-qkYKWk-ALKOwq0Y3F65NutRLF6YrrV-K2udP6xXP2k5PIRE=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-4" src="//lh3.googleusercontent.com/9npD1H7xz7NwtyfM9cCOTaYSpqaXQMAWJGYh13q4_F1Kz1TfyWkz9ba0yWc6r6Wwbi8=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-5" src="//lh3.googleusercontent.com/InW32sC2LFGHK3gqMT4rTYvu0XqR3ZBPE21Gsp2HAu3O5ilYG1Gi2t3klF_8_OPwQYM=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-6" src="//lh3.googleusercontent.com/FX59DjcMqjEj01oGatPAQPZxXuD8A8xVYtpeArc1ECRcLueVJNHykTKw4TgnJSMPpzI=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-7" src="//lh3.googleusercontent.com/fYrp0ou-qf5P-LXmUx6w54buL_WO3P4zaa68ULGP98zQirZr68PDdICQfq8bxmRoAA=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-8" src="//lh3.googleusercontent.com/fg_VM5xXZqfr8npJm7Cc64Tf5N2Pb-lNkt88y2kjb_gObfXh1vbB9LA_jFYpyi2nxvFa=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-9" src="//lh3.googleusercontent.com/-sYE4X1Ua6hM0TwBeZJf6OqT-8OZTI8lZx9TEbgnBlpIdoomaBORAoOqYii2a7FV6g=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-10" src="//lh3.googleusercontent.com/pI8Gcd_S3gyVRlztODJ8rdZYD6sD1k36tbrvd4yY0n3vCU6_GCKIn-XyNiE3l1oDf-A=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-11" src="//lh3.googleusercontent.com/GoDuyxtSwVzL6GAtT8O9JzV2ulaOFbUTHV0fQtMCrpLrxek4dsUzahnPs0eAd0-YC05z=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-12" src="//lh3.googleusercontent.com/pGAi_1d2FlXhwJggTJFm_23pmhRmiGdBngjxmIiHUAwFYzrPizkZyxE7Srq_WzBs-Fpy=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-13" src="//lh3.googleusercontent.com/85hsOFhv0fTSTxLmgRTEIdg5m8jFFnbMVcwWKzkeHxQ7MxaTpvdBkEcobteiEnZbGwI=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-14" src="//lh3.googleusercontent.com/yNsucoQ93ZCDHSocqcPbvKL9J1KHruCvkzgpbqZwoXFX_cWQsHc81PR2kNemT6hBlw=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-15" src="//lh3.googleusercontent.com/aIOqnxGnBOrJGqrSNFpay91nRdwcDXjbX1iQiY4Oepf3VUwqxFyCgD6GKauJ5LD0VA=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-16" src="//lh3.googleusercontent.com/Ve7cJfhPpwMxeK350SAfYqCX9wbjdvtTgFb51cJI_IIBy-ciqrSh12XA3BAB-zWmaX4=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-17" src="//lh3.googleusercontent.com/JKxZgzgcMX6B2UjuwHU3fFH20aqM6oBjdaugW_NRPinu1VL28Zsb0tOFmRLcg3hI2U8=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-18" src="//lh3.googleusercontent.com/Y5V6rb-0fib5I4hufNdY5sSUE_ygvQNy2KO-PcGAR2xh5ciPrcbc3yLoWe-2blIQvw=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-19" src="//lh3.googleusercontent.com/Onf1DjVvgdpmue7R8TtZ56wM3SNOD_VCxGshZX1hPnLHpMA7l6n3fQWXva7U7qjdy5ya=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-20" src="//lh3.googleusercontent.com/gZCFLqggz9SCqzObmTQw_xXfBv9N7iXiEqUp2iHYwaqFBmpmgTYOaRllCF5VVGLkg0g=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-21" src="//lh3.googleusercontent.com/VAYeCD2aIkR-EcF1-48ViOg0ZdYVAC-YU3wIVnDkp7GtxZh3tnv7rDRh_Fvtj-jM098g=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-22" src="//lh3.googleusercontent.com/yj50UFheAT_1ZOvZGUOs8VjL6499391RB_x5LUNfpPW2enUcm_Lt95Bcih_AJ8VzpHI=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"><img class="screenshot" data-expand-to="full-screenshot-23" src="//lh3.googleusercontent.com/JO_h9TGYQOqyzCLhIWlLVkzF2DZc1Ib1kIOxg0WVIcH0tOuKPLQApxMxTywChqCa2A=h310" alt=" Evernote - stay organized.- screenshot thumbnail " title=" Evernote - stay organized.- screenshot thumbnail " itemprop="screenshot" tabindex="0"> </div> </div> <div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-0" data-expand-to="full-screenshot-1" src="//lh3.googleusercontent.com/AkEKnkvCyM6e-FS5RT5DExb56uCUDc1S0cc3sI4IORrJAT-HTLQz-jPu8whw-BL5oA=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-1" data-expand-to="full-screenshot-2" src="//lh3.googleusercontent.com/qGb8MRDdS4T5pCepmVDWUy7si-fNddvsGLaF3rPYXlB89FjYa_on4VBp-8xPIKq5Qk9C=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-2" data-expand-to="full-screenshot-3" src="//lh3.googleusercontent.com/N2IqJKGd9-pgW0HgRQhoSA9UNXZFV4OYVIv7l8mhyNmZESVGEywiXviU4OoMbeDqPg=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-3" data-expand-to="full-screenshot-4" src="//lh3.googleusercontent.com/FfN8xU2ePAfgOCWIyBf-qkYKWk-ALKOwq0Y3F65NutRLF6YrrV-K2udP6xXP2k5PIRE=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-4" data-expand-to="full-screenshot-5" src="//lh3.googleusercontent.com/9npD1H7xz7NwtyfM9cCOTaYSpqaXQMAWJGYh13q4_F1Kz1TfyWkz9ba0yWc6r6Wwbi8=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-5" data-expand-to="full-screenshot-6" src="//lh3.googleusercontent.com/InW32sC2LFGHK3gqMT4rTYvu0XqR3ZBPE21Gsp2HAu3O5ilYG1Gi2t3klF_8_OPwQYM=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-6" data-expand-to="full-screenshot-7" src="//lh3.googleusercontent.com/FX59DjcMqjEj01oGatPAQPZxXuD8A8xVYtpeArc1ECRcLueVJNHykTKw4TgnJSMPpzI=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-7" data-expand-to="full-screenshot-8" src="//lh3.googleusercontent.com/fYrp0ou-qf5P-LXmUx6w54buL_WO3P4zaa68ULGP98zQirZr68PDdICQfq8bxmRoAA=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-8" data-expand-to="full-screenshot-9" src="//lh3.googleusercontent.com/fg_VM5xXZqfr8npJm7Cc64Tf5N2Pb-lNkt88y2kjb_gObfXh1vbB9LA_jFYpyi2nxvFa=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-9" data-expand-to="full-screenshot-10" src="//lh3.googleusercontent.com/-sYE4X1Ua6hM0TwBeZJf6OqT-8OZTI8lZx9TEbgnBlpIdoomaBORAoOqYii2a7FV6g=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-10" data-expand-to="full-screenshot-11" src="//lh3.googleusercontent.com/pI8Gcd_S3gyVRlztODJ8rdZYD6sD1k36tbrvd4yY0n3vCU6_GCKIn-XyNiE3l1oDf-A=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-11" data-expand-to="full-screenshot-12" src="//lh3.googleusercontent.com/GoDuyxtSwVzL6GAtT8O9JzV2ulaOFbUTHV0fQtMCrpLrxek4dsUzahnPs0eAd0-YC05z=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-12" data-expand-to="full-screenshot-13" src="//lh3.googleusercontent.com/pGAi_1d2FlXhwJggTJFm_23pmhRmiGdBngjxmIiHUAwFYzrPizkZyxE7Srq_WzBs-Fpy=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-13" data-expand-to="full-screenshot-14" src="//lh3.googleusercontent.com/85hsOFhv0fTSTxLmgRTEIdg5m8jFFnbMVcwWKzkeHxQ7MxaTpvdBkEcobteiEnZbGwI=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-14" data-expand-to="full-screenshot-15" src="//lh3.googleusercontent.com/yNsucoQ93ZCDHSocqcPbvKL9J1KHruCvkzgpbqZwoXFX_cWQsHc81PR2kNemT6hBlw=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-15" data-expand-to="full-screenshot-16" src="//lh3.googleusercontent.com/aIOqnxGnBOrJGqrSNFpay91nRdwcDXjbX1iQiY4Oepf3VUwqxFyCgD6GKauJ5LD0VA=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-16" data-expand-to="full-screenshot-17" src="//lh3.googleusercontent.com/Ve7cJfhPpwMxeK350SAfYqCX9wbjdvtTgFb51cJI_IIBy-ciqrSh12XA3BAB-zWmaX4=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-17" data-expand-to="full-screenshot-18" src="//lh3.googleusercontent.com/JKxZgzgcMX6B2UjuwHU3fFH20aqM6oBjdaugW_NRPinu1VL28Zsb0tOFmRLcg3hI2U8=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-18" data-expand-to="full-screenshot-19" src="//lh3.googleusercontent.com/Y5V6rb-0fib5I4hufNdY5sSUE_ygvQNy2KO-PcGAR2xh5ciPrcbc3yLoWe-2blIQvw=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-19" data-expand-to="full-screenshot-20" src="//lh3.googleusercontent.com/Onf1DjVvgdpmue7R8TtZ56wM3SNOD_VCxGshZX1hPnLHpMA7l6n3fQWXva7U7qjdy5ya=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-20" data-expand-to="full-screenshot-21" src="//lh3.googleusercontent.com/gZCFLqggz9SCqzObmTQw_xXfBv9N7iXiEqUp2iHYwaqFBmpmgTYOaRllCF5VVGLkg0g=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-21" data-expand-to="full-screenshot-22" src="//lh3.googleusercontent.com/VAYeCD2aIkR-EcF1-48ViOg0ZdYVAC-YU3wIVnDkp7GtxZh3tnv7rDRh_Fvtj-jM098g=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-22" data-expand-to="full-screenshot-23" src="//lh3.googleusercontent.com/yj50UFheAT_1ZOvZGUOs8VjL6499391RB_x5LUNfpPW2enUcm_Lt95Bcih_AJ8VzpHI=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" data-expand-fit-to="screen" data-expand-target="full-screenshot-23" data-expand-to="thumbnails" src="//lh3.googleusercontent.com/JO_h9TGYQOqyzCLhIWlLVkzF2DZc1Ib1kIOxg0WVIcH0tOuKPLQApxMxTywChqCa2A=h900" alt=" Evernote - stay organized.- screenshot " title=" Evernote - stay organized.- screenshot " tabindex="0"> </div> </div> </div> </div> </div> <div class="details-section-divider"></div> </div> <div class="details-section description simple contains-text-link"> <div class="details-section-contents show-more-container" jscontroller="G7YeLc" jsaction="rcuQ6b:rcuQ6b" data-show-use-buffer="true"> <div jscontroller="NlxvWb"> <h1 class="heading" tabindex="0"> Description </h1> <div class="show-more-content text-body" itemprop="description" tabindex="0"> <div jsname="C4s9Ed">&quot;Use Evernote as the place you put everything … Don’t ask yourself which device it’s on—it’s in Evernote&quot; – The New York Times<p>“When it comes to taking all manner of notes and getting work done, Evernote is an indispensable tool.” – PC Mag<p>---<p>*GET ORGANIZED*<br>Evernote gives you the tools you need to keep your work effortlessly organized:<br>• Write, collect and capture ideas as searchable notes, notebooks, checklists and to-do lists<br>• Take notes in a variety of formats, including: text, sketches, photos, audio, video, PDFs, web clippings and more<br>• Use camera capture to easily scan and comment on pieces of paper, including printed documents, business cards, handwriting and sketches<br>• Attach Microsoft Office docs, PDFs and photos<br>• Organize your receipts, bills and invoices<br>• Use Evernote as a digital notepad and easy-to-format word processor for all your thoughts as they come<p>*SYNC ANYWHERE* <br>Evernote gives you the ability to sync and comment on content across all devices:<br>• Sync everything automatically across any computer, phone or tablet <br>• Start your task working on one device and continue on another without ever missing a beat<p>*SHARE YOUR IDEAS*<br>Evernote gives you the tools to share, discuss and collaborate productively with others:<br>• Create, share and discuss with the people who help get your work done, all in one app<br>• Search within pictures and annotate images to give quick feedback<br>• Get inspired and brainstorm creative ideas with your team by working collaboratively in the same documents <p>*EVERNOTE IN EVERYDAY LIFE*<br>• Make personal checklists to keep your thoughts organized <br>• Set reminders to keep on top of activities and write to-do lists<br>• Gather, capture and store every thought you need to stay productive<br>• Plan events such as holidays, weddings or parties<p>*EVERNOTE IN BUSINESS*<br>• Create agendas, write memos and craft presentations <br>• Annotate documents with comments and thoughts during team meetings, then share with colleagues <br>• Get your projects underway faster and maximise productivity by letting multiple participants access and work on different aspects alongside each other<p>*EVERNOTE IN EDUCATION*<br>• Keep up with lecture notes so you don’t miss a vital thought<br>• Clip and highlight articles from the web for academic research<br>• Access and highlight searchable documents <br>• Plan and collaborate for better academic group work<br>• Discuss and annotate notes and drafts<p>*HOME SCREEN WIDGET*<br>Access Evernote easier and faster using the Home screen widget<br>• 1×1 widget - Need to quickly get to a note, capture something on camera, or search? Pull your favorite feature out of the app into a single icon to give you instant access<br>• 4×1 Action bar - Select from 11 different actions to create your personal choice of shortcuts<br>• 4×2 List widget - Shortcuts to key actions of your choosing as well as a list of notes. The type of note is up to you. Designate a specific notebook, use recent notes to get back into what you were just editing, or populate it with your reminders to stay aware of your to-dos<p>---<p>Also available from Evernote:<p>EVERNOTE PLUS - More space. More freedom. <br>• 1 GB of new uploads each month<br>• Access your notes and notebooks offline<br>• Save emails to Evernote<br>• Add a passcode lock to your mobile app<br>$2.99 monthly, $24.99 annually<p>EVERNOTE PREMIUM - The ultimate workspace. <br>• 10 GB of new uploads each month<br>• Access your notes and notebooks offline<br>• Save emails to Evernote<br>• Add a passcode lock to your mobile app<br>• Turn notes into presentations with Presentation Mode<br>• Search inside Office docs and attachments<br>• Annotate PDFs <br>$5.99 monthly, $49.99 annually<p>Price may vary by location. Subscriptions will be charged to your credit card through your iTunes account. Your subscription will automatically renew unless cancelled at least 24 hours before the end of the current period. You will not be able to cancel the subscription once activated. Manage your subscriptions in Account Settings after purchase.</p></p></p></p></p></p></p></p></p></p></p></p></p></p></div> <div class="show-more-end" jsaction="click:vhaaFf"></div> </div> </div> <div> <button class="play-button show-more small" jsaction="KoToPc"> Read more </button> <button class="play-button expand-close" jsaction="vhaaFf"> <div class="close-image"> </div> </button> </div> </div> <div class="details-section-divider"></div> </div> </div> </div> <div class="details-wrapper apps" data-docid="com.evernote"> <div class="details-section highlighted-review" style="display:none"> <div class="highlighted-section-contents"> <div style="display:none" class="my-review-panel highlighted-review-panel" data-reviewid=""> <div class="review-row reviews-heading"> <div class="review-row-header heading"> My review </div> </div> <div class="review-panel-content"> <div class="review-image-row"> </div> <div class="review-author-stars"> <div class="review-author-name" style="display:none"> </div> <div class="review-stars-container"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" jsname="jIIjq" style="width: 0%;"></div> </div> </div> </div> <div class="review-row review-body-text"> <span class="review-title"></span> </div> <div class="review-action-button-container"> <button class="play-button icon-button small review-action-button-gap id-review-trash-button" aria-label=" Delete review. "> <div class="review-trash-button-icon"></div> </button> </div> <div class="review-row"> </div> </div> </div> <div style="display:none" class="highlighted-review-panel id-selected-review-panel" data-reviewid=""> <div class="review-row reviews-heading"> <div class="review-row-header heading"> <span> Review from <span style="display:none"></span> </span> </div> </div> <div class="review-panel-content"> <div class="review-image-row"> </div> <div class="review-author-stars"> <div class="review-author-name" style="display:none"> </div> <div class="review-stars-container"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" jsname="jIIjq" style="width: 0%;"></div> </div> </div> </div> <div class="review-row review-body-text"> <span class="review-title"></span> </div> <div class="rate-review-wrapper" style="display:none"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> <div class="review-row"> </div> </div> </div> </div> </div> <div class="details-section reviews"> <div class="details-section-contents"> <div class="details-section-heading"> <h1 class="heading"> Reviews </h1> <div class="review-actions id-track-click" data-uitype="206"> <div class="review-filters" data-expanded-only="true" style="display:none"> <div class="review-filter id-review-sort-filter dropdown-menu-container" jsl="$t t-iOmsrJCHA3E;$x 0;"> <button class="dropdown-menu" aria-haspopup="true"> <span class="displayed-child"><jsl jsl="$x 1;">Helpfulness</jsl></span> <div class="dropdown-icon"></div> </button> <div class="dropdown-menu-children"> <ul> <jsl jsl="$x 2;"> <li role="menuitem" tabindex="-1" jsl="$t t-VM2neMmpSqg;$x 0;"> <button class="dropdown-child" data-dropdown-value="0" tabindex="0" jsl="$x 1;" jsan="7.dropdown-child,0.data-dropdown-value,0.tabindex"> <jsl jsl="$x 2;">Newest</jsl> </button> </li><li role="menuitem" tabindex="-1" jsl="$t t-VM2neMmpSqg;$x 0;"> <button class="dropdown-child" data-dropdown-value="1" tabindex="0" jsl="$x 1;" jsan="7.dropdown-child,0.data-dropdown-value,0.tabindex"> <jsl jsl="$x 2;">Rating</jsl> </button> </li><li role="menuitem" tabindex="-1" jsl="$t t-VM2neMmpSqg;$x 0;"> <button class="dropdown-child selected" data-dropdown-value="2" tabindex="0" jsl="$x 1;" jsan="7.dropdown-child,7.selected,0.data-dropdown-value,0.tabindex"> <jsl jsl="$x 2;">Helpfulness</jsl> </button> </li> </jsl> </ul> </div> </div> </div> <button class="id-write-button play-button"> <span class="write-review-button-icon"></span> <span> Write a Review </span> </button> <button class="id-edit-button play-button" style="display:none"> <span class="write-review-button-icon"></span> <span> Edit Review </span> </button> </div> </div> <div class="details-section-body expandable" data-load-more-docid="com.evernote" data-load-more-section-id="reviews"> <div class="preview-panel"> <div class="preview-reviews multicol" data-multicol-fixed-height="true" data-multicol-width="auto"> <div class="rating-box"> <div class="score-container" itemprop="aggregateRating" itemscope="itemscope" itemtype="http://schema.org/AggregateRating"> <meta content="4.593075752258301" itemprop="ratingValue"> <meta content="1390801" itemprop="ratingCount"> <div class="score" aria-label=" Rated 4.6 stars out of five stars ">4.6</div> <div class="score-container-star-rating"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated 4.6 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 91.86151504516602%;"></div> </div> </div> <div class="reviews-stats"> <span class="reviewers-small"></span> <span class="reviews-num" aria-label=" 1,390,801 ratings ">1,390,801</span> total </div> </div> <div class="rating-histogram"> <div class="rating-bar-container five"> <span class="bar-label"> <span class="star-tiny star-full"></span>5 </span> <span class="bar" style="width:100%"></span> <span class="bar-number" aria-label=" 1,009,112 ratings ">1,009,112</span> </div><div class="rating-bar-container four"> <span class="bar-label"> <span class="star-tiny star-full"></span>4 </span> <span class="bar" style="width:27%"></span> <span class="bar-number" aria-label=" 280,079 ratings ">280,079</span> </div><div class="rating-bar-container three"> <span class="bar-label"> <span class="star-tiny star-full"></span>3 </span> <span class="bar" style="width:5%"></span> <span class="bar-number" aria-label=" 51,367 ratings ">51,367</span> </div><div class="rating-bar-container two"> <span class="bar-label"> <span class="star-tiny star-full"></span>2 </span> <span class="bar" style="width:1%"></span> <span class="bar-number" aria-label=" 17,062 ratings ">17,062</span> </div><div class="rating-bar-container one"> <span class="bar-label"> <span class="star-tiny star-full"></span>1 </span> <span class="bar" style="width:3%"></span> <span class="bar-number" aria-label=" 32,966 ratings ">32,966</span> </div> </div> </div> <div class="featured-review" data-expand-to="user-0" data-reviewid="gp:AOqpTOEFqGNtWBT_uvOtlWwIeR-JhckiymxvrPN6WLQqoAdTWZvP2fbQsMuKX9Z2Hhsh13uiO_h9e-SakLtMnA" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <a href="/store/people/details?id=105168854864047666440"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-A9Z3V57YwZw/AAAAAAAAAAI/AAAAAAAAItM/11ykc1jsG6Y/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-A9Z3V57YwZw/AAAAAAAAAAI/AAAAAAAAItM/11ykc1jsG6Y/w96-c-h96/photo.jpg)"></span> </span> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=105168854864047666440">Andrew Auletta</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 1 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 20%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">It sucks</span> Because Evernote doesn't make it easy to contact them with a update bug, yet they want you to embrace their product, they get one star. You need a dedicated support email addy for your users and a few technical support staff members to address the bug reports. <div class="paragraph-end details-light"></div> </div> </div> </div> </div> <div class="featured-review" data-expand-to="user-1" data-reviewid="gp:AOqpTOHkI3V4xMybqoTC_dX8UKcDwtxxGAE4eXiK4plg48B9ptfP1SdqpnCWbpKfn3m2o0SGxaBdv0hSNcRulQ" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <a href="/store/people/details?id=114786453977321990971"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.googleusercontent.com/-wCyEbrCSGOY/AAAAAAAAAAI/AAAAAAAAAe8/fmP_ip1AFuk/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.googleusercontent.com/-wCyEbrCSGOY/AAAAAAAAAAI/AAAAAAAAAe8/fmP_ip1AFuk/w96-c-h96/photo.jpg)"></span> </span> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=114786453977321990971">Victor Bernace</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Would quit job without Evernote!</span> New Android update is great. I use Evernote to organize notes on thousands of clients and hack it for my calendar. Premium user. If they asked for $1,000 per year, I would pay it-- it is that indispensable! The scanning portion on Android was falling behind on iOS equivalent but now caught up and working great. <div class="paragraph-end details-light"></div> </div> </div> </div> </div> <div class="featured-review" data-expand-to="user-2" data-reviewid="gp:AOqpTOEJzACRiUZz9sZJ6ebtBuQJltOL73YpzngSI6z_tkQ6CAPgxU8FjbBpr5SQK3X01siaViJFrcqRQzdKrw" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <a href="/store/people/details?id=109659441990372999666"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-q1MGfn2Lpjg/AAAAAAAAAAI/AAAAAAAAAOA/NbMwF1vxqHg/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-q1MGfn2Lpjg/AAAAAAAAAAI/AAAAAAAAAOA/NbMwF1vxqHg/w96-c-h96/photo.jpg)"></span> </span> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=109659441990372999666">Sira Suchintabandid</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">The latest update makes the app even more perfect!</span> The previous versions had problems with the scrolling in notes with multiple pictures. Now, with the latest update, we can smoothly scroll in picture notes. Thank you, Evernote! <div class="paragraph-end details-light"></div> </div> </div> </div> </div> <div class="featured-review" data-expand-to="user-3" data-reviewid="gp:AOqpTOGGAdpSEcqFAW9gzORbBpMXAQJCbDVFdm8lKF6_rxMvX6n6NIsDphglq1JTAOcli9l3Hv1cIcMfQ4Z6eg" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <a href="/store/people/details?id=117013921124377518292"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-PTWf6Uu1y3o/AAAAAAAAAAI/AAAAAAAAAYk/J1BsuGPF06c/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-PTWf6Uu1y3o/AAAAAAAAAAI/AAAAAAAAAYk/J1BsuGPF06c/w96-c-h96/photo.jpg)"></span> </span> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=117013921124377518292">George Poon</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 60%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Good improvement! But still isn't as good as the iOS counterpart</span> In iOS app, it supports copy-'n-paste text &amp; image from other apps. Also, it supports note editing with HTML format and inline image. All these features are missing from this Android app. Evernote Support asked me to download a beta app from their website several months ago. I have some hesitation in using non-Play Store app. Please update the app in Play Store. <div class="paragraph-end details-light"></div> </div> </div> </div> </div> <div class="featured-review" data-expand-to="user-4" data-reviewid="gp:AOqpTOGyAmMlHszP-J7X_HSyaNKwk5_qO9dlRoeD6t4efr3gsECy5TFGOaHRw6z8PjXgMNd8yy7_6Il3qAwOLQ" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <a href="/store/people/details?id=114114231254916916357"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-aysWms6ILy8/AAAAAAAAAAI/AAAAAAAAAEc/hW706gNZFMo/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-aysWms6ILy8/AAAAAAAAAAI/AAAAAAAAAEc/hW706gNZFMo/w96-c-h96/photo.jpg)"></span> </span> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=114114231254916916357">vincent burgstahler</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 1 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 20%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Best App but....</span> Maybe the best Cross Platforms Notes App... but I HATE that the Offline mode is to buy, and SO EXPENSIVE : at least 60$ a year, and every year!!! INSANE and thinking to switch to OneNote ! 😢😢 I would also love it to have maybe a Calendar + Contacts: then it would be a 5 stars App. Only then.... :0) ! PS. Sometimes it gets VERY SLOW with long notes and/or using rich texts ---&amp;gt; fix it please ? <div class="paragraph-end details-light"></div> </div> </div> </div> </div> <div class="featured-review" data-expand-to="user-5" data-reviewid="gp:AOqpTOGLphV19aWanjT8PChz5bAohoB4KHAmZa3xm9yEwzi2Iyea0yPOY0MMP2R2RzzuwoBPKCDa-FC-euZV6Q" data-should-focus-specific-review="true" tabindex="0"> <div class="author"> <a href="/store/people/details?id=113231014798230346800"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-o9PYPC4CGQ0/AAAAAAAAAAI/AAAAAAABB1w/Sg4KnQq0FfY/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-o9PYPC4CGQ0/AAAAAAAAAAI/AAAAAAABB1w/Sg4KnQq0FfY/w96-c-h96/photo.jpg)"></span> </span> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=113231014798230346800">Selina Churchill</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 60%;"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Easy to use</span> Recent update has caused problems. Words duplicating as I type. Why does Save now need to switch keyboard off then back on? Not impressed. Requires 100MB free space on your phone to create or edit notes, making it awkward on my tiny phone - have to keep deleting photos. But overall good. What more can I say, easy and a better notepad than Notes, the default HTC app for writing. Syncs to all devices and your PC making it the most useful way to work across multiple platforms. <div class="paragraph-end details-light"></div> </div> </div> </div> </div> </div> </div> <div style="display:none" class="all-reviews multicol" data-expand-scroll="true" data-multicol-fixed-height="true"> <div> <div class="reviews-heading"> User reviews </div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=105168854864047666440"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-A9Z3V57YwZw/AAAAAAAAAAI/AAAAAAAAItM/11ykc1jsG6Y/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-A9Z3V57YwZw/AAAAAAAAAAI/AAAAAAAAItM/11ykc1jsG6Y/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-0" data-reviewid="gp:AOqpTOEFqGNtWBT_uvOtlWwIeR-JhckiymxvrPN6WLQqoAdTWZvP2fbQsMuKX9Z2Hhsh13uiO_h9e-SakLtMnA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=105168854864047666440">Andrew Auletta</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRUZxR050V0JUX3V2T3RsV3dJZVItSmhja2l5bXh2clBONldMUXFvQWRUV1p2UDJmYlFzTXVLWDlaMkhoc2gxM3VpT19oOWUtU2FrTHRNbkE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 1 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 20%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">It sucks</span> Because Evernote doesn't make it easy to contact them with a update bug, yet they want you to embrace their product, they get one star. You need a dedicated support email addy for your users and a few technical support staff members to address the bug reports. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=114786453977321990971"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.googleusercontent.com/-wCyEbrCSGOY/AAAAAAAAAAI/AAAAAAAAAe8/fmP_ip1AFuk/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.googleusercontent.com/-wCyEbrCSGOY/AAAAAAAAAAI/AAAAAAAAAe8/fmP_ip1AFuk/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-1" data-reviewid="gp:AOqpTOHkI3V4xMybqoTC_dX8UKcDwtxxGAE4eXiK4plg48B9ptfP1SdqpnCWbpKfn3m2o0SGxaBdv0hSNcRulQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=114786453977321990971">Victor Bernace</a> </span> <span class="review-date">May 6, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSGtJM1Y0eE15YnFvVENfZFg4VUtjRHd0eHhHQUU0ZVhpSzRwbGc0OEI5cHRmUDFTZHFwbkNXYnBLZm4zbTJvMFNHeGFCZHYwaFNOY1J1bFE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Would quit job without Evernote!</span> New Android update is great. I use Evernote to organize notes on thousands of clients and hack it for my calendar. Premium user. If they asked for $1,000 per year, I would pay it-- it is that indispensable! The scanning portion on Android was falling behind on iOS equivalent but now caught up and working great. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=109659441990372999666"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-q1MGfn2Lpjg/AAAAAAAAAAI/AAAAAAAAAOA/NbMwF1vxqHg/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-q1MGfn2Lpjg/AAAAAAAAAAI/AAAAAAAAAOA/NbMwF1vxqHg/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-2" data-reviewid="gp:AOqpTOEJzACRiUZz9sZJ6ebtBuQJltOL73YpzngSI6z_tkQ6CAPgxU8FjbBpr5SQK3X01siaViJFrcqRQzdKrw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=109659441990372999666">Sira Suchintabandid</a> </span> <span class="review-date">May 6, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRUp6QUNSaVVaejlzWko2ZWJ0QnVRSmx0T0w3M1lwem5nU0k2el90a1E2Q0FQZ3hVOEZqYkJwcjVTUUszWDAxc2lhVmlKRnJjcVJRemRLcnc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">The latest update makes the app even more perfect!</span> The previous versions had problems with the scrolling in notes with multiple pictures. Now, with the latest update, we can smoothly scroll in picture notes. Thank you, Evernote! <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=117013921124377518292"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-PTWf6Uu1y3o/AAAAAAAAAAI/AAAAAAAAAYk/J1BsuGPF06c/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-PTWf6Uu1y3o/AAAAAAAAAAI/AAAAAAAAAYk/J1BsuGPF06c/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-3" data-reviewid="gp:AOqpTOGGAdpSEcqFAW9gzORbBpMXAQJCbDVFdm8lKF6_rxMvX6n6NIsDphglq1JTAOcli9l3Hv1cIcMfQ4Z6eg"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=117013921124377518292">George Poon</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR0dBZHBTRWNxRkFXOWd6T1JiQnBNWEFRSkNiRFZGZG04bEtGNl9yeE12WDZuNk5Jc0RwaGdscTFKVEFPY2xpOWwzSHYxY0ljTWZRNFo2ZWc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 60%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Good improvement! But still isn't as good as the iOS counterpart</span> In iOS app, it supports copy-'n-paste text &amp; image from other apps. Also, it supports note editing with HTML format and inline image. All these features are missing from this Android app. Evernote Support asked me to download a beta app from their website several months ago. I have some hesitation in using non-Play Store app. Please update the app in Play Store. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=114114231254916916357"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-aysWms6ILy8/AAAAAAAAAAI/AAAAAAAAAEc/hW706gNZFMo/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-aysWms6ILy8/AAAAAAAAAAI/AAAAAAAAAEc/hW706gNZFMo/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-4" data-reviewid="gp:AOqpTOGyAmMlHszP-J7X_HSyaNKwk5_qO9dlRoeD6t4efr3gsECy5TFGOaHRw6z8PjXgMNd8yy7_6Il3qAwOLQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=114114231254916916357">vincent burgstahler</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR3lBbU1sSHN6UC1KN1hfSFN5YU5Ld2s1X3FPOWRsUm9lRDZ0NGVmcjNnc0VDeTVURkdPYUhSdzZ6OFBqWGdNTmQ4eXk3XzZJbDNxQXdPTFE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 1 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 20%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Best App but....</span> Maybe the best Cross Platforms Notes App... but I HATE that the Offline mode is to buy, and SO EXPENSIVE : at least 60$ a year, and every year!!! INSANE and thinking to switch to OneNote ! 😢😢 I would also love it to have maybe a Calendar + Contacts: then it would be a 5 stars App. Only then.... :0) ! PS. Sometimes it gets VERY SLOW with long notes and/or using rich texts ---&amp;gt; fix it please ? <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=113231014798230346800"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-o9PYPC4CGQ0/AAAAAAAAAAI/AAAAAAABB1w/Sg4KnQq0FfY/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-o9PYPC4CGQ0/AAAAAAAAAAI/AAAAAAABB1w/Sg4KnQq0FfY/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-5" data-reviewid="gp:AOqpTOGLphV19aWanjT8PChz5bAohoB4KHAmZa3xm9yEwzi2Iyea0yPOY0MMP2R2RzzuwoBPKCDa-FC-euZV6Q"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=113231014798230346800">Selina Churchill</a> </span> <span class="review-date">May 6, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR0xwaFYxOWFXYW5qVDhQQ2h6NWJBb2hvQjRLSEFtWmEzeG05eUV3emkySXllYTB5UE9ZME1NUDJSMlJ6enV3b0JQS0NEYS1GQy1ldVpWNlE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 60%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Easy to use</span> Recent update has caused problems. Words duplicating as I type. Why does Save now need to switch keyboard off then back on? Not impressed. Requires 100MB free space on your phone to create or edit notes, making it awkward on my tiny phone - have to keep deleting photos. But overall good. What more can I say, easy and a better notepad than Notes, the default HTC app for writing. Syncs to all devices and your PC making it the most useful way to work across multiple platforms. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=115340424032558894047"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-KHRPS8PDMv8/AAAAAAAAAAI/AAAAAAAAAhY/c8EdrecFEUs/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-KHRPS8PDMv8/AAAAAAAAAAI/AAAAAAAAAhY/c8EdrecFEUs/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-6" data-reviewid="gp:AOqpTOFUsL7wrLHhTgyjjWDs8SSd2EJ5ek2xkUL9Ky2Xumr0USjUWyFVH8WjVrmOKn5tDI-yc5m2ALlAbsSTNw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=115340424032558894047">Bogdan K</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRlVzTDd3ckxIaFRneWpqV0RzOFNTZDJFSjVlazJ4a1VMOUt5Mlh1bXIwVVNqVVd5RlZIOFdqVnJtT0tuNXRESS15YzVtMkFMbEFic1NUTnc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title"></span> Update: Wow! The latest update fixed all the issues I had and mentioned in my previous review. I'm so thankful to Evernote and their devs for fixing all of the things wrong with the app and making it smooth, fast and enjoyable to use. It's now even smoother than iOS counterpart! Now I can definitely subscribe to the paid plan! Please fix these: 1. Images in notes should be scaled to fit the screen, not be displayed in full resolution. 2. Fixing the image scaling should fix the choppy and laggy scrolling of the notes. 3. Did you try clipping a webpage and scrolling? It's crazy choppy. Please fix. 4. Please add different color themes. IOS has all the things I mentioned done perfect. Why are services that are free on iOS paid on android? Document scanning? Some offline notes? I would love to pay for premium subscription, but I don't want to pay for something that is half done. What happened to you Evernote? <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=113870408174279471100"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-620329aY6NA/AAAAAAAAAAI/AAAAAAAAv7E/v2SUsxj7D6g/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-620329aY6NA/AAAAAAAAAAI/AAAAAAAAv7E/v2SUsxj7D6g/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-7" data-reviewid="gp:AOqpTOFI1E_Y5J2Joua7NfEp28TAIKcQFkblPxKgHkplhxZI9JHYeTjT86_eroZRR41NXIvm7kqd6r3MhxIT2A"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=113870408174279471100">Grant Gardner</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRkkxRV9ZNUoySm91YTdOZkVwMjhUQUlLY1FGa2JsUHhLZ0hrcGxoeFpJOUpIWWVUalQ4Nl9lcm9aUlI0MU5YSXZtN2txZDZyM01oeElUMkE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 80%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Return of cautious optimism</span> In a previous review I questioned whether Evernote was straying to far from their roots. A year later the world started asking the same. This update might finally be the answer. The new camera is fantastic. The revised new note button is nicer, everything feels snappier. This might be what gets me back onboard. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=114037497029927873643"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-QshDxncFUko/AAAAAAAAAAI/AAAAAAAAAIU/IYRik-IBQEo/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-QshDxncFUko/AAAAAAAAAAI/AAAAAAAAAIU/IYRik-IBQEo/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-8" data-reviewid="gp:AOqpTOEuA6gCsiGWweSwTGdBpq5jlh7xfOAXBc4OKcOA9KrZsF69w5NHjz8gy4qSEMpHHlrPyOjmuokfMS9zCw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=114037497029927873643">Shion Todo</a> </span> <span class="review-date">May 4, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRXVBNmdDc2lHV3dlU3dUR2RCcHE1amxoN3hmT0FYQmM0T0tjT0E5S3Jac0Y2OXc1TkhqejhneTRxU0VNcEhIbHJQeU9qbXVva2ZNUzl6Q3c" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Nice</span> They organize all your notes...but when i try to sign out of account on phone i cannot find...maybe its just me <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=105223968975978143534"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-CjB683ns7WM/AAAAAAAAAAI/AAAAAAAAyrU/6hHkdMwb2CQ/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-CjB683ns7WM/AAAAAAAAAAI/AAAAAAAAyrU/6hHkdMwb2CQ/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-9" data-reviewid="gp:AOqpTOF7fCOBIL7_n7NTU2MYY8FteCixuK37uuNpgdT_kEkvFuoi6MUruKhsskH4P-Aj5NtncTAqFJM82jrF2Q"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=105223968975978143534">Shameel Lamba</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRjdmQ09CSUw3X243TlRVMk1ZWThGdGVDaXh1SzM3dXVOcGdkVF9rRWt2RnVvaTZNVXJ1S2hzc2tINFAtQWo1TnRuY1RBcUZKTTgyanJGMlE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Thanks for the amazing updates.</span> I really appreciate for the update cause it was needed in Android. Now in my phone I can do majority of tasks. Earlier I had to shift from phone and web. The camera feature is fabulous, its so intelligent that I was shocked how it's even doing it. The annotation rocks. This update is less buggy and clean with amazing features making my work effortless. The context feature has helped me so much in my research work. Thumbs up. Evernote Rocks. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=116233903241380924828"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.googleusercontent.com/-0mxpHcP_3iM/AAAAAAAAAAI/AAAAAAAAAos/Yu8RQbVw654/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.googleusercontent.com/-0mxpHcP_3iM/AAAAAAAAAAI/AAAAAAAAAos/Yu8RQbVw654/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-10" data-reviewid="gp:AOqpTOFeZ-P6bXvPBj25HeDwyetgxyurDSY-Hbk6hnsERhiZA1myCKDDRqKS72JSFGlOvSkjVUVNQzo4iob-PA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=116233903241380924828">Ben640/ RicTDS</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRmVaLVA2Ylh2UEJqMjVIZUR3eWV0Z3h5dXJEU1ktSGJrNmhuc0VSaGlaQTFteUNLRERScUtTNzJKU0ZHbE92U2tqVlVWTlF6bzRpb2ItUEE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 80%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Valuable!</span> I don't lose my information even though I change my phone. Very easy to retrieve all my notes. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=110634300896686792812"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-IPeQ-VteKtc/AAAAAAAAAAI/AAAAAAAAAwQ/kpx41Ispqu8/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-IPeQ-VteKtc/AAAAAAAAAAI/AAAAAAAAAwQ/kpx41Ispqu8/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-11" data-reviewid="gp:AOqpTOGepq1_fk9Eg9ioXC2X6oquCLxlv7RcIIp3L9cZsORR7KZxDsDFhoT6WCrfI-t8gfU6XQ4xjC4S59xu5A"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=110634300896686792812">SURAPONG TANGTARATORN</a> </span> <span class="review-date">May 4, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR2VwcTFfZms5RWc5aW9YQzJYNm9xdUNMeGx2N1JjSUlwM0w5Y1pzT1JSN0taeERzREZob1Q2V0NyZkktdDhnZlU2WFE0eGpDNFM1OXh1NUE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 1 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 20%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Why embedded /w sS</span> We should be able to choose program that suitable for us. Do not embedded for us ! <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=110653454890038082486"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-wnvyJNhkXsE/AAAAAAAAAAI/AAAAAAAAFeE/o-0lspSI4Tc/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-wnvyJNhkXsE/AAAAAAAAAAI/AAAAAAAAFeE/o-0lspSI4Tc/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-12" data-reviewid="gp:AOqpTOGWvJHSltYFodxTijhnwzvALk3KBj4aIVCAdlPXjfWmVNuN5TfQuHCj707hJSUFyUBUKkQa1A09NarlEA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=110653454890038082486">Petar Živković</a> </span> <span class="review-date">May 6, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR1d2SkhTbHRZRm9keFRpamhud3p2QUxrM0tCajRhSVZDQWRsUFhqZldtVk51TjVUZlF1SENqNzA3aEpTVUZ5VUJVS2tRYTFBMDlOYXJsRUE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 80%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Excellent!</span> I love multi window support and the new auto mode camera functionality. There is one thing that drives me crazy, being unable to add custom fields for a business card. There are many different business card designes and the app most of the time can't recognize all information that is present (some cards also use both sides). So, I have to add missing information as a note. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=118319212478539271377"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.googleusercontent.com/-br4-LTyQZOY/AAAAAAAAAAI/AAAAAAACFNo/RiXuCeghpT4/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.googleusercontent.com/-br4-LTyQZOY/AAAAAAAAAAI/AAAAAAACFNo/RiXuCeghpT4/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-13" data-reviewid="gp:AOqpTOF2jOFuFHdQxbr_XgCZPO6IRYFGP5c3wqoVql8aarnz5eZYGWPpDbnXdEilNhlLPAeiEwBsSENNq1m8BQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=118319212478539271377">Nuno Alex Rocha</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRjJqT0Z1RkhkUXhicl9YZ0NaUE82SVJZRkdQNWMzd3FvVnFsOGFhcm56NWVaWUdXUHBEYm5YZEVpbE5obExQQWVpRXdCc1NFTk5xMW04QlE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Best way to organize thoughts</span> Simple and easy to use This is the best app I have to save note and sync them with my pc and vice versa I recommend it. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=108497760785394844700"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.ggpht.com/-p6ZYOAJzkLo/AAAAAAAAAAI/AAAAAAAAAAA/UjWxrjENuJQ/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.ggpht.com/-p6ZYOAJzkLo/AAAAAAAAAAI/AAAAAAAAAAA/UjWxrjENuJQ/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-14" data-reviewid="gp:AOqpTOHZBxNpShSgV55bLCxDgJI_M3_sg_UeGXO4EAgwRTyh1s2s_V2DiBTG-AxtGxj5kll_R2R1n6nwQ-JGRQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=108497760785394844700">Leslie W. Stewart III</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSFpCeE5wU2hTZ1Y1NWJMQ3hEZ0pJX00zX3NnX1VlR1hPNEVBZ3dSVHloMXMyc19WMkRpQlRHLUF4dEd4ajVrbGxfUjJSMW42bndRLUpHUlE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 2 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 40%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title"></span> I was loving this until you guys took the Clipper away with this new upgrade. Please put it back. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> <div class="review-header" data-expand-target="user-15" data-reviewid="lg:AOqpTOFosXpgWj5tUQz32_pPOD3y0g9LowdGpniBWkDrfPm4kMHfvvAJ_r6KWSeoPWbceqVds1y6K8Rt6mUo2A"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPRm9zWHBnV2o1dFVRejMyX3BQT0QzeTBnOUxvd2RHcG5pQldrRHJmUG00a01IZnZ2QUpfcjZLV1Nlb1BXYmNlcVZkczF5Nks4UnQ2bVVvMkE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 80%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">A must have.</span> The best way to organize data across devices I have found. I do lengthy entry &amp; editing on a computer, but can still do great things on my phone &amp; tablets. Handwriting, pictures, doc scanning, &amp; so on. The search function made it all come together. Now that my 1yr free Premium is up, it's not what it was. A cheaper version is needed. Plus adds up &amp; Premium is out of reach for me. I just need offline &amp; search. Don't care for MS, but OneNote is looking better. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=109313308734661466086"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-H_LgNv-XsCY/AAAAAAAAAAI/AAAAAAAAAjw/gY8LZHerT6E/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-H_LgNv-XsCY/AAAAAAAAAAI/AAAAAAAAAjw/gY8LZHerT6E/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-16" data-reviewid="gp:AOqpTOFbvYI2F11J7mkV7y_n9NLFd49KQ_7hAX3yZJmGlLHBHcC2Nab94iSOOGlJNE_eyuPs7cM7-5qtudx35Q"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=109313308734661466086">Eric Bonnefoy</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRmJ2WUkyRjExSjdta1Y3eV9uOU5MRmQ0OUtRXzdoQVgzeVpKbUdsTEhCSGNDMk5hYjk0aVNPT0dsSk5FX2V5dVBzN2NNNy01cXR1ZHgzNVE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Good job</span> Excellent. You did a great work with this update. Most of the drawbacks of the Android version have been corrected. It is really pleasant to use Evernote on an android tablet now. Many thanks. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=112485989822254575091"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-9ZKoCUjTO8I/AAAAAAAAAAI/AAAAAAAAAXI/01YBS0bwUVM/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-9ZKoCUjTO8I/AAAAAAAAAAI/AAAAAAAAAXI/01YBS0bwUVM/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-17" data-reviewid="gp:AOqpTOFvO9gHeX60BU39q-RYl_x4JtaSxQ75TZnggS2wAqv2dtgMJo7trXfb5IZYHkfKBnsx9gGT7jW5oZ5zdA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=112485989822254575091">4DGeorge</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRnZPOWdIZVg2MEJVMzlxLVJZbF94NEp0YVN4UTc1VFpuZ2dTMndBcXYyZHRnTUpvN3RyWGZiNUlaWUhrZktCbnN4OWdHVDdqVzVvWjV6ZEE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Quality, Functional, Flexible, and Just Works!</span> Title says it all. Definitely worth using. As with all App suites it has its idiosyncrasies, however, once you've mastered them your organization can swiftly enjoy its improved documentation collaboration and data gathering. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=113630236274979167620"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-zNfKukBD-3k/AAAAAAAAAAI/AAAAAAAABW0/rPFZr25WjuQ/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-zNfKukBD-3k/AAAAAAAAAAI/AAAAAAAABW0/rPFZr25WjuQ/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-18" data-reviewid="gp:AOqpTOFqOSW37RUWBcjQzPJ8Rp8VsbQ04u9da0vHxIhLdBUG5nhqnLCf-2TfKl7Max7nqxNTsTFbvjpHD0CpAg"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=113630236274979167620">Sandy Low</a> </span> <span class="review-date">May 6, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRnFPU1czN1JVV0JjalF6UEo4UnA4VnNiUTA0dTlkYTB2SHhJaExkQlVHNW5ocW5MQ2YtMlRmS2w3TWF4N25xeE5Uc1RGYnZqcEhEMENwQWc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 60%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Will be better if recording doesn't stop while running in background.</span> Recording stops when evernote is running in the background on android gadgets. Evernote app on apple allows recording to continue while running in the background on apple gadgets. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=113338796267413511504"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.ggpht.com/-dBgKH5PjWts/AAAAAAAAAAI/AAAAAAAAAAA/s6cJPRcdbw0/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.ggpht.com/-dBgKH5PjWts/AAAAAAAAAAI/AAAAAAAAAAA/s6cJPRcdbw0/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-19" data-reviewid="gp:AOqpTOGn3tuvps_9GpRJFL28y3MfiTeu0XX0MA9mOTBLi9hZQhoCJiGkxgFrSyTcYiCFhk2Hwy4qyA73vci5yg"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=113338796267413511504">Mos Tr</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR24zdHV2cHNfOUdwUkpGTDI4eTNNZmlUZXUwWFgwTUE5bU9UQkxpOWhaUWhvQ0ppR2t4Z0ZyU3lUY1lpQ0ZoazJId3k0cXlBNzN2Y2k1eWc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 80%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Thank you</span> Very nice updated, the zoom in zoom out feeling fixed. Keep going !! <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=108260546200370614140"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-8GZ8fCjsMrM/AAAAAAAAAAI/AAAAAAAAjTI/iDggd_4Ca1Q/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-8GZ8fCjsMrM/AAAAAAAAAAI/AAAAAAAAjTI/iDggd_4Ca1Q/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-20" data-reviewid="gp:AOqpTOFoDQj1Yc9Vm6g6ZUB0Q0c6FgL3ZdJXXpQJfCPIMpDqaxxWJnntLz3GQLtKw1nbqI58npPTIeMFwZzxEg"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=108260546200370614140">Ethan Stein</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRm9EUWoxWWM5Vm02ZzZaVUIwUTBjNkZnTDNaZEpYWHBRSmZDUElNcERxYXh4V0pubnRMejNHUUx0S3cxbmJxSTU4bnBQVEllTUZ3Wnp4RWc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title"></span> Latest update fixes the Document camera problems that the previous version had. Improves Document Camera greatly. Back to 5 stars. Thank you Evernote team for the great work. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=117446341973294645577"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-PPTv2N83zzI/AAAAAAAAAAI/AAAAAAAAA0o/g_G95J2porw/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-PPTv2N83zzI/AAAAAAAAAAI/AAAAAAAAA0o/g_G95J2porw/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-21" data-reviewid="gp:AOqpTOEAuMm6zOS2bKpkB3CN3bJk75_lbp7Nkh9_s4GOqI7Z3zvsv7jFWvBUBthCp3XURo3c7xC8dtyVVpu9Iw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=117446341973294645577">Alice Shinnizle</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRUF1TW02ek9TMmJLcGtCM0NOM2JKazc1X2xicDdOa2g5X3M0R09xSTdaM3p2c3Y3akZXdkJVQnRoQ3AzWFVSbzNjN3hDOGR0eVZWcHU5SXc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 60%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">It's been awesomely great, until</span> The Quicknote edit got error after I relaunched it. Like the space or enter. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> <div class="review-header" data-expand-target="user-22" data-reviewid="lg:AOqpTOH93UnZ8kj1xLd5h3wDrfdeIguya5JvJYQbfK1cmGOMQpuDrTiBK3vubaCdL5-8zddTdBgejDbunKFYaQ"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">May 4, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPSDkzVW5aOGtqMXhMZDVoM3dEcmZkZUlndXlhNUp2SllRYmZLMWNtR09NUXB1RHJUaUJLM3Z1YmFDZEw1LTh6ZGRUZEJnZWpEYnVuS0ZZYVE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Best In the business</span> Just wish the desktop version was as clean as the mobile and Web version :-/ <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=106787877306266626341"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.ggpht.com/-s-IjiHE7X5Q/AAAAAAAAAAI/AAAAAAAAAAA/xHq-lkFuKhQ/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.ggpht.com/-s-IjiHE7X5Q/AAAAAAAAAAI/AAAAAAAAAAA/xHq-lkFuKhQ/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-23" data-reviewid="gp:AOqpTOGJX_ivrNPz2lfFwfO_YJ2KJk3tCmzg2JidEGwcKdyqRG3gmXnBH2c1D5QC5Pr3s9wkKf-y5RcMJZBYcw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=106787877306266626341">Lim Hua</a> </span> <span class="review-date">May 6, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR0pYX2l2ck5QejJsZkZ3Zk9fWUoyS0prM3RDbXpnMkppZEVHd2NLZHlxUkczZ21YbkJIMmMxRDVRQzVQcjNzOXdrS2YteTVSY01KWkJZY3c" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Awesome</span> It's so flexible &amp; allows you to do any which way you want <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> <div class="review-header" data-expand-target="user-24" data-reviewid="lg:AOqpTOHp09whl5Sa_7cJiRkqekAk7PkhXZlviorRi7lxHJUXqwZbuwkUpxug2Qy08Kich4X1BJ33CAbTS1AiUA"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPSHAwOXdobDVTYV83Y0ppUmtxZWtBazdQa2hYWmx2aW9yUmk3bHhISlVYcXdaYnV3a1VweHVnMlF5MDhLaWNoNFgxQkozM0NBYlRTMUFpVUE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title"></span> Last few updates have been great - particularly v7.8.2. Lots of improvements to core features - making it a pleasure to use. The only things lacking for me at this point is a more robust reminder system, a dark theme, and the ability to control the resolution of the pictures the camera is taking. Still worthy of 5 stars without these. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=113977930272727794017"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-S19_Cdovw3E/AAAAAAAAAAI/AAAAAAAAAuw/wQ64YkjZMlY/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-S19_Cdovw3E/AAAAAAAAAAI/AAAAAAAAAuw/wQ64YkjZMlY/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-25" data-reviewid="gp:AOqpTOGlL06DeAGORy-mzCbV7Wxl8YnGYmUSNy5TyI-SG2zinsxfcJzzW4E5QNIo9eXSzWj7ngCeQae7OCoATw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=113977930272727794017">Mohamad Taha</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR2xMMDZEZUFHT1J5LW16Q2JWN1d4bDhZbkdZbVVTTnk1VHlJLVNHMnppbnN4ZmNKenpXNEU1UU5JbzllWFN6V2o3bmdDZVFhZTdPQ29BVHc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 80%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Great app but</span> Last update it created a problem in the right to left texts (arabic) all text is now only from left to right... please fix. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=106217713076631338146"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-j4quwI-w_QQ/AAAAAAAAAAI/AAAAAAAAABc/XO0UaEkRemQ/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-j4quwI-w_QQ/AAAAAAAAAAI/AAAAAAAAABc/XO0UaEkRemQ/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-26" data-reviewid="gp:AOqpTOElWP-SHWzvLS7iiDLB1gc8DHW3ms6hdp1IV2XuOh3Z9OPlk5VlAYvXxMA_MvMQZ5zYq8EEApAG78p2Pw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=106217713076631338146">Jeph Phillips</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRWxXUC1TSFd6dkxTN2lpRExCMWdjOERIVzNtczZoZHAxSVYyWHVPaDNaOU9QbGs1VmxBWXZYeE1BX012TVFaNXpZcThFRUFwQUc3OHAyUHc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Still like it</span> I'm enthralled with tools like Evernote that help me, not hinder me. Evernote's drive to improve and fine tune keeps me growing too. BUT in their passion they may leave us bewildered. Our timely feedback to them is key <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> <div class="review-header" data-expand-target="user-27" data-reviewid="lg:AOqpTOEQUUn3t4dOM3c4jrF6hDOetqPyDCn_rHTzmyZSOW68AjBSfumIDXlCxQN9XBCoqSle81uJilcG0ZewKw"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">May 4, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPRVFVVW4zdDRkT00zYzRqckY2aERPZXRxUHlEQ25fckhUem15WlNPVzY4QWpCU2Z1bUlEWGxDeFFOOVhCQ29xU2xlODF1SmlsY0cwWmV3S3c" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 80%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title"></span> Great update with some long awaited features for me. However now I cannot paste from the "Clip Tray" of my LG G3 which I very commonly do and Evernote forces text after a checkbox to bold font. Would also really like the option to only see the tags associated with a certain notebook when viewing that notebook. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=110895384507560422237"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-LH1TNGjvnPo/AAAAAAAAAAI/AAAAAAAADss/VJTDnvJPHDU/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-LH1TNGjvnPo/AAAAAAAAAAI/AAAAAAAADss/VJTDnvJPHDU/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-28" data-reviewid="gp:AOqpTOGdF7i-cMAewmxGhiWs4eol2nBUdOpbzqRrRrCPQ7oh0Tl5cqhQufyvBOn7pY3S5DdPU3d50aql31telg"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=110895384507560422237">yathani</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR2RGN2ktY01BZXdteEdoaVdzNGVvbDJuQlVkT3BienFSclJyQ1BRN29oMFRsNWNxaFF1Znl2Qk9uN3BZM1M1RGRQVTNkNTBhcWwzMXRlbGc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Finally</span> They fixed frame drop from scrolling 👍 <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=108296059571607541471"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-5yYBeaPs9Os/AAAAAAAAAAI/AAAAAAAAA54/VoKNow0VeYI/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-5yYBeaPs9Os/AAAAAAAAAAI/AAAAAAAAA54/VoKNow0VeYI/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-29" data-reviewid="gp:AOqpTOHss4nOIGi_590SiBHEbKun-bB7FbcJIWHMYupTtca7ztT161BapzlQcOn69ikqCvo7EfOIsYYkL-ZAlA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=108296059571607541471">Aleindra Mieramadhian</a> </span> <span class="review-date">May 6, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSHNzNG5PSUdpXzU5MFNpQkhFYkt1bi1iQjdGYmNKSVdITVl1cFR0Y2E3enRUMTYxQmFwemxRY09uNjlpa3FDdm83RWZPSXNZWWtMLVpBbEE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">10/10 responsive dev,</span> Still the best note taking apps. Clean interface, sync perfectly and have many formatting option . The free version is good enough for me and most average student does. Overall i really recommend evernote <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=111152424029379331087"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/-HzAAbHhZemA/AAAAAAAAAAI/AAAAAAAAAAA/TBYjU8HT4XU/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/-HzAAbHhZemA/AAAAAAAAAAI/AAAAAAAAAAA/TBYjU8HT4XU/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-30" data-reviewid="gp:AOqpTOFVzLk5US3J7DdLsI4WdJsuagS3ecbsp2g7iG4WZlMJfSLK_DK3dIlGOFOL_f79DFKuWwjTcslrOfPCvQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=111152424029379331087">Rony Van Hove</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRlZ6TGs1VVMzSjdEZExzSTRXZEpzdWFnUzNlY2JzcDJnN2lHNFdabE1KZlNMS19ESzNkSWxHT0ZPTF9mNzlERkt1V3dqVGNzbHJPZlBDdlE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 2 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 40%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Moleskine Business Notebook support?</span> When are u supporting the Evernote Moleskine Business notebook on Android? This is long overdue!! What makes Android version so difficult from iOS? <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=102282442727170845333"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-vQJuRay1SRM/AAAAAAAAAAI/AAAAAAAAD3k/mt78kOiczFk/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-vQJuRay1SRM/AAAAAAAAAAI/AAAAAAAAD3k/mt78kOiczFk/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-31" data-reviewid="gp:AOqpTOHMb_QP5FAHoy0KTC8xXooFQX0IaUEOeT969INr61lDYvnKYmeKHOCnLa4JGAbD5X3Ym2tdwu7uETsEDg"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=102282442727170845333">El Yigui</a> </span> <span class="review-date">May 6, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSE1iX1FQNUZBSG95MEtUQzh4WG9vRlFYMElhVUVPZVQ5NjlJTnI2MWxEWXZuS1ltZUtIT0NuTGE0SkdBYkQ1WDNZbTJ0ZHd1N3VFVHNFRGc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 1 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 20%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Note</span> For notes, S Note is much better. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=102998116975067833971"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-GFUJI9oSyUM/AAAAAAAAAAI/AAAAAAAAgSM/aoC3RERdt6I/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.googleusercontent.com/-GFUJI9oSyUM/AAAAAAAAAAI/AAAAAAAAgSM/aoC3RERdt6I/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-32" data-reviewid="gp:AOqpTOH8yFtkZTwRSYd7chrCTamwoE1i3zMUYxD9Pw-BQKV8VCaMq3xQZFqBXzZjQNo6oH6nCVtJlxt81p6NBA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=102998116975067833971">Robert Krause</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSDh5RnRrWlR3UlNZZDdjaHJDVGFtd29FMWkzek1VWXhEOVB3LUJRS1Y4VkNhTXEzeFFaRnFCWHpaalFObzZvSDZuQ1Z0Smx4dDgxcDZOQkE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 80%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Profiles</span> Make profile modes just like Google allows you to switch accounts. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=116098462479124259684"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.googleusercontent.com/-tdAa1r33LJ8/AAAAAAAAAAI/AAAAAAAABpM/qBnDV3VfFrk/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.googleusercontent.com/-tdAa1r33LJ8/AAAAAAAAAAI/AAAAAAAABpM/qBnDV3VfFrk/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-33" data-reviewid="gp:AOqpTOG-J_WfMxRIJy7iRiq40iooG3q1zn6o5Oq7uqsdO-Mr9uRqDEDZu0gauDmEoECjMgXxhBmhH9MCEHct1g"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=116098462479124259684">Anthony Fasano</a> </span> <span class="review-date">May 4, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRy1KX1dmTXhSSUp5N2lSaXE0MGlvb0czcTF6bjZvNU9xN3Vxc2RPLU1yOXVScURFRFp1MGdhdURtRW9FQ2pNZ1h4aEJtaEg5TUNFSGN0MWc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 80%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Nice app, but...</span> EDITED - great app. Latest update awesome, except now I'm finding I need to click check marks 2 or 3 times just to mark them (like on a checklist). On an S6. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <span> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w48-c-h48)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh3.ggpht.com/EGemoI2NTXmTsBVtJqk8jxF9rh8ApRWfsIMQSt2uE4OcpQqbFu7f7NbTK05lx80nuSijCz7sc3a277R67g=w96-c-h96)"></span> </span> </span> <div class="review-header" data-expand-target="user-34" data-reviewid="lg:AOqpTOHHK1ghskfNrMcik4sHry002MCWha5J4a6hL40SipEvRbDvq6rD8NhGm1vSgaLJqDGbV5M-FSepM9-bYg"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">May 6, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPSEhLMWdoc2tmTnJNY2lrNHNIcnkwMDJNQ1doYTVKNGE2aEw0MFNpcEV2UmJEdnE2ckQ4TmhHbTF2U2dhTEpxREdiVjVNLUZTZXBNOS1iWWc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 80%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Best app</span> I use this app daily. It's great. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=107405462281607669716"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-Bnral3S07FY/AAAAAAAAAAI/AAAAAAAAACc/LJsqVEO3W_I/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-Bnral3S07FY/AAAAAAAAAAI/AAAAAAAAACc/LJsqVEO3W_I/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-35" data-reviewid="gp:AOqpTOFmj77kAxDhCgjAm5ZuPsWssS7smh0Xdm_aligtpN3peaGd39NrZG37X0s6kHBpiBoBlwuU9LAXFfAlng"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=107405462281607669716">tiru venkata krishna nanduri</a> </span> <span class="review-date">May 6, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRm1qNzdrQXhEaENnakFtNVp1UHNXc3NTN3NtaDBYZG1fYWxpZ3RwTjNwZWFHZDM5TnJaRzM3WDBzNmtIQnBpQm9CbHd1VTlMQVhGZkFsbmc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 100%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Very good and useful app</span> Different ways of noting things is superbly organised. Anecdotes of events daily or periodically written or audio or video or any data file can be saved and the most useful thing is that it's linked with mail.,hence no loss of notes is sure. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=117345480933298475491"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-oEFk72RP8kw/AAAAAAAAAAI/AAAAAAAADis/tPummthDJKg/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh5.googleusercontent.com/-oEFk72RP8kw/AAAAAAAAAAI/AAAAAAAADis/tPummthDJKg/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-36" data-reviewid="gp:AOqpTOH1BKqNr9Xk8o9kXj7GmPDSLWNUMTXWxWCOwjHwEosK7hs_ZLVRmcwdLSxlnpUtr-YldjIUvAXyw0_knQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=117345480933298475491">Arnab Mukherjee</a> </span> <span class="review-date">May 6, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSDFCS3FOcjlYazhvOWtYajdHbVBEU0xXTlVNVFhXeFdDT3dqSHdFb3NLN2hzX1pMVlJtY3dkTFN4bG5wVXRyLVlsZGpJVXZBWHl3MF9rblE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 2 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 40%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">old version was better</span> after update in may 2016...can't paste as text, cnt edit properly on an Android device. How can I revert back to older version??? <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=112204735595750261292"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.googleusercontent.com/-9TW3B7u6g2w/AAAAAAAAAAI/AAAAAAAAC_4/ymW44omcinY/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh4.googleusercontent.com/-9TW3B7u6g2w/AAAAAAAAAAI/AAAAAAAAC_4/ymW44omcinY/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-37" data-reviewid="gp:AOqpTOGD8M2fEaXXJRv1QmllyqwpDrpqIBIL0tL8VKoZpCVc982zRTNIVYWRoLQod9Mtk5UgokBdRDYiIOYlpA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=112204735595750261292">Karl Granatin</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR0Q4TTJmRWFYWEpSdjFRbWxseXF3cERycHFJQklMMHRMOFZLb1pwQ1ZjOTgyelJUTklWWVdSb0xRb2Q5TXRrNVVnb2tCZFJEWWlJT1lscEE" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 80%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Cross platform</span> Offline notes isn't free <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=102114892826232732810"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-xJgnwY-UPCM/AAAAAAAAAAI/AAAAAAAACjg/RNxiT-jZIVg/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-xJgnwY-UPCM/AAAAAAAAAAI/AAAAAAAACjg/RNxiT-jZIVg/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-38" data-reviewid="gp:AOqpTOFE5cBTm09n5I43qLz8Qd1nAvUPsOVzFv39HF3ZBCs6XeA0gEsbi6xYnNt5AZFWNcXSiW4_HSHOS_IzZg"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=102114892826232732810">Zied Fekih Romdhane</a> </span> <span class="review-date">May 4, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRkU1Y0JUbTA5bjVJNDNxTHo4UWQxbkF2VVBzT1Z6RnYzOUhGM1pCQ3M2WGVBMGdFc2JpNnhZbk50NUFaRldOY1hTaVc0X0hTSE9TX0l6Wmc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 60%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title">Moyenne</span> Plusieurs fonctionnalités manquent.. <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review" tabindex="0"> <a href="/store/people/details?id=113807456102274181958"> <span class="responsive-img-ldpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-It3Ux40l2Vk/AAAAAAAAAAI/AAAAAAAAABA/vWzUjs-rUB4/w48-c-h48/photo.jpg)"></span> </span> <span class="responsive-img-hdpi"> <span class="responsive-img author-image" style="background-image:url(https://lh6.googleusercontent.com/-It3Ux40l2Vk/AAAAAAAAAAI/AAAAAAAAABA/vWzUjs-rUB4/w96-c-h96/photo.jpg)"></span> </span> </a> <div class="review-header" data-expand-target="user-39" data-reviewid="gp:AOqpTOFuD5CHphGjiSa4r87GLBE76WadODSHxP1K2SqPfe_U9VCk923czqEoYZc4FjvwYYJDwaO2DSgD08LlXw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=113807456102274181958">Serenella Perera</a> </span> <span class="review-date">May 5, 2016</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRnVENUNIcGhHamlTYTRyODdHTEJFNzZXYWRPRFNIeFAxSzJTcVBmZV9VOVZDazkyM2N6cUVvWVpjNEZqdndZWUpEd2FPMkRTZ0QwOExsWHc" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 80%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body with-review-wrapper"> <span class="review-title"></span> A best way to organise thoughts <div class="review-link" style="display:none"> <a class="id-no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> </div> </div> </div> <div class="details-section-divider"></div> </div> <div aria-atomic="true" aria-live="polite" role="status"> <span class="off-screen id-review-deleted-msg" style="display:none"> Review deleted </span> </div> <script>if (typeof ircs == 'undefined'){jQuery('body').one('onExportsReady',function(){ircs();});}else {ircs();}
90
- </script> </div> <div class="details-wrapper"> <div class="details-section whatsnew"> <div class="details-section-contents show-more-container" jscontroller="G7YeLc" jsaction="rcuQ6b:rcuQ6b"> <h1 class="heading"> What's New </h1> <div class="recent-change">New:</div><div class="recent-change">- Many enhancements to the editing experience</div><div class="recent-change">- Support for strikethrough, subscript, and superscript text styles</div><div class="recent-change">- Camera now automatically detects and captures business cards, documents, whiteboards, Post-it ® Notes and receipts</div><div class="recent-change">- Ability to mark up images and PDFs</div><div class="recent-change">- Select multiple notes at once</div><div class="recent-change">- ‘Trash’ can now be emptied</div><div class="recent-change">Fixed:</div><div class="recent-change">- Fixed many note display and note editing bugs</div><div class="recent-change">- Various bug fixes and stability improvements</div> <div class="show-more-end" jsaction="click:vhaaFf"></div> <div> <button class="play-button show-more small" jsaction="KoToPc"> Read more </button> <button class="play-button expand-close" jsaction="vhaaFf"> <div class="close-image"> </div> </button> </div> </div> <div class="details-section-divider"></div> </div> </div> <div class="details-wrapper"> <div class="details-section metadata"> <div class="details-section-heading"> <h1 class="heading"> Additional information </h1> </div> <div class="details-section-contents"> <div class="meta-info"> <div class="title">Updated</div> <div class="content" itemprop="datePublished">May 5, 2016</div> </div> <div class="meta-info"> <div class="title">Size</div> <div class="content" itemprop="fileSize"> Varies with device </div> </div> <div class="meta-info"> <div class="title">Installs</div> <div class="content" itemprop="numDownloads"> 100,000,000 - 500,000,000 </div> </div> <div class="meta-info"> <div class="title">Current Version</div> <div class="content" itemprop="softwareVersion"> Varies with device </div> </div> <div class="meta-info"> <div class="title">Requires Android</div> <div class="content" itemprop="operatingSystems"> Varies with device </div> </div> <div class="meta-info contains-text-link"> <div class="title">Content Rating</div> <div class="content" itemprop="contentRating">Everyone</div> <a class="content" href="https://support.google.com/googleplay?p=appgame_ratings" target="_blank">Learn more</a> </div> <div class="meta-info"> <div class="title"> Interactive Elements </div> <div class="content">Users Interact, Digital Purchases</div> </div> <div class="meta-info"> <div class="title">In-app Products</div> <div class="content">$1.00 - $99.99 per item</div> </div> <div class="meta-info"> <div class="title">Permissions</div> <button class="content id-view-permissions-details fake-link" data-docid="com.evernote"> View details </button> </div> <div class="meta-info contains-text-link"> <div class="title">Report</div> <a class="content" href="https://support.google.com/googleplay/?p=report_content" target="_blank"> Flag as inappropriate </a> </div> <div class="meta-info"> <div class="title"> Offered By </div> <div class="content">Evernote Corporation</div> </div> <div class="meta-info"> <div class="title"> Developer </div> <div class="content contains-text-link"> <a class="dev-link" href="https://www.google.com/url?q=http://www.evernote.com&amp;sa=D&amp;usg=AFQjCNHjz04lGDlIindmH3Ax1DOtqvT2mA" rel="nofollow" target="_blank"> Visit website </a> <a class="dev-link" href="mailto:appstore-evernote-android@evernote.com" rel="nofollow" target="_blank"> Email appstore-evernote-android@evernote.com </a> <a class="dev-link" href="https://www.google.com/url?q=http://evernote.com/privacy/&amp;sa=D&amp;usg=AFQjCNHTyefT6GQ6A6mnOKPeqKUA_qjesg" rel="nofollow" target="_blank"> Privacy Policy </a> <div class="content physical-address">305 Walnut Street
91
- Redwood City, CA 94063</div> </div> </div> </div> <div class="details-section-divider"></div> </div> </div><div class="details-wrapper"> <div class="id-cluster-container details-section recommendation"> <div class="details-section-contents"> <div class="rec-cluster" data-server-cookie="CAMiHAgCEAMaFBISCgxjb20uZXZlcm5vdGUQARgDKAE=" data-uitype="400"> <h1 class="heading"> Similar </h1> <div class="cards expandable id-card-list"> <div class="card no-rationale square-cover apps small" data-docid="com.socialnmobile.dictapps.notepad.color.note" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.socialnmobile.dictapps.notepad.color.note" data-server-cookie="CAIaOQo1EjMKLWNvbS5zb2NpYWxubW9iaWxlLmRpY3RhcHBzLm5vdGVwYWQuY29sb3Iubm90ZRABGANCAA==" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaOQo1EjMKLWNvbS5zb2NpYWxubW9iaWxlLmRpY3RhcHBzLm5vdGVwYWQuY29sb3Iubm90ZRABGANCAA==" data-uitype="500" href="/store/apps/details?id=com.socialnmobile.dictapps.notepad.color.note" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="ColorNote Notepad Notes" class="cover-image" data-cover-large="//lh3.ggpht.com/IDOtRhsZLSG3EFxWxmWREMPa42_SNQvl9-x4FBu5dn9aJMjpVtMx_GoNdnQwEIp_7gsV=w340" data-cover-small="//lh3.ggpht.com/IDOtRhsZLSG3EFxWxmWREMPa42_SNQvl9-x4FBu5dn9aJMjpVtMx_GoNdnQwEIp_7gsV=w170" src="//lh3.ggpht.com/IDOtRhsZLSG3EFxWxmWREMPa42_SNQvl9-x4FBu5dn9aJMjpVtMx_GoNdnQwEIp_7gsV=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.socialnmobile.dictapps.notepad.color.note" aria-label=" ColorNote Notepad Notes "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.socialnmobile.dictapps.notepad.color.note"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.socialnmobile.dictapps.notepad.color.note" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.socialnmobile.dictapps.notepad.color.note" title="ColorNote Notepad Notes" aria-hidden="true" tabindex="-1"> ColorNote Notepad Notes <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Notes" title="Notes">Notes</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.socialnmobile.dictapps.notepad.color.note"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaOQo1EjMKLWNvbS5zb2NpYWxubW9iaWxlLmRpY3RhcHBzLm5vdGVwYWQuY29sb3Iubm90ZRABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> ColorNote® - Easy to use notepad for notes, shopping list, to-do list, calendar <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.socialnmobile.dictapps.notepad.color.note" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.socialnmobile.dictapps.notepad.color.note"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.6 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 91.19470596313477%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.socialnmobile.dictapps.notepad.color.note"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaOQo1EjMKLWNvbS5zb2NpYWxubW9iaWxlLmRpY3RhcHBzLm5vdGVwYWQuY29sb3Iubm90ZRABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.microsoft.office.onenote" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.microsoft.office.onenote" data-server-cookie="CAIaKAokEiIKHGNvbS5taWNyb3NvZnQub2ZmaWNlLm9uZW5vdGUQARgDQgA=" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaKAokEiIKHGNvbS5taWNyb3NvZnQub2ZmaWNlLm9uZW5vdGUQARgDQgA=" data-uitype="500" href="/store/apps/details?id=com.microsoft.office.onenote" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="OneNote" class="cover-image" data-cover-large="//lh3.googleusercontent.com/bUOH_L5Y4KHh5dDgyIRtbKvyeUyuj0PrXOMcGkSM9rlJdOJhcmVcFZk5SMnTHD37WQ=w340" data-cover-small="//lh3.googleusercontent.com/bUOH_L5Y4KHh5dDgyIRtbKvyeUyuj0PrXOMcGkSM9rlJdOJhcmVcFZk5SMnTHD37WQ=w170" src="//lh3.googleusercontent.com/bUOH_L5Y4KHh5dDgyIRtbKvyeUyuj0PrXOMcGkSM9rlJdOJhcmVcFZk5SMnTHD37WQ=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.microsoft.office.onenote" aria-label=" OneNote "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.microsoft.office.onenote"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.microsoft.office.onenote" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.microsoft.office.onenote" title="OneNote" aria-hidden="true" tabindex="-1"> OneNote <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/dev?id=6720847872553662727" title="Microsoft Corporation">Microsoft Corporation</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.microsoft.office.onenote"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaKAokEiIKHGNvbS5taWNyb3NvZnQub2ZmaWNlLm9uZW5vdGUQARgDQgA=" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Microsoft OneNote is your notebook for capturing what&#39;s important in your life <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.microsoft.office.onenote" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.microsoft.office.onenote"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.0 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 80.24970054626465%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.microsoft.office.onenote"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaKAokEiIKHGNvbS5taWNyb3NvZnQub2ZmaWNlLm9uZW5vdGUQARgDQgA=" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.google.android.keep" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.google.android.keep" data-server-cookie="CAIaIwofEh0KF2NvbS5nb29nbGUuYW5kcm9pZC5rZWVwEAEYA0IA" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaIwofEh0KF2NvbS5nb29nbGUuYW5kcm9pZC5rZWVwEAEYA0IA" data-uitype="500" href="/store/apps/details?id=com.google.android.keep" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Google Keep" class="cover-image" data-cover-large="//lh5.ggpht.com/DY9VpGNRSHoICKJVpIy9dMjgm7TOb3lTveLtsv4got8aqbLGpSS4w5xXiR7VBe-mr_M=w340" data-cover-small="//lh5.ggpht.com/DY9VpGNRSHoICKJVpIy9dMjgm7TOb3lTveLtsv4got8aqbLGpSS4w5xXiR7VBe-mr_M=w170" src="//lh5.ggpht.com/DY9VpGNRSHoICKJVpIy9dMjgm7TOb3lTveLtsv4got8aqbLGpSS4w5xXiR7VBe-mr_M=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.google.android.keep" aria-label=" Google Keep "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.google.android.keep"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.google.android.keep" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.google.android.keep" title="Google Keep" aria-hidden="true" tabindex="-1"> Google Keep <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/dev?id=5700313618786177705" title="Google Inc.">Google Inc.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.google.android.keep"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaIwofEh0KF2NvbS5nb29nbGUuYW5kcm9pZC5rZWVwEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Google Keep <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.google.android.keep" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.google.android.keep"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 88.60943794250488%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.google.android.keep"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaIwofEh0KF2NvbS5nb29nbGUuYW5kcm9pZC5rZWVwEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="org.whiteglow.keepmynotes" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="org.whiteglow.keepmynotes" data-server-cookie="CAIaJQohEh8KGW9yZy53aGl0ZWdsb3cua2VlcG15bm90ZXMQARgDQgA=" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaJQohEh8KGW9yZy53aGl0ZWdsb3cua2VlcG15bm90ZXMQARgDQgA=" data-uitype="500" href="/store/apps/details?id=org.whiteglow.keepmynotes" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Keep My Notes - Notepad &amp; Memo" class="cover-image" data-cover-large="//lh3.googleusercontent.com/G6NJ7b8tjZxTASOPTKOuHl63pKgk8nlBZ1K7mhoNwx7yG-eaiKqk3gzsTTwzot0SATU=w340" data-cover-small="//lh3.googleusercontent.com/G6NJ7b8tjZxTASOPTKOuHl63pKgk8nlBZ1K7mhoNwx7yG-eaiKqk3gzsTTwzot0SATU=w170" src="//lh3.googleusercontent.com/G6NJ7b8tjZxTASOPTKOuHl63pKgk8nlBZ1K7mhoNwx7yG-eaiKqk3gzsTTwzot0SATU=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=org.whiteglow.keepmynotes" aria-label=" Keep My Notes - Notepad &amp; Memo "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="org.whiteglow.keepmynotes"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=org.whiteglow.keepmynotes" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=org.whiteglow.keepmynotes" title="Keep My Notes - Notepad &amp; Memo" aria-hidden="true" tabindex="-1"> Keep My Notes - Notepad &amp; Memo <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=LiteWhite" title="LiteWhite">LiteWhite</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="org.whiteglow.keepmynotes"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaJQohEh8KGW9yZy53aGl0ZWdsb3cua2VlcG15bm90ZXMQARgDQgA=" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Take notes at anytime and wherever you go using this free notepad app. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=org.whiteglow.keepmynotes" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=org.whiteglow.keepmynotes"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 89.54618453979492%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="org.whiteglow.keepmynotes"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaJQohEh8KGW9yZy53aGl0ZWdsb3cua2VlcG15bm90ZXMQARgDQgA=" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.pixatel.apps.notepad" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.pixatel.apps.notepad" data-server-cookie="CAIaJAogEh4KGGNvbS5waXhhdGVsLmFwcHMubm90ZXBhZBABGANCAA==" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaJAogEh4KGGNvbS5waXhhdGVsLmFwcHMubm90ZXBhZBABGANCAA==" data-uitype="500" href="/store/apps/details?id=com.pixatel.apps.notepad" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Ultimate Notepad" class="cover-image" data-cover-large="//lh4.ggpht.com/DXe6Q5ld288x8LxNVoc2GXLE5snP8zF29FZVG5fds5INZHdaiR8_4yGbh3Nq5ZDfghw=w340" data-cover-small="//lh4.ggpht.com/DXe6Q5ld288x8LxNVoc2GXLE5snP8zF29FZVG5fds5INZHdaiR8_4yGbh3Nq5ZDfghw=w170" src="//lh4.ggpht.com/DXe6Q5ld288x8LxNVoc2GXLE5snP8zF29FZVG5fds5INZHdaiR8_4yGbh3Nq5ZDfghw=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.pixatel.apps.notepad" aria-label=" Ultimate Notepad "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.pixatel.apps.notepad"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.pixatel.apps.notepad" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.pixatel.apps.notepad" title="Ultimate Notepad" aria-hidden="true" tabindex="-1"> Ultimate Notepad <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Pixatel" title="Pixatel">Pixatel</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.pixatel.apps.notepad"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaJAogEh4KGGNvbS5waXhhdGVsLmFwcHMubm90ZXBhZBABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> The best lightweight notepad app. Stay organized &amp; never forget anything again! <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.pixatel.apps.notepad" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.pixatel.apps.notepad"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.9 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 78.4175968170166%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.pixatel.apps.notepad"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaJAogEh4KGGNvbS5waXhhdGVsLmFwcHMubm90ZXBhZBABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="ru.andrey.notepad" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="ru.andrey.notepad" data-server-cookie="CAIaHQoZEhcKEXJ1LmFuZHJleS5ub3RlcGFkEAEYA0IA" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaHQoZEhcKEXJ1LmFuZHJleS5ub3RlcGFkEAEYA0IA" data-uitype="500" href="/store/apps/details?id=ru.andrey.notepad" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Notepad" class="cover-image" data-cover-large="//lh6.ggpht.com/f7RQdXEYFqrkBIsvCOph4lEyee49b7MJfBP8ysnZsj-S5YkXC4CqPgGWu7uoknjwGSQ=w340" data-cover-small="//lh6.ggpht.com/f7RQdXEYFqrkBIsvCOph4lEyee49b7MJfBP8ysnZsj-S5YkXC4CqPgGWu7uoknjwGSQ=w170" src="//lh6.ggpht.com/f7RQdXEYFqrkBIsvCOph4lEyee49b7MJfBP8ysnZsj-S5YkXC4CqPgGWu7uoknjwGSQ=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=ru.andrey.notepad" aria-label=" Notepad "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="ru.andrey.notepad"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=ru.andrey.notepad" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=ru.andrey.notepad" title="Notepad" aria-hidden="true" tabindex="-1"> Notepad <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=PowerAPP" title="PowerAPP">PowerAPP</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="ru.andrey.notepad"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaHQoZEhcKEXJ1LmFuZHJleS5ub3RlcGFkEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Notepad - to create notes, photos, shopping list <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=ru.andrey.notepad" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=ru.andrey.notepad"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.2 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 83.65508079528809%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="ru.andrey.notepad"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaHQoZEhcKEXJ1LmFuZHJleS5ub3RlcGFkEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.evernote.wear" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.evernote.wear" data-server-cookie="CAIaHQoZEhcKEWNvbS5ldmVybm90ZS53ZWFyEAEYA0IA" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaHQoZEhcKEWNvbS5ldmVybm90ZS53ZWFyEAEYA0IA" data-uitype="500" href="/store/apps/details?id=com.evernote.wear" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Evernote for Android Wear" class="cover-image" data-cover-large="//lh3.googleusercontent.com/xxhMZ39raiDnp_YJvo8BmdNRf7sc5wxRpf82y7PgocsHwM9D0hptCfS9Ik8UcS47tGc=w340" data-cover-small="//lh3.googleusercontent.com/xxhMZ39raiDnp_YJvo8BmdNRf7sc5wxRpf82y7PgocsHwM9D0hptCfS9Ik8UcS47tGc=w170" src="//lh3.googleusercontent.com/xxhMZ39raiDnp_YJvo8BmdNRf7sc5wxRpf82y7PgocsHwM9D0hptCfS9Ik8UcS47tGc=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.evernote.wear" aria-label=" Evernote for Android Wear "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.evernote.wear"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.wear" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.evernote.wear" title="Evernote for Android Wear" aria-hidden="true" tabindex="-1"> Evernote for Android Wear <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Evernote+Corporation" title="Evernote Corporation">Evernote Corporation</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.evernote.wear"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaHQoZEhcKEWNvbS5ldmVybm90ZS53ZWFyEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Use Evernote to make notes, remember everything and collaborate on any project. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.evernote.wear" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.evernote.wear"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.1 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 82.84570693969727%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.evernote.wear"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaHQoZEhcKEWNvbS5ldmVybm90ZS53ZWFyEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.anydo" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.anydo" data-server-cookie="CAIaFQoREg8KCWNvbS5hbnlkbxABGANCAA==" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaFQoREg8KCWNvbS5hbnlkbxABGANCAA==" data-uitype="500" href="/store/apps/details?id=com.anydo" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Any.do: To-Do List, Task List" class="cover-image" data-cover-large="//lh3.googleusercontent.com/RxeMcxUVJAvvWKkqWK4tkAwJKiLqLhzwu0O3SMQlR6g_NfqaGB12uWunfwLNBRpGn8o=w340" data-cover-small="//lh3.googleusercontent.com/RxeMcxUVJAvvWKkqWK4tkAwJKiLqLhzwu0O3SMQlR6g_NfqaGB12uWunfwLNBRpGn8o=w170" src="//lh3.googleusercontent.com/RxeMcxUVJAvvWKkqWK4tkAwJKiLqLhzwu0O3SMQlR6g_NfqaGB12uWunfwLNBRpGn8o=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.anydo" aria-label=" Any.do: To-Do List, Task List "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.anydo"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.anydo" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.anydo" title="Any.do: To-Do List, Task List" aria-hidden="true" tabindex="-1"> Any.do: To-Do List, Task List <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/dev?id=5304780265295461149" title="Any.do">Any.do</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.anydo"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaFQoREg8KCWNvbS5hbnlkbxABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> ★ The Award-Winning To-Do List &amp; Task List App That Helps You Get Things Done! ★ <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.anydo" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.anydo"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.5 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 89.23929214477539%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.anydo"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaFQoREg8KCWNvbS5hbnlkbxABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.cg.stickynote" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.cg.stickynote" data-server-cookie="CAIaHQoZEhcKEWNvbS5jZy5zdGlja3lub3RlEAEYA0IA" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaHQoZEhcKEWNvbS5jZy5zdGlja3lub3RlEAEYA0IA" data-uitype="500" href="/store/apps/details?id=com.cg.stickynote" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Sticky Note +" class="cover-image" data-cover-large="//lh3.googleusercontent.com/vBUTKVEzjRSckE2z3LrKcsI44vtO1TqIDhzs73BmWtI35Qx6A2MMCUsdsirp9Xs6F50=w340" data-cover-small="//lh3.googleusercontent.com/vBUTKVEzjRSckE2z3LrKcsI44vtO1TqIDhzs73BmWtI35Qx6A2MMCUsdsirp9Xs6F50=w170" src="//lh3.googleusercontent.com/vBUTKVEzjRSckE2z3LrKcsI44vtO1TqIDhzs73BmWtI35Qx6A2MMCUsdsirp9Xs6F50=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.cg.stickynote" aria-label=" Sticky Note + "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.cg.stickynote"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.cg.stickynote" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.cg.stickynote" title="Sticky Note +" aria-hidden="true" tabindex="-1"> Sticky Note + <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Axhunter" title="Axhunter">Axhunter</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.cg.stickynote"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaHQoZEhcKEWNvbS5jZy5zdGlja3lub3RlEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> quick &amp; simple note editing experience with write notes, memo, email, message <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.cg.stickynote" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.cg.stickynote"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.2 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 83.88633728027344%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.cg.stickynote"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaHQoZEhcKEWNvbS5jZy5zdGlja3lub3RlEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.naladex.memocool" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.naladex.memocool" data-server-cookie="CAIaIAocEhoKFGNvbS5uYWxhZGV4Lm1lbW9jb29sEAEYA0IA" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaIAocEhoKFGNvbS5uYWxhZGV4Lm1lbW9jb29sEAEYA0IA" data-uitype="500" href="/store/apps/details?id=com.naladex.memocool" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Notes - MemoCool Plus" class="cover-image" data-cover-large="//lh3.googleusercontent.com/jHL23h_Kr4k_vwMkzsa2-CLw9euiLv2QS8-0KE8GcmxuLPozLtEp_njQl4Ca4QtCy58=w340" data-cover-small="//lh3.googleusercontent.com/jHL23h_Kr4k_vwMkzsa2-CLw9euiLv2QS8-0KE8GcmxuLPozLtEp_njQl4Ca4QtCy58=w170" src="//lh3.googleusercontent.com/jHL23h_Kr4k_vwMkzsa2-CLw9euiLv2QS8-0KE8GcmxuLPozLtEp_njQl4Ca4QtCy58=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.naladex.memocool" aria-label=" Notes - MemoCool Plus "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.naladex.memocool"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.naladex.memocool" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.naladex.memocool" title="Notes - MemoCool Plus" aria-hidden="true" tabindex="-1"> Notes - MemoCool Plus <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/dev?id=5156110400634422914" title="NalaDex">NalaDex</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.naladex.memocool"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaIAocEhoKFGNvbS5uYWxhZGV4Lm1lbW9jb29sEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Note &amp; stick your ideas in a unique way with MemoCool, the funniest notepad app! <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.naladex.memocool" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.naladex.memocool"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.6 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 91.92770957946777%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.naladex.memocool"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaIAocEhoKFGNvbS5uYWxhZGV4Lm1lbW9jb29sEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="de.softxperience.android.noteeverything" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="de.softxperience.android.noteeverything" data-server-cookie="CAIaMwovEi0KJ2RlLnNvZnR4cGVyaWVuY2UuYW5kcm9pZC5ub3RlZXZlcnl0aGluZxABGANCAA==" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaMwovEi0KJ2RlLnNvZnR4cGVyaWVuY2UuYW5kcm9pZC5ub3RlZXZlcnl0aGluZxABGANCAA==" data-uitype="500" href="/store/apps/details?id=de.softxperience.android.noteeverything" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Note Everything" class="cover-image" data-cover-large="https://lh3.ggpht.com/XyQpXWMHI7tE8dL2MrabikZj3S7DDgG9RFuyXVk7jplKFgUK4dGGwNlmplodB_RIEibJ=w340" data-cover-small="https://lh3.ggpht.com/XyQpXWMHI7tE8dL2MrabikZj3S7DDgG9RFuyXVk7jplKFgUK4dGGwNlmplodB_RIEibJ=w170" src="https://lh3.ggpht.com/XyQpXWMHI7tE8dL2MrabikZj3S7DDgG9RFuyXVk7jplKFgUK4dGGwNlmplodB_RIEibJ=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=de.softxperience.android.noteeverything" aria-label=" Note Everything "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="de.softxperience.android.noteeverything"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=de.softxperience.android.noteeverything" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=de.softxperience.android.noteeverything" title="Note Everything" aria-hidden="true" tabindex="-1"> Note Everything <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=SoftXperience" title="SoftXperience">SoftXperience</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="de.softxperience.android.noteeverything"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaMwovEi0KJ2RlLnNvZnR4cGVyaWVuY2UuYW5kcm9pZC5ub3RlZXZlcnl0aGluZxABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> A notepad for taking different notes and types with many features. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=de.softxperience.android.noteeverything" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=de.softxperience.android.noteeverything"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 87.52970695495605%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="de.softxperience.android.noteeverything"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaMwovEi0KJ2RlLnNvZnR4cGVyaWVuY2UuYW5kcm9pZC5ub3RlZXZlcnl0aGluZxABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="org.mightyfrog.android.simplenotepad" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="org.mightyfrog.android.simplenotepad" data-server-cookie="CAIaMAosEioKJG9yZy5taWdodHlmcm9nLmFuZHJvaWQuc2ltcGxlbm90ZXBhZBABGANCAA==" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaMAosEioKJG9yZy5taWdodHlmcm9nLmFuZHJvaWQuc2ltcGxlbm90ZXBhZBABGANCAA==" data-uitype="500" href="/store/apps/details?id=org.mightyfrog.android.simplenotepad" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Simple Notepad" class="cover-image" data-cover-large="//lh4.ggpht.com/lZTOx95hmmRIfIj92jtWUkucihgDAJVW5pwU_TcfwaiwRiSIv3GyoJNI5oAIJB-Lc5g=w340" data-cover-small="//lh4.ggpht.com/lZTOx95hmmRIfIj92jtWUkucihgDAJVW5pwU_TcfwaiwRiSIv3GyoJNI5oAIJB-Lc5g=w170" src="//lh4.ggpht.com/lZTOx95hmmRIfIj92jtWUkucihgDAJVW5pwU_TcfwaiwRiSIv3GyoJNI5oAIJB-Lc5g=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=org.mightyfrog.android.simplenotepad" aria-label=" Simple Notepad "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="org.mightyfrog.android.simplenotepad"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=org.mightyfrog.android.simplenotepad" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=org.mightyfrog.android.simplenotepad" title="Simple Notepad" aria-hidden="true" tabindex="-1"> Simple Notepad <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=mightyfrog.org" title="mightyfrog.org">mightyfrog.org</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="org.mightyfrog.android.simplenotepad"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaMAosEioKJG9yZy5taWdodHlmcm9nLmFuZHJvaWQuc2ltcGxlbm90ZXBhZBABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> A notepad app for a quick and easy note taking. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=org.mightyfrog.android.simplenotepad" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=org.mightyfrog.android.simplenotepad"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.3 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 86.20767593383789%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="org.mightyfrog.android.simplenotepad"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaMAosEioKJG9yZy5taWdodHlmcm9nLmFuZHJvaWQuc2ltcGxlbm90ZXBhZBABGANCAA==" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.bigtexapps.notes" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.bigtexapps.notes" data-server-cookie="CAIaIAocEhoKFGNvbS5iaWd0ZXhhcHBzLm5vdGVzEAEYA0IA" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaIAocEhoKFGNvbS5iaWd0ZXhhcHBzLm5vdGVzEAEYA0IA" data-uitype="500" href="/store/apps/details?id=com.bigtexapps.notes" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="NOTES" class="cover-image" data-cover-large="//lh3.googleusercontent.com/eeDW1oDgHqAvkhUpuPCajgaLvJyBic8Qk9dklBDCzzc76eR8PhQ-_b0PHjGNBlANGw=w340" data-cover-small="//lh3.googleusercontent.com/eeDW1oDgHqAvkhUpuPCajgaLvJyBic8Qk9dklBDCzzc76eR8PhQ-_b0PHjGNBlANGw=w170" src="//lh3.googleusercontent.com/eeDW1oDgHqAvkhUpuPCajgaLvJyBic8Qk9dklBDCzzc76eR8PhQ-_b0PHjGNBlANGw=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.bigtexapps.notes" aria-label=" NOTES "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.bigtexapps.notes"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.bigtexapps.notes" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.bigtexapps.notes" title="NOTES" aria-hidden="true" tabindex="-1"> NOTES <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/dev?id=5425708067673121878" title="BIGTEXAPPS">BIGTEXAPPS</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.bigtexapps.notes"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaIAocEhoKFGNvbS5iaWd0ZXhhcHBzLm5vdGVzEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Notes is a lite weight app that allows you to capture and organize your Notes. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.bigtexapps.notes" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.bigtexapps.notes"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.2 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 83.1179428100586%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.bigtexapps.notes"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaIAocEhoKFGNvbS5iaWd0ZXhhcHBzLm5vdGVzEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.microsoft.office.word" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.microsoft.office.word" data-server-cookie="CAIaJQohEh8KGWNvbS5taWNyb3NvZnQub2ZmaWNlLndvcmQQARgDQgA=" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaJQohEh8KGWNvbS5taWNyb3NvZnQub2ZmaWNlLndvcmQQARgDQgA=" data-uitype="500" href="/store/apps/details?id=com.microsoft.office.word" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Microsoft Word" class="cover-image" data-cover-large="//lh3.ggpht.com/j6aNgkpGRXp9PEinADFoSkyfup46-6Rb83bS41lfQC_Tc2qg96zQ_aqZcyiaV3M-Ai4=w340" data-cover-small="//lh3.ggpht.com/j6aNgkpGRXp9PEinADFoSkyfup46-6Rb83bS41lfQC_Tc2qg96zQ_aqZcyiaV3M-Ai4=w170" src="//lh3.ggpht.com/j6aNgkpGRXp9PEinADFoSkyfup46-6Rb83bS41lfQC_Tc2qg96zQ_aqZcyiaV3M-Ai4=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.microsoft.office.word" aria-label=" Microsoft Word "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.microsoft.office.word"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.microsoft.office.word" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.microsoft.office.word" title="Microsoft Word" aria-hidden="true" tabindex="-1"> Microsoft Word <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/dev?id=6720847872553662727" title="Microsoft Corporation">Microsoft Corporation</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.microsoft.office.word"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaJQohEh8KGWNvbS5taWNyb3NvZnQub2ZmaWNlLndvcmQQARgDQgA=" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> The real Microsoft Word app for Android phones and tablets. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.microsoft.office.word" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.microsoft.office.word"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.4 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 88.31069946289062%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.microsoft.office.word"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaJQohEh8KGWNvbS5taWNyb3NvZnQub2ZmaWNlLndvcmQQARgDQgA=" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="nl.jacobras.notes" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="nl.jacobras.notes" data-server-cookie="CAIaHQoZEhcKEW5sLmphY29icmFzLm5vdGVzEAEYA0IA" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaHQoZEhcKEW5sLmphY29icmFzLm5vdGVzEAEYA0IA" data-uitype="500" href="/store/apps/details?id=nl.jacobras.notes" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Notes" class="cover-image" data-cover-large="//lh4.ggpht.com/oJ0NJs1vxi0g0ohTM23Po-wdOVIi_b04UL1WFvpslpduJq9fh_AL3wX7L34wD6HyNZ8=w340" data-cover-small="//lh4.ggpht.com/oJ0NJs1vxi0g0ohTM23Po-wdOVIi_b04UL1WFvpslpduJq9fh_AL3wX7L34wD6HyNZ8=w170" src="//lh4.ggpht.com/oJ0NJs1vxi0g0ohTM23Po-wdOVIi_b04UL1WFvpslpduJq9fh_AL3wX7L34wD6HyNZ8=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=nl.jacobras.notes" aria-label=" Notes "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="nl.jacobras.notes"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=nl.jacobras.notes" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=nl.jacobras.notes" title="Notes" aria-hidden="true" tabindex="-1"> Notes <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Jacob+Ras" title="Jacob Ras">Jacob Ras</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="nl.jacobras.notes"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaHQoZEhcKEW5sLmphY29icmFzLm5vdGVzEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> The easiest way to securely organize and save your thoughts. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=nl.jacobras.notes" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=nl.jacobras.notes"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.2 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 83.35991859436035%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="nl.jacobras.notes"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaHQoZEhcKEW5sLmphY29icmFzLm5vdGVzEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.apalon.notepad.free" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny" data-thin-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.apalon.notepad.free" data-server-cookie="CAIaIwofEh0KF2NvbS5hcGFsb24ubm90ZXBhZC5mcmVlEAEYA0IA" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaIwofEh0KF2NvbS5hcGFsb24ubm90ZXBhZC5mcmVlEAEYA0IA" data-uitype="500" href="/store/apps/details?id=com.apalon.notepad.free" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Notepad+ Free" class="cover-image" data-cover-large="//lh5.ggpht.com/1dpEro84jEWkzkxNsmsRIQVwROcheOV2qr32EhEvlxVuxj9HS3Apr2AUmNx3lXNvR8g=w340" data-cover-small="//lh5.ggpht.com/1dpEro84jEWkzkxNsmsRIQVwROcheOV2qr32EhEvlxVuxj9HS3Apr2AUmNx3lXNvR8g=w170" src="//lh5.ggpht.com/1dpEro84jEWkzkxNsmsRIQVwROcheOV2qr32EhEvlxVuxj9HS3Apr2AUmNx3lXNvR8g=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.apalon.notepad.free" aria-label=" Notepad+ Free "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.apalon.notepad.free"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.apalon.notepad.free" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.apalon.notepad.free" title="Notepad+ Free" aria-hidden="true" tabindex="-1"> Notepad+ Free <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/dev?id=7148047194848561719" title="Apalon Apps">Apalon Apps</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.apalon.notepad.free"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaIwofEh0KF2NvbS5hcGFsb24ubm90ZXBhZC5mcmVlEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Take notes on the go and draw in juicy colors! <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.apalon.notepad.free" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.apalon.notepad.free"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.3 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 86.44387245178223%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.apalon.notepad.free"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaIwofEh0KF2NvbS5hcGFsb24ubm90ZXBhZC5mcmVlEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> </div> </div> </div> </div> </div> <div class="more-from-developer"> <div class="details-wrapper"> <div class="id-cluster-container details-section recommendation"> <div class="details-section-contents"> <div class="rec-cluster" data-server-cookie="CAMiHAgCEAMaFBISCgxjb20uZXZlcm5vdGUQARgDKAE=" data-uitype="400"> <h1 class="heading"> <a class="title-link id-track-click" data-server-cookie="CAMiHAgCEAMaFBISCgxjb20uZXZlcm5vdGUQARgDKAE=" data-uitype="291" href="/store/apps/developer?id=Evernote+Corporation">More from developer</a> </h1> <div class="cards expandable id-card-list"> <div class="card no-rationale square-cover apps medium-long" data-docid="com.evernote.wear" data-original-classes="card no-rationale square-cover apps medium-long" data-short-classes="card no-rationale square-cover apps medium-long" data-thin-classes="card no-rationale square-cover apps medium-long"> <div class="card-content id-track-click id-track-impression" data-docid="com.evernote.wear" data-server-cookie="CAIaHQoZEhcKEWNvbS5ldmVybm90ZS53ZWFyEAEYA0IA" data-uitype="500"> <a class="card-click-target" data-server-cookie="CAIaHQoZEhcKEWNvbS5ldmVybm90ZS53ZWFyEAEYA0IA" data-uitype="500" href="/store/apps/details?id=com.evernote.wear" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img alt="Evernote for Android Wear" class="cover-image" data-cover-large="//lh3.googleusercontent.com/xxhMZ39raiDnp_YJvo8BmdNRf7sc5wxRpf82y7PgocsHwM9D0hptCfS9Ik8UcS47tGc=w340" data-cover-small="//lh3.googleusercontent.com/xxhMZ39raiDnp_YJvo8BmdNRf7sc5wxRpf82y7PgocsHwM9D0hptCfS9Ik8UcS47tGc=w170" src="//lh3.googleusercontent.com/xxhMZ39raiDnp_YJvo8BmdNRf7sc5wxRpf82y7PgocsHwM9D0hptCfS9Ik8UcS47tGc=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.evernote.wear" aria-label=" Evernote for Android Wear "> <span class="movies preordered-overlay-container id-preordered-overlay-container" style="display:none"> <span class="preordered-label"> Pre-ordered </span> </span> <span class="preview-overlay-container" data-docid="com.evernote.wear"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.wear" aria-hidden="true" tabindex="-1"> </a> <a class="title" href="/store/apps/details?id=com.evernote.wear" title="Evernote for Android Wear" aria-hidden="true" tabindex="-1"> Evernote for Android Wear <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Evernote+Corporation" title="Evernote Corporation">Evernote Corporation</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.evernote.wear"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaHQoZEhcKEWNvbS5ldmVybm90ZS53ZWFyEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Use Evernote to make notes, remember everything and collaborate on any project. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.evernote.wear" aria-hidden="true" tabindex="-1"> </a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.evernote.wear"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.1 stars out of five stars "> <div class="current-rating" jsname="jIIjq" style="width: 82.84570693969727%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container is_not_aquired_or_preordered" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.evernote.wear"> <div class="pon" style="display:none">1</div> <button class="price buy id-track-click id-track-impression" data-server-cookie="CAIaHQoZEhcKEWNvbS5ldmVybm90ZS53ZWFyEAEYA0IA" data-uitype="223"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div><div class="secondary-content"></div></div></div></div><div class="overlay-background" style="display:none"></div><div class="overlay-wrapper" style="display:none"><div class="overlay-content-wrapper"><div id="overlay-content"></div></div></div><div style="clear:both"></div><div jscontroller="n9NDF" id="footer-content" jsaction="FibEpb:dwbRB"> <button class="play-button" id="show-more-button" style="display:none"> Show More </button> <div class="bottom-loading" style="display:none"></div> <div class="footer"> <div class="footer-links-container"> <span class="copyright"> ©2016 Google</span> <a class="footer-link id-no-nav" href="https://play.google.com/intl/en-US_us/about/play-terms.html" target="_blank"> Site Terms of Service</a> <a class="footer-link id-no-nav" href="http://www.google.com/intl/en-US_us/policies/privacy/" target="_blank"> Privacy Policy</a> <a class="footer-link id-no-nav" href="http://developer.android.com/index.html" target="_blank"> Developers</a> <a class="footer-link id-no-nav" href="https://play.google.com/artists" target="_blank"> Artists</a> <a class="footer-link id-no-nav" href="https://support.google.com/googleplay/?p=about_play" target="_blank"> About Google</a> <div jsname="Gvbqzc" class="contains-text-link"> <span> By purchasing this item, you are transacting with Google Payments and agreeing to the Google Payments <a href="https://payments.google.com/termsOfService?hl=en_US" target="_blank"> Terms of Service </a> and <a href="https://payments.google.com/legaldocument?family=0.privacynotice&amp;hl=en_US" target="_blank"> Privacy Notice </a>. </span> </div> </div> </div> </div></div><div class="loading" jscontroller="EgJAl" jsaction="rcuQ6b:rcuQ6b" id="page-load-indicator"></div><div id="instrument-manager-parent"></div><div> <div jscontroller="zIhZNe" data-is-details-page="true" data-my-account-action-required="false" jsaction="rcuQ6b:npT2md"></div> <script>(function(){var fu=true;var pt='';var ab='';var lmt='';var curl='https://play.google.com/store/apps/details?id\x3dcom.evernote';var nbp='';var sc='CAESGAgFIhQSEgoMY29tLmV2ZXJub3RlEAEYAw\x3d\x3d';var pgj=false;var di='com.evernote';var du=2;window.updateClient = function(){if (fu){if (pt){upt(pt);}
92
- if (ab){uab(ab);}
93
- if (lmt){ihc(lmt);}
94
- if (nbp && typeof snbp != 'undefined'){snbp(nbp);}else {icfl();}
95
- if (curl){sglc(curl);}
96
- if (pgj){if (gapi && gapi.plus && gapi.plus.go){gapi.plus.go();}
97
- }
98
- upba(di,du);usc(sc);}
99
- };if (window.exportsReady){window.updateClient();}else {jQuery('body').one('onExportsReady',function(){window.updateClient();});}
100
- })();</script> </div></body></html>