market_bot 0.12.1 → 0.12.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bdae72a2e0a5ed4595bdf9a41992d87ea6bf890b
4
- data.tar.gz: f19f9401ceeff35ed5524c5d2cf035fe28bc7116
3
+ metadata.gz: 7c0978d867cda80935d133af1d135de4d2bceb2d
4
+ data.tar.gz: c09a48e8e8ef4e5f9f2f89f5c5c4b8fb009f9cd7
5
5
  SHA512:
6
- metadata.gz: 2988f42556864583d80d3dbe4fc68bd2143fbd8c2d049e37e9e75b3138305438e86b3380492e21ac3b12f8a6607d30a135062cc9702e23f907844ad3fd3e8527
7
- data.tar.gz: c93c3ae9934c8b7ce0c2792eb950c046af3db3d73b4a08f804720181cb9a2e5448ca563cf8b2f1fd68ea654563ade3ac867ca4886a2f3cbb137d7a3d748e8f10
6
+ metadata.gz: 98307f981f61fb0bc7785ac7dede92239bab0a03d98b40e30cf0f5051d16c0aa932895a2e391b2fce64a5b568a6b4e4358b9f712c2f6dbf380b3b10d881116b8
7
+ data.tar.gz: 3dd3426a1e0889632c6a565030ff267d2ee71bf0b88301c3f8d5f38a44337600e9f063245566e7484ed9d917cc92cf4a52307f0407b1c9f28cd58d0982e89fa6
data/README.markdown CHANGED
@@ -7,8 +7,7 @@ It is built on top of Nokogiri and Typhoeus.
7
7
  Used in production to power [www.droidmeter.com](http://www.droidmeter.com/?t=github).
8
8
 
9
9
  **This project is currently seeking developers to help maintain it.
10
- Please send pull requests or contact me if you are able to help out.
11
- The app, leaderboard, and app search features are known to work, but the developer scraper is currently broken.**
10
+ Please send pull requests or contact me if you are able to help out.**
12
11
 
13
12
  ## Dependencies
14
13
 
@@ -18,6 +17,29 @@ The app, leaderboard, and app search features are known to work, but the develop
18
17
  ## Installation
19
18
 
20
19
  gem install market_bot
20
+
21
+ ## Getting Started Example
22
+
23
+ require 'rubygems'
24
+ require 'market_bot'
25
+
26
+ # Download all the data for the Facebook app.
27
+ app = MarketBot::Android::App.new('com.facebook.katana')
28
+ app.update
29
+
30
+ # Here we will print out the title of the app.
31
+ puts app.title
32
+
33
+ # Here we will print out the rating of the app.
34
+ puts app.rating
35
+
36
+ # And the price...
37
+ puts app.price
38
+
39
+ # market_bot has many other attributes for each app.
40
+ # You can see what attributes are available in your version of
41
+ # market_bot by printing a simple constant included in the gem.
42
+ puts MarketBot::Android::App::MARKET_ATTRIBUTES.inspect
21
43
 
22
44
  ## Simple API Examples
23
45
 
@@ -7,7 +7,7 @@ module MarketBot
7
7
  :votes, :developer, :more_from_developer, :users_also_installed,
8
8
  :related, :banner_icon_url, :banner_image_url, :website_url, :email,
9
9
  :youtube_video_ids, :screenshot_urls, :whats_new, :permissions,
10
- :rating_distribution, :html, :category_url]
10
+ :rating_distribution, :html, :category_url, :full_screenshot_urls]
11
11
 
12
12
  attr_reader :app_id
13
13
  attr_reader *MARKET_ATTRIBUTES
@@ -36,13 +36,13 @@ module MarketBot
36
36
  result[:requires_android] = info.css('.content').text.strip
37
37
  when 'Content Rating'
38
38
  result[:content_rating] = info.css('.content').text.strip
39
- when 'Contact Developer'
39
+ when 'Contact Developer', 'Developer'
40
40
  info.css('.dev-link').each do |node|
41
- if node.text.strip.eql? 'Email Developer'
42
- result[:email] = node[:href].gsub(/^mailto:/,'')
41
+ node_href = node[:href]
42
+ if node_href =~ /^mailto:/
43
+ result[:email] = node_href.gsub(/^mailto:/,'')
43
44
  else
44
- redirect_url = node[:href]
45
- if q_param = URI(redirect_url).query.split('&').select{ |p| p =~ /q=/ }.first
45
+ if q_param = URI(node_href).query.split('&').select{ |p| p =~ /q=/ }.first
46
46
  actual_url = q_param.gsub('q=', '')
47
47
  end
48
48
 
@@ -112,6 +112,11 @@ module MarketBot
112
112
  result[:screenshot_urls] << node[:src]
113
113
  end
114
114
 
115
+ result[:full_screenshot_urls] = []
116
+ doc.css('.full-screenshot').each do |node|
117
+ result[:full_screenshot_urls] << node[:src]
118
+ end
119
+
115
120
  node = doc.css('.whatsnew').first
116
121
  result[:whats_new] = node.inner_html.strip unless node.nil?
117
122
 
@@ -1,3 +1,3 @@
1
1
  module MarketBot
2
- VERSION = '0.12.1'
2
+ VERSION = '0.12.2'
3
3
  end
@@ -10,7 +10,7 @@ test_src_data3 = read_file(File.dirname(__FILE__), 'data', 'app_3.txt')
10
10
  def check_getters(app)
11
11
  it 'should populate the getters' do
12
12
  app.title.should == 'Pop Dat'
13
- app.rating.should == '4.6'
13
+ app.rating.should == '4.7'
14
14
  app.updated.should == 'August 26, 2011'
15
15
  app.current_version.should == '1.0'
16
16
  app.requires_android.should == '2.2 and up'
@@ -21,22 +21,23 @@ def check_getters(app)
21
21
  app.price.should == '0'
22
22
  app.content_rating.should == 'Everyone'
23
23
  app.description.should =~ /^<div.*?>An action-packed blend of split-second skill and luck-based gameplay!/
24
- app.votes.should == '8'
24
+ app.votes.should == '9'
25
25
  app.more_from_developer.should == [{:app_id=>"com.bluefroggaming.ghost_chicken"}]
26
- app.users_also_installed.should == [{:app_id=>"stg.boomonline"}, {:app_id=>"vn.ibit.mazecity"}, {:app_id=>"net.simplexcode.bababoom"}]
27
- app.related.should == [{:app_id=>"stg.boomonline"}, {:app_id=>"vn.ibit.mazecity"}, {:app_id=>"net.simplexcode.bababoom"}]
26
+ app.users_also_installed.should == [{:app_id=>"com.mac.warzonepaid"}, {:app_id=>"com.caresilabs.wheeljoy.paid"}, {:app_id=>"com.blazingsoft.crosswolf"}, {:app_id=>"org.vladest.Popcorn"}, {:app_id=>"com.mtb.dds"}, {:app_id=>"com.hdl.datbom"}, {:app_id=>"cz.dejvice.rc.Marvin"}, {:app_id=>"com.spectaculator.spectaculator"}, {:app_id=>"com.seleuco.xpectrum"}, {:app_id=>"app.usp"}, {:app_id=>"com.fms.speccy"}, {:app_id=>"com.reynoldssoft.sampler"}, {:app_id=>"com.dylanpdx.blockybird"}]
27
+ app.related.should == [{:app_id=>"com.mac.warzonepaid"}, {:app_id=>"com.caresilabs.wheeljoy.paid"}, {:app_id=>"com.blazingsoft.crosswolf"}, {:app_id=>"org.vladest.Popcorn"}, {:app_id=>"com.mtb.dds"}, {:app_id=>"com.hdl.datbom"}, {:app_id=>"cz.dejvice.rc.Marvin"}, {:app_id=>"com.spectaculator.spectaculator"}, {:app_id=>"com.seleuco.xpectrum"}, {:app_id=>"app.usp"}, {:app_id=>"com.fms.speccy"}, {:app_id=>"com.reynoldssoft.sampler"}, {:app_id=>"com.dylanpdx.blockybird"}]
28
28
  app.banner_icon_url.should == 'https://lh3.ggpht.com/e6QqjMM9K__moeCm2C5HRb0SmGX0XqzhnhiE1MUx8MdNVdQbQW9rhFX_qmtbtBxHAa0=w300'
29
29
  app.banner_image_url.should == 'https://lh3.ggpht.com/e6QqjMM9K__moeCm2C5HRb0SmGX0XqzhnhiE1MUx8MdNVdQbQW9rhFX_qmtbtBxHAa0=w300'
30
30
  app.website_url.should == 'http://bluefroggaming.com'
31
31
  app.email.should == 'support@hdgames.zendesk.com'
32
32
  app.youtube_video_ids.should == []
33
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"]
34
35
  app.whats_new.should == nil
35
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."}]
36
37
  # Stubbing out for now, can't find them in the redesigned page.
37
38
  app.permissions.should == []
38
39
 
39
- app.rating_distribution.should == {5=>7, 4=>0, 3=>0, 2=>1, 1=>0}
40
+ app.rating_distribution.should == {5=>8, 4=>0, 3=>0, 2=>1, 1=>0}
40
41
  app.html.class.should == String
41
42
  end
42
43
  end
@@ -64,7 +65,7 @@ describe 'App' do
64
65
  result = App.parse(test_src_data)
65
66
 
66
67
  result[:title].should == 'Pop Dat'
67
- result[:rating].should == '4.6'
68
+ result[:rating].should == '4.7'
68
69
  result[:updated].should == 'August 26, 2011'
69
70
  result[:current_version].should == '1.0'
70
71
  result[:requires_android].should == '2.2 and up'
@@ -75,18 +76,19 @@ describe 'App' do
75
76
  result[:price].should == '0'
76
77
  result[:content_rating].should == 'Everyone'
77
78
  result[:description].should =~ /An action-packed blend of split-second/
78
- result[:votes].should == '8'
79
+ result[:votes].should == '9'
79
80
  result[:developer].should == 'Blue Frog Gaming'
80
81
  result[:banner_icon_url].should == 'https://lh3.ggpht.com/e6QqjMM9K__moeCm2C5HRb0SmGX0XqzhnhiE1MUx8MdNVdQbQW9rhFX_qmtbtBxHAa0=w300'
81
82
  result[:website_url].should == 'http://bluefroggaming.com'
82
83
  result[:email].should == 'support@hdgames.zendesk.com'
83
84
  result[:youtube_video_ids].should == []
84
85
  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"]
86
+ 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"]
85
87
  result[:whats_new].should == nil
86
88
  #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."}]
87
89
  # Stubbing out for now, can't find them in the redesigned page.
88
90
  result[:permissions].should == []
89
- result[:rating_distribution].should == {5=>7, 4=>0, 3=>0, 2=>1, 1=>0}
91
+ result[:rating_distribution].should == {5=>8, 4=>0, 3=>0, 2=>1, 1=>0}
90
92
  result[:html].should == test_src_data
91
93
 
92
94
  result
@@ -97,7 +99,7 @@ describe 'App' do
97
99
 
98
100
  result[:title].should == 'Evernote'
99
101
  result[:rating].should == '4.6'
100
- result[:updated].should == 'June 26, 2014'
102
+ result[:updated].should == 'November 26, 2014'
101
103
  result[:current_version].should == 'Varies with device'
102
104
  result[:requires_android].should == 'Varies with device'
103
105
  result[:category].should == 'Productivity'
@@ -106,20 +108,21 @@ describe 'App' do
106
108
  result[:price].should == '0'
107
109
  result[:content_rating].should == 'Low Maturity'
108
110
  result[:description].should =~ /New York Times/
109
- result[:votes].should == '987819'
111
+ result[:votes].should == '1134111'
110
112
  result[:developer].should == 'Evernote Corporation'
111
113
  result[:installs].should == '50,000,000 - 100,000,000'
112
- result[:banner_icon_url].should == 'https://lh3.ggpht.com/si0cgkp2rkVX5JhhBYrtZ4cy2I1hZcrx8aiz-v8MjvPykfhT7-YAM2B8MNi0OCF9AQ=w300'
113
- result[:banner_image_url].should == 'https://lh3.ggpht.com/si0cgkp2rkVX5JhhBYrtZ4cy2I1hZcrx8aiz-v8MjvPykfhT7-YAM2B8MNi0OCF9AQ=w300'
114
+ result[:banner_icon_url].should == 'https://lh5.ggpht.com/u_ZwBnOs3s7nHA2v4XDCrJknAAVVHQIzK4mVF8tbx1n62-_LrDSopwHviqeNuDIFigc=w300'
115
+ result[:banner_image_url].should == 'https://lh5.ggpht.com/u_ZwBnOs3s7nHA2v4XDCrJknAAVVHQIzK4mVF8tbx1n62-_LrDSopwHviqeNuDIFigc=w300'
114
116
  result[:website_url].should == 'http://evernote.com/privacy/'
115
- result[:email].should == nil
116
- result[:youtube_video_ids].should == ['Ag_IGEgAa9M']
117
- result[:screenshot_urls].should == ["https://lh3.ggpht.com/-uAQsDoqxCpENdxqX9PJ8uZMHVno-q_j7ys2t0u7ExRh9T5Lv839rIkGSrMNQ37SLX84=h310", "https://lh6.ggpht.com/nkot7aK-feeHWYMVFVesncWpwlc0u1qbs0XTrnpdp0agBSjIcngVBWjdYac02I48pA=h310", "https://lh5.ggpht.com/rodyOgoE6ckOEeWWqwMmkc8A_gQAdbPoUWxHsmjhRQh3pVDzaMOw4INtVqWCKetPq0o=h310", "https://lh4.ggpht.com/1taR7CXMM0NQxKFu_dkcfZoRKRm2TxpRubI2pUkT2rDuxcKp1QNAUgujIVQsAVtkL1w=h310", "https://lh3.ggpht.com/pSDOKGKQcC1GdEwcwkg8GR_s9vGkmsAis2cjgiioZRXh4DFjr0OWmwywEuQcwCo5mc8=h310", "https://lh4.ggpht.com/fCsV4Ngg32sUbr95rX2_eL-1OnW19cqsRdXmYhAJYYipS4oex2Ea8cwayUg_r1nJQy4=h310", "https://lh6.ggpht.com/kMxyXDioJ0g3Jpo8KnbUrts5XoIXHN_MKIRGzUzOgX8iW7ej_4r_L_0wWHGpFpx9jQ=h310", "https://lh4.ggpht.com/IG9xzoi6R6f0DlqKUHZWe3xTovKhzLZQWLpzU73s2D6nDRFrSrRtFKIOST5K8ksPgw=h310", "https://lh4.ggpht.com/RAVDjjjs_A0encFlwkAHiSn0afYnjmSgRx_p3WYPh9gvxJct3SoxiKE0F-sQNBnCaA=h310", "https://lh3.ggpht.com/zk3wB45O90a7qWe8LaXOpCJckFpS-Ukkih38Icq9SCry5pvmJfq0qpocuxZxXSYRJg=h310", "https://lh3.ggpht.com/xtSyEJsSKSMSjiVmtfZIQGxFI6T690aKJy4e6MhVGiFzOk44YCFcLkkhMDWjSqi3n_E=h310", "https://lh4.ggpht.com/2SMJhH9xCIpEvTlTevsMZI9xE2L_mWs79g1KyuGJ4kZ4VLP2NTu9UwKTndx6cRUkcz4=h310", "https://lh4.ggpht.com/a2dX7OdrMonXVW1jnBX1MAx6GlCW3DMwJSRPp787QQZYL_Nj0XmfTvWVr7OA0j4O3Q=h310", "https://lh5.ggpht.com/g9J-W-kAVR-FoSmuU3cPJYgiLLXJO3p9gbp-CL1upicwlyoyD3RPvGXhmExSNQIWIA=h310", "https://lh5.ggpht.com/EoPwnSqrjemPIv2TpBYY5GFFa6pQgVZZbiS7xFUbJgzND9WnvaNzRk9cE67NB08ERq8=h310"]
117
+ result[:email].should == 'appstore-evernote-android@evernote.com'
118
+ result[:youtube_video_ids].should == ['UnpUIVO8Lmo']
119
+ result[:screenshot_urls].should == ["https://lh5.ggpht.com/PVFHj_lDlc52wwNu0by2CLmUrSHaAx6NINjbe9qmk-NPo-S5UUA8oghVARMBHEWgXDU=h310", "https://lh5.ggpht.com/KvbOit3FFnfbOZ6rG23sDEVuC4ALtLGV0Q0zwu6vMKDCO4u69_zI-IhmD3jOGuJLEj4=h310", "https://lh5.ggpht.com/TEWuyLgIH6_514_1xpcqpcjFPSxu82Sak2RPuwbtexRqe-kJuW81DF5IRdS4Lis1KJQ=h310", "https://lh4.ggpht.com/KeGMsBnchmH9gywdjA1x7fqUpQX0UrMA_cMZbvr2hYHLiYTsCKOescqniEO4DItuHxU=h310", "https://lh5.ggpht.com/zWJ3VVV-sjT0mSADljAMyecO3QmcoFBtLBs8bETznU49X8avDRv3_iF5TkJkzVlu8qU=h310", "https://lh5.ggpht.com/3DqrNu-AHqGQQTDper8eTzpm9XEUNq605BxNSCkx4yGopa9u0TD2jBPHXdgwEPp08A=h310", "https://lh6.ggpht.com/9h0D2tvXlf6oLsylnNaaSdxjmm6rJuWeHvML-8zg5xoTp4akAjSXRCylxvF_dNTfoTU=h310", "https://lh5.ggpht.com/ugk2h_v0RrvAdzL7FfqD4jBONrfzboL6eAuFmkqvWg7zQiJUvkz6GThCU5pnKzCmRA=h310", "https://lh4.ggpht.com/3QUx47b-R9ex02vhUDH8h2hN3VDgS7e7rNAP7JCPaxaXr-GClb7jsZEsAyIr5iiwzw=h310", "https://lh5.ggpht.com/1LW-N8yEdwS1s-ZuvQSzqNMLaLldL8wBdLHhDY9TvPV8NnxBWIUjVaDZuat8I7V5uh4=h310", "https://lh4.ggpht.com/hIueHCJKvvAUrTrQQSSv6-2zpKMV-fdTIITHhMGfrulky5fEAR6KM1cpyUFD_9_kqw=h310", "https://lh4.ggpht.com/l-rQJVY9d2ZYZXWXnKfLUkTk6gGCE79Xopb__YlFeVZ974PBgfF4lK8olU67TvK3-g=h310", "https://lh4.ggpht.com/Q_2sTO9l0OIdDv801S2mlJI-vugeKROHHyPcWf7Hvavs5d-MU2v2RWS6sUOrF79gH1Hn=h310", "https://lh5.ggpht.com/1O17OJEpW3qZcyEyfljRcIHUIIAOiBlCc5SxHPghyv0evV4h2g-ZooBAL3xkog-kZYU=h310", "https://lh6.ggpht.com/nyn0trJ4OTdpb3SkH7ItJu8W4DdFNNW9P2AAr0OBA9q0H7y8KLxtc144tlSZXQIVKjE=h310", "https://lh6.ggpht.com/Yo4DN_K0v27ltrEEmJxI9XHn_BtGIgH6kLkxG3hG8Q0PeCJPpDv0FzDXLxbK2gkx0wY=h310"]
120
+ result[:full_screenshot_urls].should == ["https://lh5.ggpht.com/PVFHj_lDlc52wwNu0by2CLmUrSHaAx6NINjbe9qmk-NPo-S5UUA8oghVARMBHEWgXDU=h900", "https://lh5.ggpht.com/KvbOit3FFnfbOZ6rG23sDEVuC4ALtLGV0Q0zwu6vMKDCO4u69_zI-IhmD3jOGuJLEj4=h900", "https://lh5.ggpht.com/TEWuyLgIH6_514_1xpcqpcjFPSxu82Sak2RPuwbtexRqe-kJuW81DF5IRdS4Lis1KJQ=h900", "https://lh4.ggpht.com/KeGMsBnchmH9gywdjA1x7fqUpQX0UrMA_cMZbvr2hYHLiYTsCKOescqniEO4DItuHxU=h900", "https://lh5.ggpht.com/zWJ3VVV-sjT0mSADljAMyecO3QmcoFBtLBs8bETznU49X8avDRv3_iF5TkJkzVlu8qU=h900", "https://lh5.ggpht.com/3DqrNu-AHqGQQTDper8eTzpm9XEUNq605BxNSCkx4yGopa9u0TD2jBPHXdgwEPp08A=h900", "https://lh6.ggpht.com/9h0D2tvXlf6oLsylnNaaSdxjmm6rJuWeHvML-8zg5xoTp4akAjSXRCylxvF_dNTfoTU=h900", "https://lh5.ggpht.com/ugk2h_v0RrvAdzL7FfqD4jBONrfzboL6eAuFmkqvWg7zQiJUvkz6GThCU5pnKzCmRA=h900", "https://lh4.ggpht.com/3QUx47b-R9ex02vhUDH8h2hN3VDgS7e7rNAP7JCPaxaXr-GClb7jsZEsAyIr5iiwzw=h900", "https://lh5.ggpht.com/1LW-N8yEdwS1s-ZuvQSzqNMLaLldL8wBdLHhDY9TvPV8NnxBWIUjVaDZuat8I7V5uh4=h900", "https://lh4.ggpht.com/hIueHCJKvvAUrTrQQSSv6-2zpKMV-fdTIITHhMGfrulky5fEAR6KM1cpyUFD_9_kqw=h900", "https://lh4.ggpht.com/l-rQJVY9d2ZYZXWXnKfLUkTk6gGCE79Xopb__YlFeVZ974PBgfF4lK8olU67TvK3-g=h900", "https://lh4.ggpht.com/Q_2sTO9l0OIdDv801S2mlJI-vugeKROHHyPcWf7Hvavs5d-MU2v2RWS6sUOrF79gH1Hn=h900", "https://lh5.ggpht.com/1O17OJEpW3qZcyEyfljRcIHUIIAOiBlCc5SxHPghyv0evV4h2g-ZooBAL3xkog-kZYU=h900", "https://lh6.ggpht.com/nyn0trJ4OTdpb3SkH7ItJu8W4DdFNNW9P2AAr0OBA9q0H7y8KLxtc144tlSZXQIVKjE=h900", "https://lh6.ggpht.com/Yo4DN_K0v27ltrEEmJxI9XHn_BtGIgH6kLkxG3hG8Q0PeCJPpDv0FzDXLxbK2gkx0wY=h900"]
118
121
  result[:whats_new].should =~ /What's New/
119
122
  #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"}]
120
123
  # Stubbing out for now, can't find them in the redesigned page.
121
124
  result[:permissions].should == []
122
- result[:rating_distribution].should == {5=>731924, 4=>199038, 3=>31885, 2=>9166, 1=>15590}
125
+ result[:rating_distribution].should == {5=>833055, 4=>229395, 3=>39241, 2=>12003, 1=>20202}
123
126
  result[:html].should == test_src_data2
124
127
  end
125
128
 
@@ -127,28 +130,28 @@ describe 'App' do
127
130
  result = App.parse(test_src_data3)
128
131
 
129
132
  result[:title].should == 'WeatherPro'
130
- result[:updated].should == 'May 13, 2014'
131
- result[:current_version].should == '3.4.2'
132
- result[:requires_android].should == '2.1 and up'
133
+ result[:updated].should == 'October 1, 2014'
134
+ result[:current_version].should == '3.5.2'
135
+ result[:requires_android].should == '2.3 and up'
133
136
  result[:category].should == 'Weather'
134
137
  result[:category_url].should == 'WEATHER'
135
- result[:size].should == '8.7M'
136
- result[:price].should == '$0.99'
138
+ result[:size].should == '9.1M'
139
+ result[:price].should == '$2.99'
137
140
  result[:content_rating].should == 'Low Maturity'
138
- result[:description].should =~ /^.*Plan your summer with WeatherPro! With the holidays just starting/
141
+ result[:description].should =~ /^.*WeatherPro answers the question - what's the best Android Weather app/
139
142
  result[:developer].should == 'MeteoGroup'
140
143
  result[:rating].should == "4.4"
141
- result[:votes].should == "28469"
144
+ result[:votes].should == "32543"
142
145
  result[:banner_icon_url].should == 'https://lh5.ggpht.com/gEwuqrqo9Hu2qRNfBi8bLs0XByBQEmhvBhyNXJLuPmrT47GNfljir8ddam-Plzhovrg=w300'
143
146
  result[:banner_image_url].should == 'https://lh5.ggpht.com/gEwuqrqo9Hu2qRNfBi8bLs0XByBQEmhvBhyNXJLuPmrT47GNfljir8ddam-Plzhovrg=w300'
144
- result[:website_url].should == 'http://www.weatherpro.eu/privacy-policy.html'
147
+ result[:website_url].should == 'http://www.meteogroup.com/en/gb/about-meteogroup/privacy-policy-and-cookies.html'
145
148
  result[:email].should == 'support@android.weatherpro.de'
146
149
  result[:youtube_video_ids].should == []
147
- result[:whats_new].should =~ /Some minor improvements have been made to keep the app up-to-date/
150
+ result[:whats_new].should =~ /Access to WeatherPro app via car infotainment screen/
148
151
  #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
152
  # Stubbing out for now, can't find them in the redesigned page.
150
153
  result[:permissions].should == []
151
- result[:rating_distribution].should == {5=>17860, 4=>7270, 3=>1476, 2=>635, 1=>1217}
154
+ result[:rating_distribution].should == {5=>20184, 4=>8344, 3=>1749, 2=>801, 1=>1454}
152
155
  result[:html].should == test_src_data3
153
156
  end
154
157
 
@@ -161,7 +164,7 @@ describe 'App' do
161
164
 
162
165
  result[:related].first[:app_id].should == 'com.socialnmobile.dictapps.notepad.color.note'
163
166
  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.skitch'
167
+ result[:more_from_developer].first[:app_id].should == 'com.evernote.widget'
165
168
  end
166
169
  end
167
170
 
@@ -3,95 +3,97 @@
3
3
  font-family: 'Roboto';
4
4
  font-style: normal;
5
5
  font-weight: 100;
6
- src: local('Roboto Thin'), local('Roboto-Thin'), url(//ssl.gstatic.com/fonts/roboto/v11/Jzo62I39jc0gQRrbndN6nfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
6
+ src: local('Roboto Thin'), local('Roboto-Thin'), url(//fonts.gstatic.com/s/roboto/v14/Jzo62I39jc0gQRrbndN6nfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
7
7
  }
8
8
  @font-face {
9
9
  font-family: 'Roboto';
10
10
  font-style: normal;
11
11
  font-weight: 300;
12
- src: local('Roboto Light'), local('Roboto-Light'), url(//ssl.gstatic.com/fonts/roboto/v11/Hgo13k-tfSpn0qi1SFdUfaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
12
+ src: local('Roboto Light'), local('Roboto-Light'), url(//fonts.gstatic.com/s/roboto/v14/Hgo13k-tfSpn0qi1SFdUfaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
13
13
  }
14
14
  @font-face {
15
15
  font-family: 'Roboto';
16
16
  font-style: normal;
17
17
  font-weight: 400;
18
- src: local('Roboto Regular'), local('Roboto-Regular'), url(//ssl.gstatic.com/fonts/roboto/v11/zN7GBFwfMP4uA6AR0HCoLQ.ttf) format('truetype');
18
+ src: local('Roboto Regular'), local('Roboto-Regular'), url(//fonts.gstatic.com/s/roboto/v14/zN7GBFwfMP4uA6AR0HCoLQ.ttf) format('truetype');
19
19
  }
20
20
  @font-face {
21
21
  font-family: 'Roboto';
22
22
  font-style: normal;
23
23
  font-weight: 500;
24
- src: local('Roboto Medium'), local('Roboto-Medium'), url(//ssl.gstatic.com/fonts/roboto/v11/RxZJdnzeo3R5zSexge8UUaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
24
+ src: local('Roboto Medium'), local('Roboto-Medium'), url(//fonts.gstatic.com/s/roboto/v14/RxZJdnzeo3R5zSexge8UUaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
25
25
  }
26
26
  @font-face {
27
27
  font-family: 'Roboto';
28
28
  font-style: normal;
29
29
  font-weight: 700;
30
- src: local('Roboto Bold'), local('Roboto-Bold'), url(//ssl.gstatic.com/fonts/roboto/v11/d-6IYplOFocCacKzxwXSOKCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
30
+ src: local('Roboto Bold'), local('Roboto-Bold'), url(//fonts.gstatic.com/s/roboto/v14/d-6IYplOFocCacKzxwXSOKCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
31
31
  }
32
32
  @font-face {
33
33
  font-family: 'Roboto';
34
34
  font-style: italic;
35
35
  font-weight: 100;
36
- src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(//ssl.gstatic.com/fonts/roboto/v11/12mE4jfMSBTmg-81EiS-YS3USBnSvpkopQaUR-2r7iU.ttf) format('truetype');
36
+ src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(//fonts.gstatic.com/s/roboto/v14/12mE4jfMSBTmg-81EiS-YS3USBnSvpkopQaUR-2r7iU.ttf) format('truetype');
37
37
  }
38
38
  @font-face {
39
39
  font-family: 'Roboto';
40
40
  font-style: italic;
41
41
  font-weight: 300;
42
- src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url(//ssl.gstatic.com/fonts/roboto/v11/7m8l7TlFO-S3VkhHuR0at50EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
42
+ src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url(//fonts.gstatic.com/s/roboto/v14/7m8l7TlFO-S3VkhHuR0at50EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
43
43
  }
44
44
  @font-face {
45
45
  font-family: 'Roboto';
46
46
  font-style: italic;
47
47
  font-weight: 400;
48
- src: local('Roboto Italic'), local('Roboto-Italic'), url(//ssl.gstatic.com/fonts/roboto/v11/W4wDsBUluyw0tK3tykhXEfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
48
+ src: local('Roboto Italic'), local('Roboto-Italic'), url(//fonts.gstatic.com/s/roboto/v14/W4wDsBUluyw0tK3tykhXEfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
49
49
  }
50
50
  @font-face {
51
51
  font-family: 'Roboto Slab';
52
52
  font-style: normal;
53
53
  font-weight: 100;
54
- src: local('Roboto Slab Thin'), local('RobotoSlab-Thin'), url(//ssl.gstatic.com/fonts/robotoslab/v3/MEz38VLIFL-t46JUtkIEgH4UHu-c0cTZKOwO_f6u1Os.ttf) format('truetype');
54
+ src: local('Roboto Slab Thin'), local('RobotoSlab-Thin'), url(//fonts.gstatic.com/s/robotoslab/v6/MEz38VLIFL-t46JUtkIEgH4UHu-c0cTZKOwO_f6u1Os.ttf) format('truetype');
55
55
  }
56
56
  @font-face {
57
57
  font-family: 'Roboto Slab';
58
58
  font-style: normal;
59
59
  font-weight: 300;
60
- src: local('Roboto Slab Light'), local('RobotoSlab-Light'), url(//ssl.gstatic.com/fonts/robotoslab/v3/dazS1PrQQuCxC3iOAJFEJbfB31yxOzP-czbf6AAKCVo.ttf) format('truetype');
60
+ src: local('Roboto Slab Light'), local('RobotoSlab-Light'), url(//fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJbfB31yxOzP-czbf6AAKCVo.ttf) format('truetype');
61
61
  }
62
62
  @font-face {
63
63
  font-family: 'Roboto Slab';
64
64
  font-style: normal;
65
65
  font-weight: 400;
66
- src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(//ssl.gstatic.com/fonts/robotoslab/v3/y7lebkjgREBJK96VQi37Zp0EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
66
+ src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(//fonts.gstatic.com/s/robotoslab/v6/y7lebkjgREBJK96VQi37Zp0EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
67
67
  }
68
68
  @font-face {
69
69
  font-family: 'Roboto Slab';
70
70
  font-style: normal;
71
71
  font-weight: 700;
72
- src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(//ssl.gstatic.com/fonts/robotoslab/v3/dazS1PrQQuCxC3iOAJFEJZ_TkvowlIOtbR7ePgFOpF4.ttf) format('truetype');
72
+ src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(//fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJZ_TkvowlIOtbR7ePgFOpF4.ttf) format('truetype');
73
73
  }
74
- </style><link rel="stylesheet" href="https://www.gstatic.com/play/store/web/css/1944380881-lowlife_css_ltr.css">
75
- <link href="//ssl.gstatic.com/android/market_images/web/favicon.ico" rel="shortcut icon"><script type="text/javascript"></script><title id="main-title">Pop Dat - Android Apps on Google Play</title><meta content="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..." name="Description"><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=in" hreflang="in" 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=tl" hreflang="tl" 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=fr_BE" hreflang="fr_BE" 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_FR" hreflang="fr_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=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=nl_BE" hreflang="nl_BE" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=nl_NL" hreflang="nl_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=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"></head><body class="no-focus-outline" data-page-server-cookie=""><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="http://www.google.com/intl/en/options/"><u>More</u> &raquo;</a></nobr></div><div style="position:fixed;top:-100000px;left:-100000px;opacity:0" id="offscreen-renderer"></div><div class="wrapper-with-footer" id="wrapper"><div style="display:block;visibility:hidden" class="nav-container"> <span class="show-all-hover-zone"> <span class="hover-arrow"></span> </span> <ul class="nav" role="navigation"> <li class="nav-list-item apps" data-backend="3" 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/collection/editors_choice"> Editors' Choice </a> </li> </ul> </li> <li class="nav-list-item movies-tv" data-backend="4" 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/MOVIE"> Movies </a> </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/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 music" data-backend="2" 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 books" data-backend="1" 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_1673"> Textbooks </a> </li> </ul> </li> <li class="nav-list-item magazines" data-backend="6" 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"> 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 devices" data-backend="5" 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 store" data-backend="0" 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"> Store </span> </span> </a> </li> <li class="store"> <ul class="sub-nav id-sub-nav-store"> <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" data-uitype="125"> <a class="sub-nav-link id-no-menu-change id-no-nav" href="https://play.google.com/intl/en-US_us/about/giftcards"> Buy gift card </a> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen"> <button class="sub-nav-link id-no-menu-change topup-link"> Buy Google Play credit </button> </li> </ul> </li><li> </li> </ul> </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 type="text/javascript" src="https://www.gstatic.com/play/store/web/js/3827809583-jquery_js_compiled_jquery_js.js"></script>
76
- <script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/4182022020-initial_page_js_compiled_initial_page_js.js"></script>
77
- <script>initializeApp();</script><div class="action-bar-container" role="navigation" jsl="$t t-NjQXl_7dol8;$x 0;" style="display:none"> <div class="action-bar-inner"> <div jsl="$x 1;"> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> </div> </div> </div><div class="id-body-content-beginning" aria-labelledby="main-title" tabindex="-1"></div><div 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"><meta content="https://www.gstatic.com/android/market_images/plus/play_stream_logo.png" itemprop="logoImageUrl"><meta content="https://play.google.com" itemprop="logoHrefUrl"><div class="details-wrapper apps square-cover id-track-partial-impression" data-docid="com.bluefroggaming.popdat" data-server-cookie="CAIaIwohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgD" 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>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> <div> <a class="document-subtitle category" href="/store/apps/category/GAME_ARCADE"> <span itemprop="genre">Arcade</span> </a> </div> <div class="details-actions"> <span class="buy-button-container apps medium play-button" data-docid="com.bluefroggaming.popdat"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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="" itemprop="previewUrl"> <meta content="" itemprop="offerType"> <meta content="0" itemprop="price"> <meta content="" itemprop="description"> <span itemprop="seller" itemscope="itemscope" itemtype="http://schema.org/Organization"> <meta content="Android" itemprop="name"> </span> </span> </span> <span>Install</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.bluefroggaming.popdat"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> <div class="id-wishlist-display wishlist-display"> <div class="wishlist-container" data-enable-wishlist-icon-center="true" data-server-cookie="CAIaIwohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgD" data-uitype="203"> <button class="play-button wishlist-content wishlist-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="CAIaIwohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgD" data-uitype="204"> Add to Wishlist </div> <div class="wishlist-text-default wishlist-text-adding"> Adding... </div> <div class="wishlist-text-default wishlist-text-added id-track-impression"> Added to Wishlist </div> <div class="wishlist-text-default wishlist-text-remove id-track-click" data-server-cookie="CAIaIwohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgD" data-uitype="205"> Remove </div> <div class="wishlist-text-default wishlist-text-removing"> Removing... </div> </div> </button> </div> </div> </div> <div class="app-compatibility"> <div class="app-compatibility-initial" style="display:none"> <div class="compatibility-loading compatibility-image"></div> <span> Loading device compatibility... </span> </div> <div class="app-compatibility-final" style="display:none"> <div class="id-app-compatibility-icon compatibility-image"></div> </div> <div class="app-compatibility-device-list" style="display:none"></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" style="width: 92.5%"></div> </div> </div> <div class="stars-count"> (<span class="reviewers-small"></span>8) </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 (gapi && gapi.plusone){gapi.plusone.go("body-content");}
78
- </script> </div> </div> <script>(function(){var docid='com.bluefroggaming.popdat';if (typeof fci !== 'undefined'){fci(docid);}else {jQuery(document).ready(function(){fci(docid);});}
79
- })();</script> </div> </div> <div class="details-section screenshots" aria-hidden="true"> <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" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-0" src="https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-1" src="https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-2" src="https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-3" src="https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-4" src="https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-5" src="https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h310" itemprop="screenshot"> </div> </div> <div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-0" data-expand-to="full-screenshot-1" src="https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-1" data-expand-to="full-screenshot-2" src="https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-2" data-expand-to="full-screenshot-3" src="https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-3" data-expand-to="full-screenshot-4" src="https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-4" data-expand-to="full-screenshot-5" src="https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-5" data-expand-to="thumbnails" src="https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h900"> </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" data-show-use-buffer="true"> <div class="heading"> Description </div> <div class="show-more-content text-body" itemprop="description"> <div class="id-app-orig-desc">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!</div> <div class="show-more-end"></div> </div> <div> <button class="play-button show-more small"> Read more </button> <button class="play-button expand-close"> <div class="close-image"> </div> </button> </div> </div> <div class="details-section-divider"></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="review-help unallowed-app-review-container" data-unallowed-docid="com.bluefroggaming.popdat"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> <span class="unallowed-app-review id-unowned-app"> You must install this app before submitting a review. </span> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="review-help id-gplus-signup"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> Google Play reviews now use Google+ so it's easier to see opinions from people you care about. New reviews will be publicly linked to your Google+ profile. Your name on previous reviews now appears as "A Google User". </div> <div class="review-row"> <div class="review-action-button-container"> <a class="play-button id-no-nav apps" href="https://plus.google.com/up/accounts/upgrade?gpsrc=gpwr0&amp;continue=https://play.google.com/store/apps/details?id%3Dcom.bluefroggaming.popdat"> Sign up for Google+ </a> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="review-help id-gpr-onboard"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> Google Play reviews now use Google+ so it's easier to see opinions from people you care about. New reviews will be publicly linked to your Google+ profile. Your name on previous reviews now appears as "A Google User". </div> <div class="review-row"> <div class="review-action-button-container"> <button class="play-button id-enable-gpr apps"> Continue </button> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="write-review-panel"> <div> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> <div class="review-row-header"> Write a review </div> </div> <div class="review-row"> <div class="write-review-title-container"> <input class="review-input-text-box write-review-title" maxlength="75" type="text"> </div> </div> <div class="review-row"> <div class="write-review-comment-container"> <textarea class="review-input-text-box write-review-comment" maxlength="1200"></textarea> </div> </div> <div class="review-row"> <div class="review-stars-container"> <div class="neutral write-star-rating-container"> <div class="small-star"> <div class="star-rating-editable-container"> <span class="star-common first-star"></span> <span class="star-common second-star"></span> <span class="star-common third-star"></span> <span class="star-common fourth-star"></span> <span class="star-common fifth-star"></span> </div> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> <div class="star-rating-aria"> <button class="first-star" aria-label=" Rate one star out of five stars "></button> <button class="second-star" aria-label=" Rate two stars out of five stars "></button> <button class="third-star" aria-label=" Rate three stars out of five stars "></button> <button class="fourth-star" aria-label=" Rate four stars out of five stars "></button> <button class="fifth-star" aria-label=" Rate five stars out of five stars "></button> </div> </div> </div> <span class="alert-message-container"> <div class="alert-image-container"></div> <div class="alert-review-text-container"></div> </span> </div> <div class="review-action-button-container"> <button class="id-submit-review play-button apps disabled"> Submit Review </button> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> </div> <div style="display:none" class="my-review-panel" data-reviewid=""> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-image-row"> <div> <span> </span> </div> </div> <div class="review-row"> <div class="review-row-header"> My review </div> </div> <div class="review-row"> <span class="review-title"></span> </div> <div class="review-row"> <div class="review-stars-container"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> <div class="review-action-button-container"> <button class="play-button icon-button small review-action-button-gap"> <div class="review-trash-button-icon"></div> </button> </div> </div> <div class="review-row"> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="id-selected-review-panel" data-reviewid=""> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-image-row"> <div> <span> </span> </div> </div> <div class="review-row"> <div class="review-row-header"> <span> Review from <span style="display:none"> </span> </span> </div> </div> <div class="review-row"> <span class="review-title"></span> </div> <div class="review-row"> <div class="review-stars-container"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> </div> <div class="review-row"> </div> </div> <div class="write-review-triangle-container"></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="dropdown-menu-container review-filter id-review-sort-filter"> <div class="dropdown-menu"> <span class="displayed-child">Helpfulness</span> <div class="dropdown-icon"></div> </div> <div class="dropdown-menu-children"> <div class="dropdown-child" data-dropdown-value="0">Newest</div><div class="dropdown-child" data-dropdown-value="1">Rating</div><div class="dropdown-child selected" data-dropdown-value="2">Helpfulness</div> </div> </div><div class="dropdown-menu-container review-filter id-review-version-filter"> <div class="dropdown-menu"> <span class="displayed-child">All Versions</span> <div class="dropdown-icon"></div> </div> <div class="dropdown-menu-children"> <div class="dropdown-child selected" data-dropdown-value="">All Versions</div><div class="dropdown-child" data-dropdown-value="2">Latest Version</div> </div> </div> </div> <button class="id-write-button play-button"> <span class="write-review-button-icon"></span> <span> Write a 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.625" itemprop="ratingValue"> <meta content="8" itemprop="ratingCount"> <div class="score">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" style="width: 92.5%"></div> </div> </div> <div class="reviews-stats"> <span class="reviewers-small"></span> <span class="reviews-num">8</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">7</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">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">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:14%"></span> <span class="bar-number">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">0</span> </div> </div> </div> <div class="featured-review" data-expand-to="user-0" data-reviewid="lg:AOqpTOFLotRWWL8F50O4eRjgG4qLIdxscdhqfgUYPIXPFSKdYST3akGCq1AbpwN5AIC2cL0A_IusaIg0iNeX9Q"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-1" data-reviewid="lg:AOqpTOEP10sdyLzTvD5K-uaeuxd5p5Nvxty2sZH1l0n4XiI53kT8PKlxbRA-W_9ApKTCF7SeuVdI45AmOf6Ccg"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-2" data-reviewid="lg:AOqpTOH5CGpJIWhh85M3LbdvavtQqvFV6Zku_0g6C03cLvtlNLc_cN-rM6z9Tb4CpdujAwMgj3AZt4yG5JdxKw"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" style="width: 100%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title"></span> Nostalgic </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-3" data-reviewid="lg:AOqpTOHRVyUFOWdcf3fdXadmV5O7BhgOmA5XpAmvafelzLR6l-AmdeDkf7dKgnBr76glGq3zCtsNHWJ89zYANA"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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> <div class="paragraph-end details-light"></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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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"> <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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"> <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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"> <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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"> <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> <script>if (typeof ircs == 'undefined'){jQuery(document).ready(function(){ircs();});}else {ircs();}
80
- </script> </div> <div class="details-wrapper"> <div class="details-section metadata"> <div class="details-section-heading"> <div class="heading"> Additional information </div> </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"> <div class="title">Content Rating</div> <div class="content" itemprop="contentRating"> Everyone </div> </div> <div class="meta-info"> <div class="title"> Contact 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 Developer's Website </a> <a class="dev-link" href="mailto:support@hdgames.zendesk.com" rel="nofollow" target="_blank"> Email Developer </a> </div> </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> <div class="details-section-divider"></div> </div> </div><div class="details-wrapper"> <div class="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"> <div class="card no-rationale square-cover apps small" data-docid="stg.boomonline" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="stg.boomonline" data-server-cookie="CAIaGAoWEhQKDnN0Zy5ib29tb25saW5lEAEYAw==" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=stg.boomonline" 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 class="cover-image" alt="Boom Online" data-cover-large="https://lh3.ggpht.com/md0NTVueEITYDxcDSVHXpCgInXdD_EDSGW2IZeqHwdbbQMz6Y2vX9STuV921yfcNMZk=w340" data-cover-small="https://lh3.ggpht.com/md0NTVueEITYDxcDSVHXpCgInXdD_EDSGW2IZeqHwdbbQMz6Y2vX9STuV921yfcNMZk=w170" src="https://lh3.ggpht.com/md0NTVueEITYDxcDSVHXpCgInXdD_EDSGW2IZeqHwdbbQMz6Y2vX9STuV921yfcNMZk=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=stg.boomonline" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="stg.boomonline"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=stg.boomonline" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=stg.boomonline" title="Boom Online"> Boom Online <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=ST+GAME+MOBILE" title="ST GAME MOBILE">ST GAME MOBILE</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="stg.boomonline"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="stg.boomonline"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Game boom online .<br>+ Fun game for everyone.<br>+ Many mode can play in this game, classic, boss hunt, rpg.<br>+ RPG: this game can also let you catch and raise you own pet.<br>+ Shop which beautiful items.<br>+ Leaderboard .<p>More info: http://boom.stgame.vn/</p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=stg.boomonline" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=stg.boomonline" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.8 stars out of five stars "> <div class="current-rating" style="width: 76.76408290863037%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="stg.boomonline"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="stg.boomonline"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="vn.ibit.mazecity" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="vn.ibit.mazecity" data-server-cookie="CAIaGgoYEhYKEHZuLmliaXQubWF6ZWNpdHkQARgD" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=vn.ibit.mazecity" 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 class="cover-image" alt="Maze City: Bomber Adventure" data-cover-large="https://lh5.ggpht.com/cB9rbKcOAVf_Z5iv7OjkRXp86fAqzievlU7UvXYg5Spf2gXYbKAzPsmREY-kOfYtMyY=w340" data-cover-small="https://lh5.ggpht.com/cB9rbKcOAVf_Z5iv7OjkRXp86fAqzievlU7UvXYg5Spf2gXYbKAzPsmREY-kOfYtMyY=w170" src="https://lh5.ggpht.com/cB9rbKcOAVf_Z5iv7OjkRXp86fAqzievlU7UvXYg5Spf2gXYbKAzPsmREY-kOfYtMyY=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=vn.ibit.mazecity" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="vn.ibit.mazecity"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=vn.ibit.mazecity" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=vn.ibit.mazecity" title="Maze City: Bomber Adventure"> Maze City: Bomber Adventure <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=iBit+Studio" title="iBit Studio">iBit Studio</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="vn.ibit.mazecity"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="vn.ibit.mazecity"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Limited Offer - Free for a limited time!!<p>Maze City: Bomber Adventure is a unify of the classical game play and high definition graphics. <br>The game features hundreds of dungeons in Maze City, with extremely smart and deadly monsters, traps, moving obstacles, treasure boxes and more. <br>Player controls the bomber hero fighting ferocious monsters to complete his goal (looking for the keys to the final gate, saving the princess or just manage to get out of from a deadly pyramid) <br>His only weapons is a small pack of bomb - boom (dynamite). Use it wisely or he will end up in monster&#39;s stomach!<br>Victory is not for the faint of heart!<p>How to Play:<br>- Use direction buttons to move the player <br>- Use the boom button to plan bomb. Regular bomb will explode after 3s<br>- Bomb size and damage varies based on items you found<br>- Items may boost character stats (but there might also be side effects!)<br>- Avoid monster and bomb explosions!<br>- Defeat the monster (some monsters e.g the pharaoh are immortal) , find the key to the next level<br>- And don&#39;t forget the stars, you will need them to unlock the next episode.<br>- Saving coins to unlock new game character, item and levels<p>Game features:<br>- Classical onscreen game controller<br>- Blazing fast action<br>- Smart monsters<br>- Huge dungeons with many type of monsters (maze style)<br>- Breakthrough game play<br>- Huge collections of item under hidden treasure boxes<br>- Score and star assessment system<br>- Amazing effects<br>- And much more!<br>- Support game controller, keyboard via OTG cable<br>- Now support Google Play Game Services, Leader Boards and Achievements!<p>Future Update:<br>- Multiplayer player via Bluetooth, WIFI or Data Network.<br>- New monsters, levels<br>- New type of boom, dynamites, character and game mode<p>Try to get the maximum of star after each level!!!<br>Enjoy Maze City: Bomber Adventure and support us by leaving comments. Thanks<p>Developed and published by iBit Game Studio.</p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=vn.ibit.mazecity" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=vn.ibit.mazecity" tabindex="-1"> <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" style="width: 81.34007453918457%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="vn.ibit.mazecity"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="vn.ibit.mazecity"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="net.simplexcode.bababoom" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="net.simplexcode.bababoom" data-server-cookie="CAIaIgogEh4KGG5ldC5zaW1wbGV4Y29kZS5iYWJhYm9vbRABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=net.simplexcode.bababoom" 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 class="cover-image" alt="BaBaBear Boom" data-cover-large="https://lh5.ggpht.com/X6MWf2a6wejFioXC_AvDlszc8hqz5v9vnT5zyf1yCzTiRa1gG-FWfV5megZHHaVnSHE=w340" data-cover-small="https://lh5.ggpht.com/X6MWf2a6wejFioXC_AvDlszc8hqz5v9vnT5zyf1yCzTiRa1gG-FWfV5megZHHaVnSHE=w170" src="https://lh5.ggpht.com/X6MWf2a6wejFioXC_AvDlszc8hqz5v9vnT5zyf1yCzTiRa1gG-FWfV5megZHHaVnSHE=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=net.simplexcode.bababoom" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="net.simplexcode.bababoom"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=net.simplexcode.bababoom" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=net.simplexcode.bababoom" title="BaBaBear Boom"> BaBaBear Boom <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=SimplexCode" title="SimplexCode">SimplexCode</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="net.simplexcode.bababoom"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="net.simplexcode.bababoom"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> A lot of dragon was caught by monkeys, monkeys seem to have some evil plan! At that time, BaBaBear appeared, fight together with BaBaBear, and rescue dragons!<p>Features:<br>- A lot of droping items<br>- Epic Boss Battle<br>- Feed System: get powerful item inside your foods<br>- Collection: collect and upgrade your items<br>- Game Center Leaderboards integration<p>Join and fight together now!</p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=net.simplexcode.bababoom" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=net.simplexcode.bababoom" tabindex="-1"> <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" style="width: 80%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="net.simplexcode.bababoom"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="net.simplexcode.bababoom"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> </div> </div> <div class="rec-cluster" data-server-cookie="CAMiKQgCEAMaIRIfChljb20uYmx1ZWZyb2dnYW1pbmcucG9wZGF0EAEYAygE" data-uitype="400"> <h1 class="heading">More from developer</h1> <div class="cards expandable"> <div class="card no-rationale square-cover apps small" data-docid="com.bluefroggaming.ghost_chicken" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="com.bluefroggaming.ghost_chicken" data-server-cookie="CAIaKgooEiYKIGNvbS5ibHVlZnJvZ2dhbWluZy5naG9zdF9jaGlja2VuEAEYAw==" data-uitype="500"> <a class="card-click-target" 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 class="cover-image" alt="Ghost Chicken" 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-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" title="Ghost Chicken"> Ghost Chicken <span class="paragraph-end"></span> </a> </h2> <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="buy-button-container apps is-price-tag" data-docid="com.bluefroggaming.ghost_chicken"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.bluefroggaming.ghost_chicken"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Enter the warped and kooky world of Ghost Chicken; a high-octane action game full of chills and thrills! Stretch the chicken’s neck to gobble up all the corn before time runs out. Release the chicken’s head to snap the neck back in. Be careful– creepy crawly bugs lurk in the dirt, so don’t let them bite! <p>Just in time for Halloween, Ghost Chicken throws you into a spooky world of ghoulishly challenging mazes that will make your head spin in fright! <p>• Test your speed and skill in the frantic Arcade Mode. <br>• Compete to set the high score in one of 4 difficulty modes. <br>• Unlock the devilishly tricky ‘Insane’ difficulty if you dare! <br>• Collect crazy power-ups to unleash awesome effects on your enemies. <br>• Tons of ghostly fun for all ages!<p>Keywords: Halloween, Ghost, Chicken, Arcade, Action, Spooky, Haunted, Creepy, Graveyard, Corn, Pac, Man, Retro, Game, Puzzle, Oils Well, Snake</p></p></p> <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" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.8 stars out of five stars "> <div class="current-rating" style="width: 75.36841869354248%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.bluefroggaming.ghost_chicken"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.bluefroggaming.ghost_chicken"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> </div> </div> </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 id="footer-content"> <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">©2014 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="https://play.google.com/intl/en-US_us/about/device-terms.html" target="_blank"> Devices Terms of Sale</a> <a class="footer-link id-no-nav" href="https://support.google.com/googleplay/bin/answer.py?answer=1196018&amp;hl=en_US" 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> </div> </div> </div></div><script type="text/javascript">(function(){var locale='en_US';window.___gcfg = {lang:locale,parsetags:'explicit'
81
- };(function(){function doPlusOne(){if (window.gapi && window.gapi.plusone){window.gapi.plusone.go('body-content');}
74
+ </style><link rel="stylesheet" href="https://www.gstatic.com/play/store/web/css/566661591-lowlife_css_ltr.css">
75
+ <link href="//ssl.gstatic.com/android/market_images/web/favicon.ico" rel="shortcut icon"><script type="text/javascript"></script><title id="main-title">Pop Dat - Android Apps on Google Play</title><meta content="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..." name="Description"><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=in" hreflang="in" 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" hreflang="fr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=fr_BE" hreflang="fr_BE" 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_FR" hreflang="fr_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=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=nl_BE" hreflang="nl_BE" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.bluefroggaming.popdat&amp;hl=nl_NL" hreflang="nl_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=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"></head><body class="no-focus-outline" data-page-server-cookie=""><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="http://www.google.com/intl/en/options/"><u>More</u> &raquo;</a></nobr></div><div style="position:fixed;top:-100000px;left:-100000px;opacity:0" id="offscreen-renderer"></div><div class="wrapper-with-footer" id="wrapper"><div style="display:block"> <div class="nav-container id-click-track 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" 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/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/MOVIE"> Movies </a> </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/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/collection/promotion_1000568_txb_product"> Textbooks </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"> 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 store" 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"> Store </span> </span> </a> </li> <li class="store"> <ul class="sub-nav id-sub-nav-store"> <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 id-no-menu-change id-no-nav" href="https://play.google.com/intl/en-US_us/about/giftcards"> Buy gift card </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"> Buy Google Play credit </button> </li> </ul> </li> </ul> </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 type="text/javascript" src="https://www.gstatic.com/play/store/web/js/4021730603-jquery_js_compiled_jquery_js.js"></script>
76
+ <script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/3182759948-initial_page_js_compiled_initial_page_js.js"></script>
77
+ <script>initializeAppMenu();</script><div class="action-bar-container" role="navigation" jsl="$t t-NjQXl_7dol8;$x 0;"> <div class="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-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,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> <div jsl="$x 4;$t t-pZpp18oHJ6M;$x 0;" class="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" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item"> <ul jsl="$x 8;$t t-ufnLPd03FBo;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;" style="display:none"> <a target="_blank" jsl="$x 2;" jsan="0.target"></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/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="1" 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="2" 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="3" 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="4" 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="5" 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="6" 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="7" 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="8" 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="9" 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="10" 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="11" 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="12" 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="13" 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="14" 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="15" 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="16" 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="17" 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="18" 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="19" 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="20" 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="21" 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="22" 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="23" 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="24" 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="*25" 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" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item"> <ul jsl="$x 8;$t t-ufnLPd03FBo;$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_FAMILY" title="Family" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Family</a> </li><li jsinstance="9" 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="10" 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="11" 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="12" 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="13" 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="14" 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="15" 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="16" 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="*17" 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> </ul> </div> </div> </div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="1" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,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> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="2" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-3kDrbXyPsIE;$x 0;" class="action-bar-link" jsan="t-3kDrbXyPsIE,7.action-bar-link"> <a class="action-bar-link-title" aria-selected="false" href="/store/apps" jsl="$x 1;" jsan="7.action-bar-link-title,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> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="3" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-3kDrbXyPsIE;$x 0;" class="action-bar-link" jsan="t-3kDrbXyPsIE,7.action-bar-link"> <a class="action-bar-link-title" aria-selected="false" href="/store/apps/top" jsl="$x 1;" jsan="7.action-bar-link-title,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> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="4" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-3kDrbXyPsIE;$x 0;" class="action-bar-link" jsan="t-3kDrbXyPsIE,7.action-bar-link"> <a class="action-bar-link-title" aria-selected="false" href="/store/apps/new" jsl="$x 1;" jsan="7.action-bar-link-title,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> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="*5" jsl="$x 2;$t t-JC5PZYWvdyU;$x 0;" class="action-bar-aux" jsan="t-JC5PZYWvdyU,7.action-bar-aux"> <div jsinstance="0" jsl="$x 1;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,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;$t t-jrVj4fYkncg;$x 0;" class="action-bar-link action-bar-help play-button small id-track-click" data-uitype="112" title="Help" jsan="t-jrVj4fYkncg,7.action-bar-link,7.action-bar-help,7.play-button,7.small,7.id-track-click,0.data-uitype,0.title"> <span class="action-bar-link-title" jsl="$x 1;" jsan="7.action-bar-link-title"></span> </button> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="*1" jsl="$x 1;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item settings-gear-menu play-button small" jsan="t-rwatkwvxdCk,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> <div jsl="$x 4;$t t-pZpp18oHJ6M;$x 0;" class="action-bar-dropdown-container"> <div class="action-bar-dropdown"> <button class="action-bar-dropdown-top" aria-controls="action-dropdown-children-" 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-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-RFvLnNve14Q;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="/store/account" title="My orders" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.title">My orders</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-RFvLnNve14Q;$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="*2" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-RFvLnNve14Q;$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 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div> </div> </div> </div> </div><div class="id-body-content-beginning" aria-labelledby="main-title" tabindex="-1"></div><div 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"><meta content="https://www.gstatic.com/android/market_images/plus/play_stream_logo.png" itemprop="logoImageUrl"><meta content="https://play.google.com" itemprop="logoHrefUrl"><div> <div class="details-wrapper apps square-cover id-track-partial-impression" data-docid="com.bluefroggaming.popdat" data-server-cookie="CAIaIwohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgD" 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>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> <div> <a class="document-subtitle category" href="/store/apps/category/GAME_ARCADE"> <span itemprop="genre">Arcade</span> </a> </div> <div class="details-actions"> <span> <span class="apps medium play-button buy-button-container" 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"> <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="" itemprop="previewUrl"> <meta content="" itemprop="offerType"> <meta content="0" itemprop="price"> <meta content="" itemprop="description"> <span itemprop="seller" itemscope="itemscope" itemtype="http://schema.org/Organization"> <meta content="Android" itemprop="name"> </span> </span> </span> <jsl jsl="$x 0;$t t-_eIX7HsHFbc;$x 0;$t t-ha7zyzmVjec;$x 0;"> <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> </jsl> <span>Install</span> </button> </span> </span> <div class="id-wishlist-display wishlist-display"> <div class="wishlist-container" data-enable-wishlist-icon-center="true" data-server-cookie="CAIaIwohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgD" data-uitype="203"> <button class="play-button wishlist-content wishlist-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="CAIaIwohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgD" data-uitype="204"> Add to Wishlist </div> <div class="wishlist-text-default wishlist-text-adding"> Adding... </div> <div class="wishlist-text-default wishlist-text-added id-track-impression"> Added to Wishlist </div> <div class="wishlist-text-default wishlist-text-remove id-track-click" data-server-cookie="CAIaIwohEh8KGWNvbS5ibHVlZnJvZ2dhbWluZy5wb3BkYXQQARgD" data-uitype="205"> Remove </div> <div class="wishlist-text-default wishlist-text-removing"> Removing... </div> </div> </button> </div> </div> </div> <div class="voucher-message" style="display:none"> You have a reward that applies to this item. </div> <div class="app-compatibility"> <div class="app-compatibility-initial" style="display:none"> <div class="compatibility-loading compatibility-image"></div> <span> Loading device compatibility... </span> </div> <div class="app-compatibility-final" style="display:none"> <div class="id-app-compatibility-icon compatibility-image"></div> </div> <div class="app-compatibility-device-list" style="display:none"></div> <script>(function(){var docid='com.bluefroggaming.popdat';if (typeof fci !== 'undefined'){fci(docid);}else {jQuery('body').one('onPressPlay',function(){fci(docid);});}
78
+ })();</script> </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" style="width: 93.33333015441895%"></div> </div> </div> <div class="stars-count"> (<span class="reviewers-small"></span>9) </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");}
79
+ </script> </div> </div> </div> </div> <div class="details-section screenshots" aria-hidden="true"> <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" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-0" src="https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-1" src="https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-2" src="https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-3" src="https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-4" src="https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h310" itemprop="screenshot"><img class="screenshot" alt="Pop Dat - screenshot thumbnail" data-expand-to="full-screenshot-5" src="https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h310" itemprop="screenshot"> </div> </div> <div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-0" data-expand-to="full-screenshot-1" src="https://lh6.ggpht.com/JJWPKPEvz5ivZEeph_gA_oB3VOXYrIrY9lGdGFWHVT4FVub6cUKqxkh5VyxbvVqMXg=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-1" data-expand-to="full-screenshot-2" src="https://lh6.ggpht.com/kPGbJqu42Ukxoa_XZlWxo349y3zNKCayjBD35V2bbt26ZmgpHDegTf8sS5C1VOoAiw=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-2" data-expand-to="full-screenshot-3" src="https://lh3.ggpht.com/S9VMzKxAWSS3IxeUtLYPn-zDg9ojTpVxeHbd3RhHqtXazGRV6-S0jsuNh-GneV9eE2A=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-3" data-expand-to="full-screenshot-4" src="https://lh5.ggpht.com/G0U5k5PpvuEdflN58qzr3uKHGsXk3QqwwLIL_KxVfGNicR7Gn42smetbTBn9SRftnyk=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-4" data-expand-to="full-screenshot-5" src="https://lh6.ggpht.com/j03lPKqJss6066_Q6AbZikU33PWgoR07cPLFgoE5IoNyXwMG6QVX_3-SgI741vnaVnu7=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Pop Dat - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-5" data-expand-to="thumbnails" src="https://lh3.ggpht.com/YBrG1Hjv7vgNLwp9PaR77gQHwdpInuluSnq9qPG4BwwU7LItCy4m6RQt9YM1sJH1hjdq=h900"> </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" data-show-use-buffer="true"> <div class="heading"> Description </div> <div class="show-more-content text-body" itemprop="description"> <div class="id-app-orig-desc">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"></div> </div> <div> <button class="play-button show-more small"> Read more </button> <button class="play-button expand-close"> <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="review-help unallowed-app-review-container" data-unallowed-docid="com.bluefroggaming.popdat"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> <span class="unallowed-app-review id-unowned-app"> You must install this app before submitting a review. </span> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="review-help id-gplus-signup"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> Google Play reviews now use Google+ so it's easier to see opinions from people you care about. New reviews will be publicly linked to your Google+ profile. Your name on previous reviews now appears as "A Google User". </div> <div class="review-row"> <div class="review-action-button-container"> <a class="play-button id-no-nav apps" href="https://plus.google.com/up/accounts/upgrade?gpsrc=gpwr0&amp;continue=https://play.google.com/store/apps/details?id%3Dcom.bluefroggaming.popdat"> Sign up for Google+ </a> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="review-help id-gpr-onboard"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> Google Play reviews now use Google+ so it's easier to see opinions from people you care about. New reviews will be publicly linked to your Google+ profile. Your name on previous reviews now appears as "A Google User". </div> <div class="review-row"> <div class="review-action-button-container"> <button class="play-button id-enable-gpr apps"> Continue </button> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="write-review-panel"> <div> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> <div class="review-row-header"> Write a review </div> </div> <div class="review-row"> <div class="write-review-title-container"> <input class="review-input-text-box write-review-title" maxlength="75" type="text"> </div> </div> <div class="review-row"> <div class="write-review-comment-container"> <textarea class="review-input-text-box write-review-comment" maxlength="1200"></textarea> </div> </div> <div class="review-row"> <div class="review-stars-container"> <div class="neutral write-star-rating-container"> <div class="small-star"> <div class="star-rating-editable-container"> <span class="star-common first-star"></span> <span class="star-common second-star"></span> <span class="star-common third-star"></span> <span class="star-common fourth-star"></span> <span class="star-common fifth-star"></span> </div> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> <div class="star-rating-aria"> <button class="first-star" aria-label=" Rate one star out of five stars "></button> <button class="second-star" aria-label=" Rate two stars out of five stars "></button> <button class="third-star" aria-label=" Rate three stars out of five stars "></button> <button class="fourth-star" aria-label=" Rate four stars out of five stars "></button> <button class="fifth-star" aria-label=" Rate five stars out of five stars "></button> </div> </div> </div> <span class="alert-message-container"> <div class="alert-image-container"></div> <div class="alert-review-text-container"></div> </span> </div> <div class="review-action-button-container"> <button class="id-submit-review play-button apps disabled"> Submit Review </button> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> </div> <div style="display:none" class="my-review-panel" data-reviewid=""> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-image-row"> <div> <span> </span> </div> </div> <div class="review-row"> <div class="review-row-header"> My review </div> </div> <div class="review-row"> <span class="review-title"></span> </div> <div class="review-row"> <div class="review-stars-container"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> <div class="review-action-button-container"> <button class="play-button icon-button small review-action-button-gap"> <div class="review-trash-button-icon"></div> </button> </div> </div> <div class="review-row"> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="id-selected-review-panel" data-reviewid=""> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-image-row"> <div> <span> </span> </div> </div> <div class="review-row"> <div class="review-row-header"> <span> Review from <span style="display:none"> </span> </span> </div> </div> <div class="review-row"> <span class="review-title"></span> </div> <div class="review-row"> <div class="review-stars-container"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> </div> <div class="review-row"> </div> </div> <div class="write-review-triangle-container"></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="dropdown-menu-container review-filter id-review-sort-filter"> <div class="dropdown-menu"> <span class="displayed-child">Helpfulness</span> <div class="dropdown-icon"></div> </div> <div class="dropdown-menu-children"> <div class="dropdown-child" data-dropdown-value="0">Newest</div><div class="dropdown-child" data-dropdown-value="1">Rating</div><div class="dropdown-child selected" data-dropdown-value="2">Helpfulness</div> </div> </div><div class="dropdown-menu-container review-filter id-review-version-filter"> <div class="dropdown-menu"> <span class="displayed-child">All Versions</span> <div class="dropdown-icon"></div> </div> <div class="dropdown-menu-children"> <div class="dropdown-child selected" data-dropdown-value="">All Versions</div><div class="dropdown-child" data-dropdown-value="2">Latest Version</div> </div> </div> </div> <button class="id-write-button play-button"> <span class="write-review-button-icon"></span> <span> Write a 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.666666507720947" itemprop="ratingValue"> <meta content="9" itemprop="ratingCount"> <div class="score">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" style="width: 93.33333015441895%"></div> </div> </div> <div class="reviews-stats"> <span class="reviewers-small"></span> <span class="reviews-num">9</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">8</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">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">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:12%"></span> <span class="bar-number">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">0</span> </div> </div> </div> <div class="featured-review" data-expand-to="user-0" data-reviewid="lg:AOqpTOFLotRWWL8F50O4eRjgG4qLIdxscdhqfgUYPIXPFSKdYST3akGCq1AbpwN5AIC2cL0A_IusaIg0iNeX9Q"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-1" data-reviewid="lg:AOqpTOEP10sdyLzTvD5K-uaeuxd5p5Nvxty2sZH1l0n4XiI53kT8PKlxbRA-W_9ApKTCF7SeuVdI45AmOf6Ccg"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-2" data-reviewid="lg:AOqpTOH5CGpJIWhh85M3LbdvavtQqvFV6Zku_0g6C03cLvtlNLc_cN-rM6z9Tb4CpdujAwMgj3AZt4yG5JdxKw"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" style="width: 100%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title"></span> Nostalgic </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-3" data-reviewid="lg:AOqpTOHRVyUFOWdcf3fdXadmV5O7BhgOmA5XpAmvafelzLR6l-AmdeDkf7dKgnBr76glGq3zCtsNHWJ89zYANA"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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> <div class="paragraph-end details-light"></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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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"> <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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"> <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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"> <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" 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"> <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> <script>if (typeof ircs == 'undefined'){jQuery('body').one('onPressPlay',function(){ircs();});}else {ircs();}
80
+ </script> </div> <div class="details-wrapper"> <div class="details-section metadata"> <div class="details-section-heading"> <div class="heading"> Additional information </div> </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"> <div class="title">Content Rating</div> <div class="content" itemprop="contentRating"> Everyone </div> </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="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"> <div class="card no-rationale square-cover apps small" data-docid="com.mac.warzonepaid" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.mac.warzonepaid" data-server-cookie="CAIaHQobEhkKE2NvbS5tYWMud2Fyem9uZXBhaWQQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHQobEhkKE2NvbS5tYWMud2Fyem9uZXBhaWQQARgD" data-uitype="500" href="/store/apps/details?id=com.mac.warzonepaid" 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 class="cover-image" alt="WarZone" data-cover-large="https://lh6.ggpht.com/btC2bpv8u0GCKeyjW_4eRY7nbe5c6aZKFNqfuN3SNfP6pmLixA2zcLYcVz2IZap-Y4g=w340" data-cover-small="https://lh6.ggpht.com/btC2bpv8u0GCKeyjW_4eRY7nbe5c6aZKFNqfuN3SNfP6pmLixA2zcLYcVz2IZap-Y4g=w170" src="https://lh6.ggpht.com/btC2bpv8u0GCKeyjW_4eRY7nbe5c6aZKFNqfuN3SNfP6pmLixA2zcLYcVz2IZap-Y4g=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.mac.warzonepaid" aria-hidden="true" tabindex="-1"> <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.mac.warzonepaid"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.mac.warzonepaid" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.mac.warzonepaid" title="WarZone"> WarZone <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=HG+Media+Group" title="HG Media Group">HG Media Group</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.mac.warzonepaid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$1.99</span> </button> </span> </span> </div> <div class="description"> WarZone takes place on earth as you defend the battlefield with different towers. Features upgrades, achievements, open maps, and much more!<p>The full version features 10 levels with unlimited upgrades and achievements.<p>A free version is also available (try out the free version first!).<p>Free version progress is automatically imported into the full version, should you wish to upgrade.</p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.mac.warzonepaid" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.mac.warzonepaid" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 0.0 stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.mac.warzonepaid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$1.99</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.caresilabs.wheeljoy.paid" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.caresilabs.wheeljoy.paid" data-server-cookie="CAIaJgokEiIKHGNvbS5jYXJlc2lsYWJzLndoZWVsam95LnBhaWQQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaJgokEiIKHGNvbS5jYXJlc2lsYWJzLndoZWVsam95LnBhaWQQARgD" data-uitype="500" href="/store/apps/details?id=com.caresilabs.wheeljoy.paid" 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 class="cover-image" alt="Wheeljoy" data-cover-large="https://lh3.ggpht.com/UhpK_Ipdq_9gCSe97kCNU9qpcYKgj6Dk4dgkFVeAnEGQ5AGFWquX1uinyyrfFjiCSA=w340" data-cover-small="https://lh3.ggpht.com/UhpK_Ipdq_9gCSe97kCNU9qpcYKgj6Dk4dgkFVeAnEGQ5AGFWquX1uinyyrfFjiCSA=w170" src="https://lh3.ggpht.com/UhpK_Ipdq_9gCSe97kCNU9qpcYKgj6Dk4dgkFVeAnEGQ5AGFWquX1uinyyrfFjiCSA=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.caresilabs.wheeljoy.paid" aria-hidden="true" tabindex="-1"> <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.caresilabs.wheeljoy.paid"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.caresilabs.wheeljoy.paid" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.caresilabs.wheeljoy.paid" title="Wheeljoy"> Wheeljoy <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Caresi+Labs" title="Caresi Labs">Caresi Labs</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.caresilabs.wheeljoy.paid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$1.98</span> </button> </span> </span> </div> <div class="description"> Wheeljoy is finally here!<p>Wheelie and his friends have encountered a difficult task where they need to get from point A to point B in challenging and fun levels. It&#39;s your job to keep them going! Jump, dodge and have fun in Caresi Labs newest game!<p>Wheeljoy features:<p>★ 100+ Challenging and unique levels<br>★ 30+ Achievements<br>★ 6+ Skins<br>★ Cute cartoonish graphics<p>I really hope you enjoy the game! <br>Inspired by The Impossible Game, Yoo Ninja and FastBall. Created with almighty LibGDX.<p>Find any bugs or want to give feedback?<br>caresilabs@gmail.com<br>http://caresilabs.com</p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.caresilabs.wheeljoy.paid" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.caresilabs.wheeljoy.paid" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.7 stars out of five stars "> <div class="current-rating" style="width: 93.33333015441895%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.caresilabs.wheeljoy.paid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$1.98</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.blazingsoft.crosswolf" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.blazingsoft.crosswolf" data-server-cookie="CAIaIwohEh8KGWNvbS5ibGF6aW5nc29mdC5jcm9zc3dvbGYQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaIwohEh8KGWNvbS5ibGF6aW5nc29mdC5jcm9zc3dvbGYQARgD" data-uitype="500" href="/store/apps/details?id=com.blazingsoft.crosswolf" 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 class="cover-image" alt="CrossWolf" data-cover-large="https://lh6.ggpht.com/t_AN8EBUPDoWgBRioG0Lx6waW0gj0gF9UMEXY6LPxs3LYL_Euxkka4lj1UgDVRjzfQ=w340" data-cover-small="https://lh6.ggpht.com/t_AN8EBUPDoWgBRioG0Lx6waW0gj0gF9UMEXY6LPxs3LYL_Euxkka4lj1UgDVRjzfQ=w170" src="https://lh6.ggpht.com/t_AN8EBUPDoWgBRioG0Lx6waW0gj0gF9UMEXY6LPxs3LYL_Euxkka4lj1UgDVRjzfQ=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.blazingsoft.crosswolf" aria-hidden="true" tabindex="-1"> <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.blazingsoft.crosswolf"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.blazingsoft.crosswolf" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.blazingsoft.crosswolf" title="CrossWolf"> CrossWolf <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Blazing+Soft+SAS" title="Blazing Soft SAS">Blazing Soft SAS</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.blazingsoft.crosswolf"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$0.99</span> </button> </span> </span> </div> <div class="description"> NEVER GIVE UP - Run as fast as you can through dangerous worlds to collect coins and destroy enemies. It&#39;s CrossWolf, the new non-stop adventure that challenges you to cross every obstacle, learn every skill, defeat every enemy.<p>Jump onto platforms large and small while sprinting through ever-changing worlds. Just tap longer to jump higher (you can even do a double jump!).<p>Enjoy the complex and addictive gameplay that&#39;s unlike anything you&#39;ve tried before. CrossWolf will break every expectation you have about running games. <p>FAST-PACED RUNNING ADVENTURE<p>In this fast-paced 2-D running game, you must dodge or destroy your foes. Collect coins along the way to get valuable Power-Ups and wolf upgrades.<p>New dangers await you at every jump. Watch out for falling platforms, dangerous mobs, and lethal obstacles.<p>Start as a wolf cub and move up the ranks. You&#39;ll get new skills along the way like the Fire Roll.<p>Want to SURVIVE? You&#39;ll need quick reflexes and perfect timing.<br>Want to WIN? You&#39;ll need to defeat all enemies that seek to destroy you.<p>EARN SKILLS &amp; EXTRAS<p>As you leap from platform to platform, don&#39;t forget to grab the gold coins. You can redeem these coins in the store for much-needed help.<p>With your coins, you can get protective shields, restore skill bars, and even earn speed boosts. You can also get valuable skins: with the Zombie Skin, you can jump higher to avoid enemies, and with the Magma Skin, you are immune to enemy beams.<p>KEEP ON RUNNING<p>Features of the new CrossWolf game include:<p>* Fast-Paced Running Game - Run, jump, and fight your way to victory<br>* Dangerous Enemies - Defeat the deadly foes that stand in your way<br>* Valuable Power-Ups - Collect coins to earn helpful upgrades<br>* Addictive Gameplay - Complex play makes for never-ending fun<br>* Ipen Feint Enabled - View high scores for bragging rights<p>Are YOU ready for the challenge? Play CrossWolf now and find out!</p></p></p></p></p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.blazingsoft.crosswolf" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.blazingsoft.crosswolf" tabindex="-1"> <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" style="width: 80%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.blazingsoft.crosswolf"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$0.99</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="org.vladest.Popcorn" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="org.vladest.Popcorn" data-server-cookie="CAIaHQobEhkKE29yZy52bGFkZXN0LlBvcGNvcm4QARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHQobEhkKE29yZy52bGFkZXN0LlBvcGNvcm4QARgD" data-uitype="500" href="/store/apps/details?id=org.vladest.Popcorn" 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 class="cover-image" alt="Popcorn Tap The Corn !" data-cover-large="https://lh6.ggpht.com/jF9yV5q_uNIRHjnyMFz9iC1kaMYoX7qhUBKPJbA8fOZPBW1VqywCQ5kQgX6W0bCxhJEb=w340" data-cover-small="https://lh6.ggpht.com/jF9yV5q_uNIRHjnyMFz9iC1kaMYoX7qhUBKPJbA8fOZPBW1VqywCQ5kQgX6W0bCxhJEb=w170" src="https://lh6.ggpht.com/jF9yV5q_uNIRHjnyMFz9iC1kaMYoX7qhUBKPJbA8fOZPBW1VqywCQ5kQgX6W0bCxhJEb=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=org.vladest.Popcorn" aria-hidden="true" tabindex="-1"> <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.vladest.Popcorn"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=org.vladest.Popcorn" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=org.vladest.Popcorn" title="Popcorn Tap The Corn !"> Popcorn Tap The Corn ! <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Maksym+Osadchyi" title="Maksym Osadchyi">Maksym Osadchyi</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="org.vladest.Popcorn"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> To start the game, press the start button in the upper left corner. From different sides of the screen a corn grain will start to fly. Tapping on the flying corn grain will turn it into popcorn!<br>Try to tap as many of corn grains as possible in a single round to gain higher score! Children charmed by the game and forget about everything! <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=org.vladest.Popcorn" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=org.vladest.Popcorn" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.5 stars out of five stars "> <div class="current-rating" style="width: 70.34482955932617%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="org.vladest.Popcorn"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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.mtb.dds" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.mtb.dds" data-server-cookie="CAIaFQoTEhEKC2NvbS5tdGIuZGRzEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaFQoTEhEKC2NvbS5tdGIuZGRzEAEYAw==" data-uitype="500" href="/store/apps/details?id=com.mtb.dds" 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 class="cover-image" alt="斗斗殺" data-cover-large="https://lh6.ggpht.com/ZuFZiWM_CZFxnIb56OkZw6IWqOkJ_Bnnij0TBy7d11MA6biEhOuCNYb5N72nsh3PHg=w340" data-cover-small="https://lh6.ggpht.com/ZuFZiWM_CZFxnIb56OkZw6IWqOkJ_Bnnij0TBy7d11MA6biEhOuCNYb5N72nsh3PHg=w170" src="https://lh6.ggpht.com/ZuFZiWM_CZFxnIb56OkZw6IWqOkJ_Bnnij0TBy7d11MA6biEhOuCNYb5N72nsh3PHg=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.mtb.dds" aria-hidden="true" tabindex="-1"> <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.mtb.dds"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.mtb.dds" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.mtb.dds" title="斗斗殺"> 斗斗殺 <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=MTB+Game" title="MTB Game">MTB Game</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.mtb.dds"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$0.99</span> </button> </span> </span> </div> <div class="description"> 當斗地主遇上三國殺,誰能笑傲江湖? <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.mtb.dds" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.mtb.dds" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 0.0 stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.mtb.dds"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$0.99</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.hdl.datbom" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.hdl.datbom" data-server-cookie="CAIaGAoWEhQKDmNvbS5oZGwuZGF0Ym9tEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaGAoWEhQKDmNvbS5oZGwuZGF0Ym9tEAEYAw==" data-uitype="500" href="/store/apps/details?id=com.hdl.datbom" 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 class="cover-image" alt="Dat Bom v1.0" data-cover-large="https://lh4.ggpht.com/vrKZwBhNJ0vlCAgGHE3nOgjrzLkNAW8QFc5mqC76NyCVseCgC3InXgZCQaz1SF-8E3g=w340" data-cover-small="https://lh4.ggpht.com/vrKZwBhNJ0vlCAgGHE3nOgjrzLkNAW8QFc5mqC76NyCVseCgC3InXgZCQaz1SF-8E3g=w170" src="https://lh4.ggpht.com/vrKZwBhNJ0vlCAgGHE3nOgjrzLkNAW8QFc5mqC76NyCVseCgC3InXgZCQaz1SF-8E3g=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.hdl.datbom" aria-hidden="true" tabindex="-1"> <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.hdl.datbom"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.hdl.datbom" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.hdl.datbom" title="Dat Bom v1.0"> Dat Bom v1.0 <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Loi+Huynh" title="Loi Huynh">Loi Huynh</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.hdl.datbom"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$1.00</span> </button> </span> </span> </div> <div class="description"> Nếu bạn là một trong những người thưởng thức trò chơi truyền thống &quot;người đàn ông Bomber&quot;, bạn sẽ có cơ hội để nhìn thấy nó đang được phát triển trong v1.0 anh hùng Bomb. Tuy nhiên, các tính năng mới hoàn toàn sẽ làm hài lòng bạn. Bomb Hero là một trò chơi đơn giản, được thực hiện dựa trên một trò chơi cổ điển cũ. Tuy nhiên, người chơi cũng có thể thưởng thức một số trong những sáng kiến ​​mới trong trò chơi này. Chủ đề của trò chơi là một Cowboy Ai Cập với mục tiêu chiến đấu chống lại Nghệ thuật Dart, đặc biệt là phù thủy, Dracula, và quái vật khác và các lực lượng tối. Trò chơi có sự đa dạng của các giai đoạn khác nhau, từ cái lạnh của Bắc Mỹ, đất nông nghiệp của Nam Georgia, và từ bụi của Ấn Độ, ẩm của miền Nam Florida. Khó khăn cũng tăng dần cho mỗi từng giai đoạn, để người chơi có thể nhìn thấy nhiều khía cạnh của trò chơi. Một số khả năng của nhân vật chính là rất cao được thiết kế để làm cho anh ta đạt được mục tiêu cuối cùng của ông. Bên cạnh đó, những kẻ xấu cũng tỉ mỉ mã hoá, để họ có nhiều sức mạnh kỳ lạ và sắc nét như là vô hình, có thể đi qua các bức tường, và một số người trong số họ được ưu đãi để được thực sự thông minh. Trò chơi cũng tăng cường sự linh hoạt trong việc kiểm soát các quả bom, theo nhiều cách khác nhau, giống như ném đá bóng. Hơn nữa, bằng cách sử dụng công nghệ mới để tiết kiệm trò chơi trên Android làm cho nó có thể cho người chơi vượt qua một số giai đoạn khó khăn nhất. Và cùng thời gian, tiện ích của việc thực hành trước khi chơi bất kỳ giai đoạn, làm cho tất cả mọi thứ có vẻ dễ dàng hơn và có thể. Các Widgets cao bồi của chúng tôi là đạt được một số lượng có thể chấp nhận được, một số là thực sự cơ bản, như phiên bản cũ, một số rất phức tạp, như khả năng vô hình trong một khoảng thời gian. Đặc biệt nhất phải được rằng đồ họa là khá thiết kế và làm mới, hỗ trợ cả hai vai và chơi định hướng phong cảnh. Bạn sẽ thích thú khi chạm vào màn hình của Android của bạn mà không cần phải sử dụng bàn phím thô như truyền thống, bởi vì các thuật toán sử dụng trong các trò chơi được xây dựng để giúp bạn. Tất cả mọi thứ được kết hợp với nhau để giúp bạn tiếp xúc với các cảm giác của thực tế trong lĩnh vực ảo. Hy vọng bạn sẽ thưởng thức và thư giãn với các trò chơi! ông chủ của công ty &quot;Harry và Lý thuyết Trò chơi&quot; hân hạnh giới thiệu đến tất cả người chơi. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.hdl.datbom" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.hdl.datbom" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 0.0 stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.hdl.datbom"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">$1.00</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="cz.dejvice.rc.Marvin" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="cz.dejvice.rc.Marvin" data-server-cookie="CAIaHgocEhoKFGN6LmRlanZpY2UucmMuTWFydmluEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHgocEhoKFGN6LmRlanZpY2UucmMuTWFydmluEAEYAw==" data-uitype="500" href="/store/apps/details?id=cz.dejvice.rc.Marvin" 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 class="cover-image" alt="Marvin - ZX Spectrum Emulator" data-cover-large="https://lh3.ggpht.com/1k3RMYg1T_F_Xc1NeKEuoHFDBP2aOH84dI7ckfSWsDeLyNICOL2KzwwBl3oKswq_lMs=w340" data-cover-small="https://lh3.ggpht.com/1k3RMYg1T_F_Xc1NeKEuoHFDBP2aOH84dI7ckfSWsDeLyNICOL2KzwwBl3oKswq_lMs=w170" src="https://lh3.ggpht.com/1k3RMYg1T_F_Xc1NeKEuoHFDBP2aOH84dI7ckfSWsDeLyNICOL2KzwwBl3oKswq_lMs=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=cz.dejvice.rc.Marvin" aria-hidden="true" tabindex="-1"> <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="cz.dejvice.rc.Marvin"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=cz.dejvice.rc.Marvin" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=cz.dejvice.rc.Marvin" title="Marvin - ZX Spectrum Emulator"> Marvin - ZX Spectrum Emulator <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=RC" title="RC">RC</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="cz.dejvice.rc.Marvin"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> World&#39;s first Android ZX Spectrum Emulator<br>- full 48/128k Spectrum emulation<br>- accurate timing, 100% speed, 50 fps<br>- high quality 48k and AY-8192 sound<br>- click&amp;play worldofspectrum.org game browser<br>- built-in POKE database for thousands of games<br>- border effects<br>- .z80/.sna snapshot loading/saving<br>- .tap/.tzx tape file support<br>- automatic .zip decompression<br>- fast native code with openGL hardware-accelerated graphics <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=cz.dejvice.rc.Marvin" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=cz.dejvice.rc.Marvin" tabindex="-1"> <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" style="width: 85.52584648132324%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="cz.dejvice.rc.Marvin"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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.spectaculator.spectaculator" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.spectaculator.spectaculator" data-server-cookie="CAIaKQonEiUKH2NvbS5zcGVjdGFjdWxhdG9yLnNwZWN0YWN1bGF0b3IQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaKQonEiUKH2NvbS5zcGVjdGFjdWxhdG9yLnNwZWN0YWN1bGF0b3IQARgD" data-uitype="500" href="/store/apps/details?id=com.spectaculator.spectaculator" 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 class="cover-image" alt="Spectaculator, ZX Emulator" data-cover-large="https://lh6.ggpht.com/r8YpCNpaXluNEIVNBPn91XmenMcmc1YDpTA0-56ytfw07V86j9AVVMQB7ecuMv1Q_lc=w340" data-cover-small="https://lh6.ggpht.com/r8YpCNpaXluNEIVNBPn91XmenMcmc1YDpTA0-56ytfw07V86j9AVVMQB7ecuMv1Q_lc=w170" src="https://lh6.ggpht.com/r8YpCNpaXluNEIVNBPn91XmenMcmc1YDpTA0-56ytfw07V86j9AVVMQB7ecuMv1Q_lc=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.spectaculator.spectaculator" aria-hidden="true" tabindex="-1"> <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.spectaculator.spectaculator"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.spectaculator.spectaculator" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.spectaculator.spectaculator" title="Spectaculator, ZX Emulator"> Spectaculator, ZX Emulator <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Spectaculator.com" title="Spectaculator.com">Spectaculator.com</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.spectaculator.spectaculator"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> In April 1982, Sir Clive Sinclair launched what was to become one of the most popular home computers ever made - the Sinclair ZX Spectrum. <p>Spectaculator is a Sinclair ZX Spectrum emulator that takes you back to the 1980s - to the golden era of 8-bit gaming! <p>Includes the officially licensed &#39;Stephen Crow Anthology&#39;: <br>©1983-2013 Stephen Crow. All rights reserved.<br> - Factory Breakout<br> - Firelord<br> - Laser Snaker<br> - Starquake<br> - Wizard&#39;s Lair<br>... all specially adapted for Android.<br> <br>FEATURES: <br>• Desktop quality ZX Spectrum emulation - games and other programs run just like on a real ZX Spectrum<br>• Play in portrait or landscape orientations <br>• Save your game progress (four saved game slots + a single cloud save slot per game). <br>• Cloud saves (via Dropbox). Gives the possibility of saving on one device (e.g. phone) and continue playing on another device (e.g. tablet or PC)<br>• Enter pokes (cheats) for infinite lives, shields etc. <br>• Lookup game hints, tips and maps <br>• Play in black and white with TV screen simulation for the ultimate 1980s experience! <br>• Type on a virtual ZX Spectrum keyboard <br>• Use external Bluetooth or USB keyboards<br>• Choose authentic cassette loading or fast play <br>• Program in Sinclair BASIC <br>• Play using an external arcade controller (Bluetooth or USB gamepads such as an Xbox 360 controller, iControlPad, Moga Pocket, Moga Pro, Gametel and iCade)<br>• Use gestures (pans, taps and swipes) to control games<br>• Localised into Spanish<br>• In-app shop with licensed games from the original authors and publishers<p>ADDITIONAL FEATURES IN THE FULL VERSION:<p>Add your own games!<br> - Upload and play .TAP/.TZX cassette files, .DSK disk files and .SZX/.Z80/.SNA snapshots<br> - Add inlay artwork for your own games<br> <br>Get an additional 19 officially licensed ZX Spectrum games to play (included in the upgrade):<br> - 3D Starstrike by Realtime Games Software <br> - Auf Wiedersehen Monty by Gremlin Graphics <br> - Avenger by Gremlin Graphics <br> - Bounder by Gremlin Graphics <br> - Cyclone by Vortex Software <br> - Dynamite Dan by Rod Bowkett/Mirrorsoft <br> - Highway Encounter by Vortex Software <br> - Jack The Nipper by Gremlin Graphics <br> - Krackout by Gremlin Graphics <br> - Jekyll &amp; Hyde by Zenobi Software <br> - Metabolis by Gremlin Graphics <br> - Monty On The Run by Gremlin Graphics <br> - On The Run by Design Design <br> - Revolution by Vortex Software <br> - Tau Ceti by Pete Cooke/CRL <br> - The Way Of The Tiger by Gremlin Graphics <br> - Albatrossity by Jonathan Cauldwell <br> - Battery&#39;s Not Precluded by Jonathan Cauldwell <br> - The Fantastic Mister Fruity by Jonathan Cauldwell <p>... with more available from the in-app shop.<p>ADDITIONAL GAME PACKS:<br>The following officially licensed game packs are available from the in-app shop:<p>Design Design Games Pack <br> - 5 Games. Includes Halls of the Things, Dark Star <br> - All proceeds go to the Anthony Nolan Organisation<br> <br>Gremlin Graphics Vol. 1 <br> - 6 games. Includes Wanted! Monty Mole, Skate Crazy <p>Gremlin Graphics Vol. 2 <br> - 6 games. Includes Jack The Nipper II: In Coconut Capers, North Star<p>Gremlin Graphics Vol. 3 <br> - 6 games. Includes Switchblade, Super Scramble Simulator +3<p>Odin Computer Graphics Anthology <br> - 9 games. Includes Nodes Of Yesod, Robin Of The Wood, Heartland <p>Realtime Games Pack <br> - Starstrike II, 3D Tank Duel <p>Vortex Anthology <br> - 6 games. Includes Alien Highway, Deflektor, T.L.L. (Tornado Low Level) <p>Zenobi Adventure Pack Vol. 1 <br> - 6 games. Includes Aura-Scope, The Gods of War, Leopold The Minstrel <p>Zenobi Adventure Pack Vol. 2 <br> - 6 games. Includes The Khangrin Plans, The Krazy Kartoonist Kaper <p>Zenobi Adventures Vol. 3 <br> - 5 games. Includes The Apprentice, The Bardic Rite, Jester Quest<p>The following single games are available from the in-app shop: <br> - Carrier Command <br> - Dynamite Dan II <br> - Frank N. Stein <br> - Laser Squad (Free!)<br> - Lords Of Chaos (Free!)<br> - The Lords Of Midnight</p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.spectaculator.spectaculator" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.spectaculator.spectaculator" tabindex="-1"> <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" style="width: 81.99999809265137%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.spectaculator.spectaculator"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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.seleuco.xpectrum" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.seleuco.xpectrum" data-server-cookie="CAIaHgocEhoKFGNvbS5zZWxldWNvLnhwZWN0cnVtEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHgocEhoKFGNvbS5zZWxldWNvLnhwZWN0cnVtEAEYAw==" data-uitype="500" href="/store/apps/details?id=com.seleuco.xpectrum" 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 class="cover-image" alt="Xpectroid ZX Spectrum Emulator" data-cover-large="https://lh6.ggpht.com/8WQAF9r3Mw0VZ0OeCDlYJve-FTfoVNE8T11x6yPvpBPc7XP39nVdYZUQHZq0MzPW068=w340" data-cover-small="https://lh6.ggpht.com/8WQAF9r3Mw0VZ0OeCDlYJve-FTfoVNE8T11x6yPvpBPc7XP39nVdYZUQHZq0MzPW068=w170" src="https://lh6.ggpht.com/8WQAF9r3Mw0VZ0OeCDlYJve-FTfoVNE8T11x6yPvpBPc7XP39nVdYZUQHZq0MzPW068=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.seleuco.xpectrum" aria-hidden="true" tabindex="-1"> <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.seleuco.xpectrum"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.seleuco.xpectrum" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.seleuco.xpectrum" title="Xpectroid ZX Spectrum Emulator"> Xpectroid ZX Spectrum Emulator <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Seleuco" title="Seleuco">Seleuco</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.seleuco.xpectrum"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> ZX Spectrum 48K, 128K, Plus2, Plus2A, Plus3 emulator.<p>New1.2.1:<br>-Fixed Wiicontroller remap issue.<p>New1.2:<p>-Added support for zipped files.<br>-Fixed Multi-touch bug.<br>-Fixed Xperia Play keys remap.<br>-Added posibility to move to SD.<p><br>New1.1:<p>- New auto frame skip mode.<br>- Improved multitouch responsiveness.<br>- Improved Android 1.5 cupcake support.<br>- New landscape touch controller suited for no multitouch or slower devices<br>- Redefine hardware keys.<br>- Trackball support.<br>- Improved touch keyboard</p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.seleuco.xpectrum" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.seleuco.xpectrum" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.8 stars out of five stars "> <div class="current-rating" style="width: 75.14969825744629%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.seleuco.xpectrum"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="app.usp" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="app.usp" data-server-cookie="CAIaEQoPEg0KB2FwcC51c3AQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaEQoPEg0KB2FwcC51c3AQARgD" data-uitype="500" href="/store/apps/details?id=app.usp" 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 class="cover-image" alt="USP - ZX Spectrum Emulator" data-cover-large="https://lh3.ggpht.com/9db26tF-ceJwl4oFZj45Pm5ZENJOeZWU9YmkOqtOt-Ndb2DdjULtmbv99FLaOhWZaGQ=w340" data-cover-small="https://lh3.ggpht.com/9db26tF-ceJwl4oFZj45Pm5ZENJOeZWU9YmkOqtOt-Ndb2DdjULtmbv99FLaOhWZaGQ=w170" src="https://lh3.ggpht.com/9db26tF-ceJwl4oFZj45Pm5ZENJOeZWU9YmkOqtOt-Ndb2DdjULtmbv99FLaOhWZaGQ=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=app.usp" aria-hidden="true" tabindex="-1"> <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="app.usp"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=app.usp" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=app.usp" title="USP - ZX Spectrum Emulator"> USP - ZX Spectrum Emulator <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=djdron" title="djdron">djdron</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="app.usp"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Unreal Speccy Portable has been ported to Windows/Linux/Mac/Symbian/Dingoo A320/Caanoo/WIZ/Android/PSP/Raspberry Pi/Chrome NaCl/Blackberry.<p>Features:<br>+ 48/128K (Pentagon multicolors)<br>+ HQ 44KHz/16 bit stereo sound emulation - AY/YM, Beeper<br>+ On-screen full 40 keys rubber zx-keyboard<br>+ Kempston/Sinclair/Cursor/QAOP Joysticks<br>+ Multi-touch support<br>+ Auto playing files<br>+ Beta Disk interface<br>+ RZX replays support<br>+ Tape with fast loading support<br>+ Snapshots<br>+ 100% speed - 50 FPS<br>+ Zooming &amp; Filtering options<br>+ Online sources integration: http://vtrdos.ru/ , http://worldofspectrum.org/ , http://www.rzxarchive.co.uk/ , http://zxaaa.untergrund.net/<p>Supported formats: sna, z80, szx, rzx, tap, tzx, csw, trd, scl, fdi, zip.<p>Authors : SMT, Dexus, Alone Coder, deathsoft.<br>Portable version : djdron, scor.<p>Keys in emulator:<br>menu - menu<br>back - toggle keyboard/joystick<br>arrows - joystick<br>dial - enter<br>camera - space<br>vol up/down - change volume<p>Found a bug or have any ideas? Report it here:<br>https://bitbucket.org/djdron/unrealspeccyp/issues<p>Join us on twitter:<br>https://twitter.com/UnrealSpeccyP<p>This program is free software: you can redistribute it and/or modify<br>it under the terms of the GNU General Public License as published by<br>the Free Software Foundation, either version 3 of the License, or<br>(at your option) any later version.<p>This program is distributed in the hope that it will be useful,<br>but WITHOUT ANY WARRANTY; without even the implied warranty of<br>MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br>GNU General Public License for more details.<p>You should have received a copy of the GNU General Public License<br>along with this program. If not, see http://www.gnu.org/licenses/gpl.html</p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=app.usp" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=app.usp" tabindex="-1"> <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" style="width: 86.72625541687012%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="app.usp"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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.fms.speccy" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.fms.speccy" data-server-cookie="CAIaGAoWEhQKDmNvbS5mbXMuc3BlY2N5EAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaGAoWEhQKDmNvbS5mbXMuc3BlY2N5EAEYAw==" data-uitype="500" href="/store/apps/details?id=com.fms.speccy" 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 class="cover-image" alt="Speccy - ZX Spectrum Emulator" data-cover-large="https://lh6.ggpht.com/FuIusofr-D8y_LUUruY1_rA5vEF31miEn4x2X3_PoF3FRVp72T3rAJNtUCB5r0KN92g=w340" data-cover-small="https://lh6.ggpht.com/FuIusofr-D8y_LUUruY1_rA5vEF31miEn4x2X3_PoF3FRVp72T3rAJNtUCB5r0KN92g=w170" src="https://lh6.ggpht.com/FuIusofr-D8y_LUUruY1_rA5vEF31miEn4x2X3_PoF3FRVp72T3rAJNtUCB5r0KN92g=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.fms.speccy" aria-hidden="true" tabindex="-1"> <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.fms.speccy"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.fms.speccy" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.fms.speccy" title="Speccy - ZX Spectrum Emulator"> Speccy - ZX Spectrum Emulator <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Garage+Research+Emulators" title="Garage Research Emulators">Garage Research Emulators</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.fms.speccy"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Speccy is a Sinclair ZX Spectrum home computer emulator. It will run software written for Spectrum 16k, 48k, 128k, +2, +2A, +3, Timex Sinclair, Pentagon, and Skorpion home computers. Features:<p>* Specifically optimized for Android devices, using ARM assembler and running at the same speed as a real Spectrum.<br>* Full screen portrait mode emulation, with options for simulating TV scanlines and fuzzy TV display.<br>* Records soundtrack to MIDI files.<br>* Includes both physical and touch screen keyboard support.<br>* Includes NetPlay functionality for playing over local network or Internet.<br>* Includes WorldOfSpectrum.org software archive browser.<p>* Supports snapshots (*.sna, *.z80).<br>* Supports loading from tapes (*.tap, *.tzx files), with authentic tape sounds.<br>* Supports TR-DOS and a variety of other disk image formats (*.trd, *.scl, *.fdi, *.dsk).<br>* Supports 128k and Fuller sound chips.<p>* Emulates Cursor, Protek, AGF, Kempston, and Sinclair Interface II joysticks, using touch screen, physical keyboard, or accelerometer.<br>* Emulates Kempston mouse.<br>* Emulates ZX Printer and other printers.<p>* Supports GoogleTV devices running Android 4.x (Jelly Bean), such as LG G2/G3.<br>* Supports Moga, iCade, Nyko PlayPad, and other Bluetooth and USB gamepads.<br>* Supports Xperia Play gaming buttons.<p>Speccy package itself does not contain any Spectrum programs. You should place your own Spectrum files onto the SD card before running Speccy.<p>Please, do not run any software you do not own with Speccy. The author cannot and will not tell you where to find free Spectrum programs.<p>Please, report any encountered problems here:<p>http://groups.google.com/group/emul8</p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.fms.speccy" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.fms.speccy" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.7 stars out of five stars "> <div class="current-rating" style="width: 73.56321811676025%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.fms.speccy"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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.reynoldssoft.sampler" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.reynoldssoft.sampler" data-server-cookie="CAIaIgogEh4KGGNvbS5yZXlub2xkc3NvZnQuc2FtcGxlchABGAM=" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaIgogEh4KGGNvbS5yZXlub2xkc3NvZnQuc2FtcGxlchABGAM=" data-uitype="500" href="/store/apps/details?id=com.reynoldssoft.sampler" 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 class="cover-image" alt="Rodent's Vengeance the Sampler" data-cover-large="https://lh5.ggpht.com/RtWV_kvBWnF_hW0-b7QE9UG3qEfWejxeQw-N1y6fFvlzu-wuICBh12_DkzhnS79lVWcY=w340" data-cover-small="https://lh5.ggpht.com/RtWV_kvBWnF_hW0-b7QE9UG3qEfWejxeQw-N1y6fFvlzu-wuICBh12_DkzhnS79lVWcY=w170" src="https://lh5.ggpht.com/RtWV_kvBWnF_hW0-b7QE9UG3qEfWejxeQw-N1y6fFvlzu-wuICBh12_DkzhnS79lVWcY=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.reynoldssoft.sampler" aria-hidden="true" tabindex="-1"> <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.reynoldssoft.sampler"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.reynoldssoft.sampler" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.reynoldssoft.sampler" title="Rodent's Vengeance the Sampler"> Rodent's Vengeance the Sampler <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=ReynoldsSoft" title="ReynoldsSoft">ReynoldsSoft</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.reynoldssoft.sampler"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Rodent&#39;s Vengeance Sampler is a rodent&#39;s Revenge clone. It is a subset of the game Rodent&#39;s Vengeance for Android and is intended to give the user an opportunity to try out its shared eight direction touch screen swipe interface. The touch interface does require practice and discipline, but I believe that not having to constantly look down at screen buttons or keyboard makes it the best possible option for supporting diagonal moves. Ultimately of course you are the one who will decide.<p>* implements diagonal, horizontal and vertical rodent moves!<br>* 5 levels of game play (levels 1 - 4, 6)<br>* rodent controlled by simple touch screen swipe gestures<br>* rodent may also be controlled by physical keyboard, using three interfaces<br>* current game saved when interrupted, or when you exit<br>* yarn activity can be turned off<br>* no advertizing! Play peacefully in the privacy of your own Android!</p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.reynoldssoft.sampler" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.reynoldssoft.sampler" tabindex="-1"> <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" style="width: 82.98507690429688%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.reynoldssoft.sampler"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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.dylanpdx.blockybird" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.dylanpdx.blockybird" data-server-cookie="CAIaIQofEh0KF2NvbS5keWxhbnBkeC5ibG9ja3liaXJkEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaIQofEh0KF2NvbS5keWxhbnBkeC5ibG9ja3liaXJkEAEYAw==" data-uitype="500" href="/store/apps/details?id=com.dylanpdx.blockybird" 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 class="cover-image" alt="Blocky Bird" data-cover-large="https://lh5.ggpht.com/1EyU1PoTgbLs-6rfIHBmKfTzRgRz-y0RvJ_Cu34hZ1yd5sBz1Nr53jXrHJ2loMVYvA=w340" data-cover-small="https://lh5.ggpht.com/1EyU1PoTgbLs-6rfIHBmKfTzRgRz-y0RvJ_Cu34hZ1yd5sBz1Nr53jXrHJ2loMVYvA=w170" src="https://lh5.ggpht.com/1EyU1PoTgbLs-6rfIHBmKfTzRgRz-y0RvJ_Cu34hZ1yd5sBz1Nr53jXrHJ2loMVYvA=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.dylanpdx.blockybird" aria-hidden="true" tabindex="-1"> <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.dylanpdx.blockybird"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.dylanpdx.blockybird" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.dylanpdx.blockybird" title="Blocky Bird"> Blocky Bird <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Dylan+Grinberg" title="Dylan Grinberg">Dylan Grinberg</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.dylanpdx.blockybird"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Blocky Bird! Yet another spin-off to the now deleted Flappy Bird!<p>Tap to &#39;flap&#39;!<br>Go through the obstacles!<p>Compete with your friends!</p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.dylanpdx.blockybird" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.dylanpdx.blockybird" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.8 stars out of five stars "> <div class="current-rating" style="width: 75.5555534362793%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.dylanpdx.blockybird"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> </div> </div> <div class="rec-cluster" data-server-cookie="CAMiKQgCEAMaIRIfChljb20uYmx1ZWZyb2dnYW1pbmcucG9wZGF0EAEYAygE" data-uitype="400"> <h1 class="heading">More from developer</h1> <div class="cards expandable"> <div class="card no-rationale square-cover apps small" data-docid="com.bluefroggaming.ghost_chicken" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.bluefroggaming.ghost_chicken" data-server-cookie="CAIaKgooEiYKIGNvbS5ibHVlZnJvZ2dhbWluZy5naG9zdF9jaGlja2VuEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaKgooEiYKIGNvbS5ibHVlZnJvZ2dhbWluZy5naG9zdF9jaGlja2VuEAEYAw==" 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 class="cover-image" alt="Ghost Chicken" 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-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=com.bluefroggaming.ghost_chicken" title="Ghost Chicken"> Ghost Chicken <span class="paragraph-end"></span> </a> </h2> <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" 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"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Enter the warped and kooky world of Ghost Chicken; a high-octane action game full of chills and thrills! Stretch the chicken’s neck to gobble up all the corn before time runs out. Release the chicken’s head to snap the neck back in. Be careful– creepy crawly bugs lurk in the dirt, so don’t let them bite! <p>Just in time for Halloween, Ghost Chicken throws you into a spooky world of ghoulishly challenging mazes that will make your head spin in fright! <p>• Test your speed and skill in the frantic Arcade Mode. <br>• Compete to set the high score in one of 4 difficulty modes. <br>• Unlock the devilishly tricky ‘Insane’ difficulty if you dare! <br>• Collect crazy power-ups to unleash awesome effects on your enemies. <br>• Tons of ghostly fun for all ages!<p>Keywords: Halloween, Ghost, Chicken, Arcade, Action, Spooky, Haunted, Creepy, Graveyard, Corn, Pac, Man, Retro, Game, Puzzle, Oils Well, Snake</p></p></p> <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" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.8 stars out of five stars "> <div class="current-rating" style="width: 75.23809432983398%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" 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"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> </div> </div> </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 id="footer-content"> <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">©2014 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="https://play.google.com/intl/en-US_us/about/device-terms.html" target="_blank"> Devices Terms of Sale</a> <a class="footer-link id-no-nav" href="https://support.google.com/googleplay/bin/answer.py?answer=1196018&amp;hl=en_US" 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> </div> </div></div><div class="loading" id="page-load-indicator"></div><div id="audio-player"><audio autoplay="autoplay" id="html5Player"></audio></div><script>(function(){window._sc='[[null,\42\42,\42/store\42,\42/store/account\42,\42/store/movies\42,\42/store/music\42,\42/store/books\42,\42/store/newsstand\42,\42/store/apps\42,\42/store/devices\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d0\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d4\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d1\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d6\42,null,\42https://encrypted.google.com/complete/search?client\\u003dpartner\\u0026partnerid\\u003dskyjam-store\\u0026ds\\u003dcse\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d3\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d5\42,null,\42/\42,\42/play/log?format\\u003djson\42,null,\42https://play.google.com/intl/en-US_us/about/play-terms.html\42,\42https://support.google.com/googleplay/bin/answer.py?topic\\u003d2450225\\u0026answer\\u003d2479637\\u0026hl\\u003den_US\42,\42/store/buy\42,\42/store/install\42,\42/store/getpurchaseoutcome\42,\42/wishlist\42,\42/movies\42,\42/music?authuser\42,\42/books\42,\42/newsstand\42,\42/apps\42,\42/store/xhr/enablegpr\42,\42/store/xhr/deletereview\42,\42/store/xhr/ructx\42,\42/store/xhr/getuseraddress\42,\42/store/submitreview\42,\42/store/addtocart\42,\42/store/xhr/updatecart\42,\42https://www.gstatic.com/play/store/web/swf/4musicplayer.swf\42,\42/store/xhr/rapcategories\42,\42/store/xhr/rapsubmit\42,\42/store/xhr/puc\42,\42/store/xhr/pulc\42,\42/store/xhr/getwatchembed\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d86400\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d0\42,null,\42/store/xhr/mul\42,\42/store/xhr/getdoc\42,\42http://support.google.com/mobile/?p\\u003dbooks_formats\42,\42http://support.google.com/mobile/?p\\u003dbooks_devices\42,\42http://support.google.com/mobile/?p\\u003dbooks_androidapp\42,\42http://support.google.com/mobile/?p\\u003dbooks_iosapp\42,\42http://support.google.com/googleplay/bin/answer.py?answer\\u003d1062502\\u0026topic\\u003d1187416\\u0026ctx\\u003dtopic\42,\42/store/apps/details?id\\u003dcom.google.android.apps.books\42,\42/store/apps/details?id\\u003dcom.google.android.music\42,\42/store/apps/details?id\\u003dcom.google.android.videos\42,\42/store/apps/details?id\\u003dcom.google.android.apps.magazines\42,\42/store/xhr/topupopts\42,\42/store/setuserdata\42,\42/store/xhr/buynoco\42,\42/store/apps/collection/editors_choice\42,\42/store/apps/category/GAME\42,\42/store/account\42,\42/redeem\42,\42/store/xhr/getnumcartitems\42,\42/store/cart?modTime\\u003d0\42,\42/store/xhr/cancelsub\42,\42/store/xhr/dfph\42,\42https://play.google.com/intl/en-US_us/about/giftcards\42,\42/store/movies/category/MOVIE\42,\42/store/movies/category/TV\42,\42/store/cancelpreorder\42,\42http://support.google.com/googleplay/devices\42,\42/settings\42,\42/store/ratereview\42,\42/store/getdevicepermissions\42,\42/store/xhr/hide\42,\42/store/getreviews\42,\42/store/movies/collection/promotion_collections_movie_studios\42,\42/store/movies/collection/promotion_collections_tv_networks\42,\42/store/xhr/canceldeviceorder\42,\42https://plus.google.com/\42,\42https://wallet.google.com/updateCreditCard\42,\42/store/books/collection/promotion_1000568_txb_product\42,\42/store/xhr/experimenttoggler\42,\42https://support.google.com/googleplay/bin/answer.py?answer\\u003d1141080\42,null,\42/store/onewayredeem\42,\42https://wallet.google.com/legaldocument?docId\\u003d0.buyertos/US/2/1/und\42,\42/store/xhr/getvariantrec\42,\42https://wallet.google.com/legaldocument?family\\u003d0.privacynotice\\u0026hl\\u003den_US\42,\42https://play.google.com/intl/en-US_us/about/redeem-terms.html\42,\42/store/xhr/prepur\42,\42/store/xhr/comppurch\42,\42/store/xhr/getsimilarcluster\42,\42/store/xhr/getreviewannotation\42,\42/store/xhr/dismisssug\42,\42/store/xhr/getartistalbums\42,\42/store/myplayactivity\42,\42/store/opensearch.xml\42,\42https://ageverification.google.co.kr/ageverification?cl\\u003d1\\u0026hl\\u003dko\\u0026authuser\42,\42https://support.google.com/websearch/answer/4358949?ref_topic\\u003d3285072\\u0026hl\\u003dko\42,\42https://support.google.com/googleplay/?p\\u003dreport_content\42,null,\42/store/order\42,\42https://play.google.com/intl/en-US_us/about/promo-terms.html\42,\42/store/xhr/gbp\42,\42/store/xhr/uninstall\42,\42/store/xhr/talentcontent\42,\42/store/approveitem\42,\42\42,\42/store/licenses/apps\42,\42/store/unapproveitem\42,\42/store/xhr/pglc\42,\42/store/xhr/assign\42]\n,1,1,[\42/store/search\42,\42Search\42]\n,\42UA-19995903-1\42,\42PROD\42,1,\42https://wallet.google.com/payments/widgets/instrument_creator.js\42,60000]\n';})();</script><script>(function(){window._uc='[null,\42\42,\42en\42,\42US\42,[[\0423f8ce17a\42,null,1,\42enable_loonie\42]\n,[\04272b063b1\42,null,1,\42enable_movies_chrome_app_integration\42]\n,[\42d661adf8\42,null,1,\42enable_enterprise_play_store\42]\n,[\04237ad289c\42,null,1,\42enable_hardware_cancel_redirect_on_success\42]\n,[\42cfc83a8f\42,null,1,\42enable_movie_device_setup_page\42]\n,[\429b884249\42,null,1,\42enable_strikethrough_price_in_book_cards\42]\n,[\429cd547a3\42,null,1,\42enable_enable_scs\42]\n,[\42b023b0c4\42,null,1,\42enable_music_preview_rights\42]\n,[\042628aa86c\42,null,1,\42enable_gift_card_payments_integrator_tokens\42]\n,[\0421e72ba8d\42,null,1,\42enable_flag_inappropriate\42]\n,[\04211cdcd88\42,null,1,\42enable_optimize_mobile\42]\n,[\4283a1c766\42,null,1,\42enable_grouping_app_permissions\42]\n,[\042196894ff\42,null,1,\42enable_books_consumer_rights_directive\42]\n,[\4283f335b0\42,null,1,\42enable_logging_to_odyssey\42]\n,[\42fd0884cc\42,null,1,\42enable_inapp_purchase_text\42]\n,[\42cd9bd9ce\42,null,1,\42enable_mobile_video_trailer\42]\n,[\0422b277ce0\42,null,1,\42enable_glass_discount\42]\n,[\42c57733ed\42,null,1,\42enable_talent_pages\42]\n,[\42b744e4cb\42,null,1,\42enable_signout_options_for_logout\42]\n,[\42e38df948\42,null,1,\42enable_finsky_wishlist_icon_adjust\42]\n,[\42c14f90b0\42,null,1,\42enable_corpus_menu_removal_for_mobile\42]\n,[\42f6caf8fb\42,null,1,\42enable_in_app_rap_fix\42]\n,[\42b0eb6535\42,null,1,\42enable_movies_subtitle_warning\42]\n]\n,0,null,0,null,null,[]\n,null,0,[\42nocache:laz\42,\42nocache:payments_flow_for_setup_stored_value\42,\42signed-out\42]\n,[5500133,5500047,5500130,5500028,5500117,5500146,5500079,5500149,5500128,5500118,5500138,5500011,5500125,5500120,5500143,5500123,5500101,5500098,5500111,5500084,5500112]\n,null,null,null,\42en-US\42]\n';})();</script><script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/3595310022-main_page_js_compiled_main_page_js.js"></script>
81
+ <script>window.pressPlayCalled = false;if (typeof window.gapi != 'undefined' && !window.pressPlayCalled){window.pressPlayCalled = true;pressPlay();}
82
+ </script><script type="text/javascript">(function(){var locale='en_US';window.___gcfg = {lang:locale,parsetags:'explicit'
83
+ };(function(){function onGapiLoad(){if (typeof window.gapi != 'undefined'){window.gapi.load('plus:plusone:card:gapi.iframes:gapi.iframes.style.common',function (){if (!window.pressPlayCalled){window.pressPlayCalled = true;pressPlay();}
84
+ window.gapi.plusone.go('body-content');window.gapi.plus.go();window.gapi.config.update('card/source','play.webstore');window.gapi.card.watch();window.gapi.iframes.getContext().restyleSelf({'show':'yes'});window.gapi.iframes.getContext().ready();});}
82
85
  }
83
- var po = document.createElement('script');po.type = 'text/javascript';po.async = true;po.src = 'https://apis.google.com/js/platform.js';if (!po.addEventListener){po.attachEvent('onload',doPlusOne);}else {po.addEventListener('load',doPlusOne,false);}
84
- var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(po,s);})();})();</script><script type="text/javascript">(function (){if (window.gapi && window.gapi.load){window.gapi.load('plus',function(){window.gapi.plus.go();});}
85
- })();</script><script type="text/javascript">(function (){if (window.gapi && window.gapi.load){window.gapi.load('card',function(){window.gapi.config.update('card/source','play.webstore');window.gapi.card.watch()});}
86
- })();</script><div class="loading" id="page-load-indicator"></div><div id="audio-player"><audio autoplay="autoplay" id="html5Player"></audio></div><script>(function(){window._sc='[[null,\42/\42,\42/store\42,\42/store/account\42,\42/store/movies\42,\42/store/music\42,\42/store/books\42,\42/store/newsstand\42,\42/store/apps\42,\42/store/devices\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d0\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d4\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d1\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d6\42,null,\42https://encrypted.google.com/complete/search?client\\u003dpartner\\u0026partnerid\\u003dskyjam-store\\u0026ds\\u003dcse\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d3\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d5\42,null,\42/\42,\42/log?format\\u003djson\42,null,\42https://play.google.com/intl/en-US_us/about/play-terms.html\42,\42https://support.google.com/googleplay/bin/answer.py?topic\\u003d2450225\\u0026answer\\u003d2479637\\u0026hl\\u003den_US\42,\42/store/buy\42,\42/store/install\42,\42/store/getpurchaseoutcome\42,\42/wishlist\42,\42/movies\42,\42/music?authuser\42,\42/books\42,\42/newsstand\42,\42/apps\42,\42/store/xhr/enablegpr\42,\42/store/xhr/deletereview\42,\42/store/xhr/ructx\42,\42/store/xhr/getuseraddress\42,\42/store/submitreview\42,\42/store/addtocart\42,\42/store/xhr/updatecart\42,\42https://www.gstatic.com/play/store/web/swf/4musicplayer.swf\42,\42/store/xhr/rapcategories\42,\42/store/xhr/rapsubmit\42,\42/store/xhr/puc\42,\42/store/xhr/pulc\42,\42/store/xhr/getwatchembed\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d86400\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d0\42,null,\42/store/xhr/mul\42,\42/store/xhr/getdoc\42,\42http://support.google.com/mobile/?p\\u003dbooks_formats\42,\42http://support.google.com/mobile/?p\\u003dbooks_devices\42,\42http://support.google.com/mobile/?p\\u003dbooks_androidapp\42,\42http://support.google.com/mobile/?p\\u003dbooks_iosapp\42,\42http://support.google.com/googleplay/bin/answer.py?answer\\u003d1062502\\u0026topic\\u003d1187416\\u0026ctx\\u003dtopic\42,\42/store/apps/details?id\\u003dcom.google.android.apps.books\42,\42/store/apps/details?id\\u003dcom.google.android.music\42,\42/store/apps/details?id\\u003dcom.google.android.videos\42,\42/store/apps/details?id\\u003dcom.google.android.apps.magazines\42,\42/store/xhr/topupopts\42,\42/store/setuserdata\42,\42/store/xhr/buynoco\42,\42/store/apps/collection/editors_choice\42,\42/store/apps/category/GAME\42,\42/store/account\42,\42/redeem\42,\42/store/xhr/getnumcartitems\42,\42/store/cart?modTime\\u003d0\42,\42/store/xhr/cancelsub\42,\42/store/xhr/dfph\42,\42https://play.google.com/intl/en-US_us/about/giftcards\42,\42/store/movies/category/MOVIE\42,\42/store/movies/category/TV\42,\42/store/cancelpreorder\42,\42http://support.google.com/googleplay/devices\42,\42/settings\42,\42/store/ratereview\42,\42/store/getdevicepermissions\42,\42/store/xhr/hide\42,\42/store/getreviews\42,\42/store/movies/collection/promotion_collections_movie_studios\42,\42/store/movies/collection/promotion_collections_tv_networks\42,\42/store/xhr/canceldeviceorder\42,\42https://plus.google.com/\42,\42https://wallet.google.com/updateCreditCard\42,\42/store/books/category/coll_1673\42,\42/store/xhr/experimenttoggler\42,\42https://support.google.com/googleplay/bin/answer.py?answer\\u003d1141080\42,null,\42/store/onewayredeem\42,\42https://wallet.google.com/legaldocument?docId\\u003d0.buyertos/US/2/1/und\42,\42/store/xhr/getvariantrec\42,\42https://wallet.google.com/legaldocument?family\\u003d0.privacynotice\\u0026hl\\u003den_US\42,\42https://play.google.com/intl/en-US_us/about/redeem-terms.html\42,\42/store/xhr/prepur\42,\42/store/xhr/comppurch\42,\42/store/xhr/getsimilarcluster\42,\42/store/xhr/getreviewannotation\42,\42/store/xhr/dismisssug\42,\42/store/xhr/getartistalbums\42,\42/store/myplayactivity\42,\42/store/opensearch.xml\42,\42https://ageverification.google.co.kr/ageverification?cl\\u003d1\\u0026hl\\u003dko\\u0026authuser\42,\42https://support.google.com/websearch/answer/4358949?ref_topic\\u003d3285072\\u0026hl\\u003dko\42,\42https://support.google.com/googleplay/?p\\u003dreport_content\42,null,\42/store/order\42]\n,1,1,[\42/store/search\42,\42Search\42]\n,\42UA-19995903-1\42,\42PROD\42]\n';})();</script><script>(function(){window._uc='[null,\42\42,\42en\42,\42US\42,[[\04237ad289c\42,null,1,\42enable_hardware_cancel_redirect_on_success\42]\n,[\42b023b0c4\42,null,1,\42enable_music_preview_rights\42]\n,[\42b744e4cb\42,null,1,\42enable_signout_options_for_logout\42]\n,[\0422196d13b\42,null,1,\42enable_glass_soft_bundles\42]\n,[\4283a1c766\42,null,1,\42enable_grouping_app_permissions\42]\n,[\0422b277ce0\42,null,1,\42enable_glass_discount\42]\n,[\429cd547a3\42,null,1,\42enable_enable_scs\42]\n,[\04211cdcd88\42,null,1,\42enable_optimize_mobile\42]\n,[\0421e72ba8d\42,null,1,\42enable_flag_inappropriate\42]\n,[\42cd9bd9ce\42,null,1,\42enable_mobile_video_trailer\42]\n,[\42e38df948\42,null,1,\42enable_finsky_wishlist_icon_adjust\42]\n,[\42fd0884cc\42,null,1,\42enable_inapp_purchase_text\42]\n,[\04272b063b1\42,null,1,\42enable_movies_chrome_app_integration\42]\n,[\42f6caf8fb\42,null,1,\42enable_in_app_rap_fix\42]\n,[\04266aa7673\42,null,1,\42enable_tv_season_subtitle\42]\n,[\0423f8ce17a\42,null,1,\42enable_loonie\42]\n,[\42b0eb6535\42,null,1,\42enable_movies_subtitle_warning\42]\n]\n,0,null,0,null,null,[]\n,null,0,[\42nocache:laz\42,\42signed-out\42]\n,[5500104,5500074,5500102,5500093,5500095,5500090,5500087,5500028,5500092,5500100,5500091,5500086,5500078]\n]\n';})();</script><script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/584612591-main_page_js_compiled_main_page_js.js"></script>
87
- <script>pressPlay();</script><script src="https://wallet.google.com/inapp/lib/buy.js"></script><script type="text/javascript">(function(){var locale='en';google.payments.inapp.preload({'locale' :locale
86
+ var po = document.createElement('script');po.type = 'text/javascript';po.async = true;po.src = 'https://apis.google.com/js/platform.js';if (!po.addEventListener){po.attachEvent('onload',onGapiLoad);}else {po.addEventListener('load',onGapiLoad,false);}
87
+ var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(po,s);})();})();</script><div id="instrument-manager-parent"></div><script src="https://wallet.google.com/inapp/lib/buy.js"></script><script type="text/javascript">(function(){var locale='en';google.payments.inapp.preload({'locale' :locale
88
88
  });})();</script><script type="text/javascript">(function(){var tracking_id='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)
89
- })(window,document,'script','//www.google-analytics.com/analytics.js','play_ga');play_ga('create',tracking_id);play_ga('send','pageview');})();</script></body></html><div> <script>(function(){var fu=true;var pt='';var ab='';var lmt='';var curl='https://play.google.com/store/apps/details?id\75com.bluefroggaming.popdat';var nbp='[]\n';var sc='CAESJQgFIiESHwoZY29tLmJsdWVmcm9nZ2FtaW5nLnBvcGRhdBABGAM\075';var pgj=false;var di='com.bluefroggaming.popdat';var du=2;if (fu){if (pt){upt(pt);}
89
+ })(window,document,'script','//www.google-analytics.com/analytics.js','play_ga');play_ga('create',tracking_id);play_ga('send','pageview');})();</script></body></html><div> <script>(function(){var fu=true;var pt='';var ab='';var lmt='';var curl='https://play.google.com/store/apps/details?id\75com.bluefroggaming.popdat';var nbp='[]\n';var sc='CAESJQgFIiESHwoZY29tLmJsdWVmcm9nZ2FtaW5nLnBvcGRhdBABGAM\075';var pgj=false;var di='com.bluefroggaming.popdat';var du=2;window.updateClient = function(){if (fu){if (pt){upt(pt);}
90
90
  if (ab){uab(ab);}
91
91
  if (lmt){ihc(lmt);}
92
- if (nbp){snbp(nbp);}
92
+ if (nbp && typeof snbp != 'undefined'){snbp(nbp);}
93
93
  if (curl){sglc(curl);}
94
94
  if (pgj){if (gapi && gapi.plus && gapi.plus.go){gapi.plus.go();}
95
95
  }
96
96
  upba(di,du);usc(sc);}
97
+ }
98
+ if (window.pressPlayCalled){window.updateClient();}
97
99
  })();</script> </div>
@@ -3,95 +3,98 @@
3
3
  font-family: 'Roboto';
4
4
  font-style: normal;
5
5
  font-weight: 100;
6
- src: local('Roboto Thin'), local('Roboto-Thin'), url(//ssl.gstatic.com/fonts/roboto/v11/Jzo62I39jc0gQRrbndN6nfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
6
+ src: local('Roboto Thin'), local('Roboto-Thin'), url(//fonts.gstatic.com/s/roboto/v14/Jzo62I39jc0gQRrbndN6nfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
7
7
  }
8
8
  @font-face {
9
9
  font-family: 'Roboto';
10
10
  font-style: normal;
11
11
  font-weight: 300;
12
- src: local('Roboto Light'), local('Roboto-Light'), url(//ssl.gstatic.com/fonts/roboto/v11/Hgo13k-tfSpn0qi1SFdUfaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
12
+ src: local('Roboto Light'), local('Roboto-Light'), url(//fonts.gstatic.com/s/roboto/v14/Hgo13k-tfSpn0qi1SFdUfaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
13
13
  }
14
14
  @font-face {
15
15
  font-family: 'Roboto';
16
16
  font-style: normal;
17
17
  font-weight: 400;
18
- src: local('Roboto Regular'), local('Roboto-Regular'), url(//ssl.gstatic.com/fonts/roboto/v11/zN7GBFwfMP4uA6AR0HCoLQ.ttf) format('truetype');
18
+ src: local('Roboto Regular'), local('Roboto-Regular'), url(//fonts.gstatic.com/s/roboto/v14/zN7GBFwfMP4uA6AR0HCoLQ.ttf) format('truetype');
19
19
  }
20
20
  @font-face {
21
21
  font-family: 'Roboto';
22
22
  font-style: normal;
23
23
  font-weight: 500;
24
- src: local('Roboto Medium'), local('Roboto-Medium'), url(//ssl.gstatic.com/fonts/roboto/v11/RxZJdnzeo3R5zSexge8UUaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
24
+ src: local('Roboto Medium'), local('Roboto-Medium'), url(//fonts.gstatic.com/s/roboto/v14/RxZJdnzeo3R5zSexge8UUaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
25
25
  }
26
26
  @font-face {
27
27
  font-family: 'Roboto';
28
28
  font-style: normal;
29
29
  font-weight: 700;
30
- src: local('Roboto Bold'), local('Roboto-Bold'), url(//ssl.gstatic.com/fonts/roboto/v11/d-6IYplOFocCacKzxwXSOKCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
30
+ src: local('Roboto Bold'), local('Roboto-Bold'), url(//fonts.gstatic.com/s/roboto/v14/d-6IYplOFocCacKzxwXSOKCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
31
31
  }
32
32
  @font-face {
33
33
  font-family: 'Roboto';
34
34
  font-style: italic;
35
35
  font-weight: 100;
36
- src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(//ssl.gstatic.com/fonts/roboto/v11/12mE4jfMSBTmg-81EiS-YS3USBnSvpkopQaUR-2r7iU.ttf) format('truetype');
36
+ src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(//fonts.gstatic.com/s/roboto/v14/12mE4jfMSBTmg-81EiS-YS3USBnSvpkopQaUR-2r7iU.ttf) format('truetype');
37
37
  }
38
38
  @font-face {
39
39
  font-family: 'Roboto';
40
40
  font-style: italic;
41
41
  font-weight: 300;
42
- src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url(//ssl.gstatic.com/fonts/roboto/v11/7m8l7TlFO-S3VkhHuR0at50EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
42
+ src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url(//fonts.gstatic.com/s/roboto/v14/7m8l7TlFO-S3VkhHuR0at50EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
43
43
  }
44
44
  @font-face {
45
45
  font-family: 'Roboto';
46
46
  font-style: italic;
47
47
  font-weight: 400;
48
- src: local('Roboto Italic'), local('Roboto-Italic'), url(//ssl.gstatic.com/fonts/roboto/v11/W4wDsBUluyw0tK3tykhXEfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
48
+ src: local('Roboto Italic'), local('Roboto-Italic'), url(//fonts.gstatic.com/s/roboto/v14/W4wDsBUluyw0tK3tykhXEfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
49
49
  }
50
50
  @font-face {
51
51
  font-family: 'Roboto Slab';
52
52
  font-style: normal;
53
53
  font-weight: 100;
54
- src: local('Roboto Slab Thin'), local('RobotoSlab-Thin'), url(//ssl.gstatic.com/fonts/robotoslab/v3/MEz38VLIFL-t46JUtkIEgH4UHu-c0cTZKOwO_f6u1Os.ttf) format('truetype');
54
+ src: local('Roboto Slab Thin'), local('RobotoSlab-Thin'), url(//fonts.gstatic.com/s/robotoslab/v6/MEz38VLIFL-t46JUtkIEgH4UHu-c0cTZKOwO_f6u1Os.ttf) format('truetype');
55
55
  }
56
56
  @font-face {
57
57
  font-family: 'Roboto Slab';
58
58
  font-style: normal;
59
59
  font-weight: 300;
60
- src: local('Roboto Slab Light'), local('RobotoSlab-Light'), url(//ssl.gstatic.com/fonts/robotoslab/v3/dazS1PrQQuCxC3iOAJFEJbfB31yxOzP-czbf6AAKCVo.ttf) format('truetype');
60
+ src: local('Roboto Slab Light'), local('RobotoSlab-Light'), url(//fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJbfB31yxOzP-czbf6AAKCVo.ttf) format('truetype');
61
61
  }
62
62
  @font-face {
63
63
  font-family: 'Roboto Slab';
64
64
  font-style: normal;
65
65
  font-weight: 400;
66
- src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(//ssl.gstatic.com/fonts/robotoslab/v3/y7lebkjgREBJK96VQi37Zp0EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
66
+ src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(//fonts.gstatic.com/s/robotoslab/v6/y7lebkjgREBJK96VQi37Zp0EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
67
67
  }
68
68
  @font-face {
69
69
  font-family: 'Roboto Slab';
70
70
  font-style: normal;
71
71
  font-weight: 700;
72
- src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(//ssl.gstatic.com/fonts/robotoslab/v3/dazS1PrQQuCxC3iOAJFEJZ_TkvowlIOtbR7ePgFOpF4.ttf) format('truetype');
72
+ src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(//fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJZ_TkvowlIOtbR7ePgFOpF4.ttf) format('truetype');
73
73
  }
74
- </style><link rel="stylesheet" href="https://www.gstatic.com/play/store/web/css/1944380881-lowlife_css_ltr.css">
75
- <link href="//ssl.gstatic.com/android/market_images/web/favicon.ico" rel="shortcut icon"><script type="text/javascript"></script><title id="main-title">Evernote - Android Apps on Google Play</title><meta content="★ New York Times ‘Top 10 Must-Have App’, Winner: TechCrunch Crunchies, Mashable Awards and the Webbys. ★ &lt;p&gt;Evernote is an easy-to-use, free app that helps you rememb..." name="Description"><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=in" hreflang="in" 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=tl" hreflang="tl" 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=fr_BE" hreflang="fr_BE" 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_FR" hreflang="fr_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=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=nl_BE" hreflang="nl_BE" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=nl_NL" hreflang="nl_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=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"></head><body class="no-focus-outline" data-page-server-cookie=""><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="http://www.google.com/intl/en/options/"><u>More</u> &raquo;</a></nobr></div><div style="position:fixed;top:-100000px;left:-100000px;opacity:0" id="offscreen-renderer"></div><div class="wrapper-with-footer" id="wrapper"><div style="display:block;visibility:hidden" class="nav-container"> <span class="show-all-hover-zone"> <span class="hover-arrow"></span> </span> <ul class="nav" role="navigation"> <li class="nav-list-item apps" data-backend="3" 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/collection/editors_choice"> Editors' Choice </a> </li> </ul> </li> <li class="nav-list-item movies-tv" data-backend="4" 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/MOVIE"> Movies </a> </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/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 music" data-backend="2" 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 books" data-backend="1" 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_1673"> Textbooks </a> </li> </ul> </li> <li class="nav-list-item magazines" data-backend="6" 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"> 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 devices" data-backend="5" 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 store" data-backend="0" 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"> Store </span> </span> </a> </li> <li class="store"> <ul class="sub-nav id-sub-nav-store"> <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" data-uitype="125"> <a class="sub-nav-link id-no-menu-change id-no-nav" href="https://play.google.com/intl/en-US_us/about/giftcards"> Buy gift card </a> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen"> <button class="sub-nav-link id-no-menu-change topup-link"> Buy Google Play credit </button> </li> </ul> </li><li> </li> </ul> </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 type="text/javascript" src="https://www.gstatic.com/play/store/web/js/3827809583-jquery_js_compiled_jquery_js.js"></script>
76
- <script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/4182022020-initial_page_js_compiled_initial_page_js.js"></script>
77
- <script>initializeApp();</script><div class="action-bar-container" role="navigation" jsl="$t t-NjQXl_7dol8;$x 0;" style="display:none"> <div class="action-bar-inner"> <div jsl="$x 1;"> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> </div> </div> </div><div class="id-body-content-beginning" aria-labelledby="main-title" tabindex="-1"></div><div 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"><meta content="https://www.gstatic.com/android/market_images/plus/play_stream_logo.png" itemprop="logoImageUrl"><meta content="https://play.google.com" itemprop="logoHrefUrl"><div class="details-wrapper apps square-cover id-track-partial-impression" data-docid="com.evernote" data-server-cookie="CAIaFgoUEhIKDGNvbS5ldmVybm90ZRABGAM=" data-uitype="209"> <div class="details-info"> <div class="cover-container"> <img class="cover-image" src="https://lh3.ggpht.com/si0cgkp2rkVX5JhhBYrtZ4cy2I1hZcrx8aiz-v8MjvPykfhT7-YAM2B8MNi0OCF9AQ=w300" alt="Cover art" aria-hidden="true" itemprop="image"> </div> <div class="info-container"> <div class="document-title" itemprop="name"> <div>Evernote</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">- June 26, 2014</div> </div> <div> <a class="document-subtitle category" href="/store/apps/category/PRODUCTIVITY"> <span itemprop="genre">Productivity</span> </a> </div> <div class="details-actions"> <span class="buy-button-container apps medium play-button" data-docid="com.evernote"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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="" itemprop="previewUrl"> <meta content="" itemprop="offerType"> <meta content="0" itemprop="price"> <meta content="" itemprop="description"> <span itemprop="seller" itemscope="itemscope" itemtype="http://schema.org/Organization"> <meta content="Android" itemprop="name"> </span> </span> </span> <span>Install</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.evernote"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> <div class="id-wishlist-display wishlist-display"> <div class="wishlist-container" data-enable-wishlist-icon-center="true" data-server-cookie="CAIaFgoUEhIKDGNvbS5ldmVybm90ZRABGAM=" data-uitype="203"> <button class="play-button wishlist-content wishlist-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="CAIaFgoUEhIKDGNvbS5ldmVybm90ZRABGAM=" data-uitype="204"> Add to Wishlist </div> <div class="wishlist-text-default wishlist-text-adding"> Adding... </div> <div class="wishlist-text-default wishlist-text-added id-track-impression"> Added to Wishlist </div> <div class="wishlist-text-default wishlist-text-remove id-track-click" data-server-cookie="CAIaFgoUEhIKDGNvbS5ldmVybm90ZRABGAM=" data-uitype="205"> Remove </div> <div class="wishlist-text-default wishlist-text-removing"> Removing... </div> </div> </button> </div> </div> </div> <div class="app-compatibility"> <div class="app-compatibility-initial" style="display:none"> <div class="compatibility-loading compatibility-image"></div> <span> Loading device compatibility... </span> </div> <div class="app-compatibility-final" style="display:none"> <div class="id-app-compatibility-icon compatibility-image"></div> </div> <div class="app-compatibility-device-list" style="display:none"></div> </div> <div class="inapp-msg">Offers in-app purchases</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" style="width: 92.8581428527832%"></div> </div> </div> <div class="stars-count"> (<span class="reviewers-small"></span>987,819) </div> <div> <span class="badge"> <meta content="https://ssl.gstatic.com/android/market_images/badges/editorschoice_ann.png" itemprop="editorsChoiceBadgeUrl"> <a href="/store/apps/collection/editors_choice"> <img src="https://lh4.ggpht.com/JY4J8vOWIddiNyOGCsmzbjNPmFYgGlBpRnPaPlgKxGdy41ltzp_yTx_xO-SZkJZHB3Ci=w14" aria-hidden="true"> <span class="badge-title">Editors' Choice</span> </a> </span><span class="badge"> <meta content="https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png" itemprop="topDeveloperBadgeUrl"> <img src="https://lh3.ggpht.com/STkLA3lthJ3mrb1mScEIdKgag30BABVWAz3m-zTnwTeUShZIZz8fAkQR0tgCe4GLSEY=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 (gapi && gapi.plusone){gapi.plusone.go("body-content");}
78
- </script> </div> </div> <script>(function(){var docid='com.evernote';if (typeof fci !== 'undefined'){fci(docid);}else {jQuery(document).ready(function(){fci(docid);});}
79
- })();</script> </div> </div> <div class="details-section screenshots" aria-hidden="true"> <div class="details-section-contents"> <div class="details-section-body expandable"> <div class="thumbnails-wrapper"> <div class="thumbnails" data-expand-target="thumbnails"> <span class="details-trailer"> <span class="video-image-wrapper"> <img class="video-image" src="//i.ytimg.com/vi/Ag_IGEgAa9M/hqdefault.jpg"> </span> <span class="preview-overlay-container" data-docid="com.evernote" data-video-url="https://www.youtube.com/embed/Ag_IGEgAa9M?ps=play&amp;vq=large&amp;rel=0&amp;autohide=1&amp;showinfo=0&amp;autoplay=1"> <span class="play-action-container" data-video-url="https://www.youtube.com/embed/Ag_IGEgAa9M?ps=play&amp;vq=large&amp;rel=0&amp;autohide=1&amp;showinfo=0&amp;autoplay=1"> <span class="play-action"></span> </span> </span> </span> <img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-0" src="https://lh3.ggpht.com/-uAQsDoqxCpENdxqX9PJ8uZMHVno-q_j7ys2t0u7ExRh9T5Lv839rIkGSrMNQ37SLX84=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-1" src="https://lh6.ggpht.com/nkot7aK-feeHWYMVFVesncWpwlc0u1qbs0XTrnpdp0agBSjIcngVBWjdYac02I48pA=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-2" src="https://lh5.ggpht.com/rodyOgoE6ckOEeWWqwMmkc8A_gQAdbPoUWxHsmjhRQh3pVDzaMOw4INtVqWCKetPq0o=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-3" src="https://lh4.ggpht.com/1taR7CXMM0NQxKFu_dkcfZoRKRm2TxpRubI2pUkT2rDuxcKp1QNAUgujIVQsAVtkL1w=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-4" src="https://lh3.ggpht.com/pSDOKGKQcC1GdEwcwkg8GR_s9vGkmsAis2cjgiioZRXh4DFjr0OWmwywEuQcwCo5mc8=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-5" src="https://lh4.ggpht.com/fCsV4Ngg32sUbr95rX2_eL-1OnW19cqsRdXmYhAJYYipS4oex2Ea8cwayUg_r1nJQy4=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-6" src="https://lh6.ggpht.com/kMxyXDioJ0g3Jpo8KnbUrts5XoIXHN_MKIRGzUzOgX8iW7ej_4r_L_0wWHGpFpx9jQ=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-7" src="https://lh4.ggpht.com/IG9xzoi6R6f0DlqKUHZWe3xTovKhzLZQWLpzU73s2D6nDRFrSrRtFKIOST5K8ksPgw=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-8" src="https://lh4.ggpht.com/RAVDjjjs_A0encFlwkAHiSn0afYnjmSgRx_p3WYPh9gvxJct3SoxiKE0F-sQNBnCaA=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-9" src="https://lh3.ggpht.com/zk3wB45O90a7qWe8LaXOpCJckFpS-Ukkih38Icq9SCry5pvmJfq0qpocuxZxXSYRJg=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-10" src="https://lh3.ggpht.com/xtSyEJsSKSMSjiVmtfZIQGxFI6T690aKJy4e6MhVGiFzOk44YCFcLkkhMDWjSqi3n_E=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-11" src="https://lh4.ggpht.com/2SMJhH9xCIpEvTlTevsMZI9xE2L_mWs79g1KyuGJ4kZ4VLP2NTu9UwKTndx6cRUkcz4=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-12" src="https://lh4.ggpht.com/a2dX7OdrMonXVW1jnBX1MAx6GlCW3DMwJSRPp787QQZYL_Nj0XmfTvWVr7OA0j4O3Q=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-13" src="https://lh5.ggpht.com/g9J-W-kAVR-FoSmuU3cPJYgiLLXJO3p9gbp-CL1upicwlyoyD3RPvGXhmExSNQIWIA=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-14" src="https://lh5.ggpht.com/EoPwnSqrjemPIv2TpBYY5GFFa6pQgVZZbiS7xFUbJgzND9WnvaNzRk9cE67NB08ERq8=h310" itemprop="screenshot"> </div> </div> <div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-0" data-expand-to="full-screenshot-1" src="https://lh3.ggpht.com/-uAQsDoqxCpENdxqX9PJ8uZMHVno-q_j7ys2t0u7ExRh9T5Lv839rIkGSrMNQ37SLX84=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-1" data-expand-to="full-screenshot-2" src="https://lh6.ggpht.com/nkot7aK-feeHWYMVFVesncWpwlc0u1qbs0XTrnpdp0agBSjIcngVBWjdYac02I48pA=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-2" data-expand-to="full-screenshot-3" src="https://lh5.ggpht.com/rodyOgoE6ckOEeWWqwMmkc8A_gQAdbPoUWxHsmjhRQh3pVDzaMOw4INtVqWCKetPq0o=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-3" data-expand-to="full-screenshot-4" src="https://lh4.ggpht.com/1taR7CXMM0NQxKFu_dkcfZoRKRm2TxpRubI2pUkT2rDuxcKp1QNAUgujIVQsAVtkL1w=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-4" data-expand-to="full-screenshot-5" src="https://lh3.ggpht.com/pSDOKGKQcC1GdEwcwkg8GR_s9vGkmsAis2cjgiioZRXh4DFjr0OWmwywEuQcwCo5mc8=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-5" data-expand-to="full-screenshot-6" src="https://lh4.ggpht.com/fCsV4Ngg32sUbr95rX2_eL-1OnW19cqsRdXmYhAJYYipS4oex2Ea8cwayUg_r1nJQy4=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-6" data-expand-to="full-screenshot-7" src="https://lh6.ggpht.com/kMxyXDioJ0g3Jpo8KnbUrts5XoIXHN_MKIRGzUzOgX8iW7ej_4r_L_0wWHGpFpx9jQ=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-7" data-expand-to="full-screenshot-8" src="https://lh4.ggpht.com/IG9xzoi6R6f0DlqKUHZWe3xTovKhzLZQWLpzU73s2D6nDRFrSrRtFKIOST5K8ksPgw=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-8" data-expand-to="full-screenshot-9" src="https://lh4.ggpht.com/RAVDjjjs_A0encFlwkAHiSn0afYnjmSgRx_p3WYPh9gvxJct3SoxiKE0F-sQNBnCaA=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-9" data-expand-to="full-screenshot-10" src="https://lh3.ggpht.com/zk3wB45O90a7qWe8LaXOpCJckFpS-Ukkih38Icq9SCry5pvmJfq0qpocuxZxXSYRJg=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-10" data-expand-to="full-screenshot-11" src="https://lh3.ggpht.com/xtSyEJsSKSMSjiVmtfZIQGxFI6T690aKJy4e6MhVGiFzOk44YCFcLkkhMDWjSqi3n_E=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-11" data-expand-to="full-screenshot-12" src="https://lh4.ggpht.com/2SMJhH9xCIpEvTlTevsMZI9xE2L_mWs79g1KyuGJ4kZ4VLP2NTu9UwKTndx6cRUkcz4=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-12" data-expand-to="full-screenshot-13" src="https://lh4.ggpht.com/a2dX7OdrMonXVW1jnBX1MAx6GlCW3DMwJSRPp787QQZYL_Nj0XmfTvWVr7OA0j4O3Q=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-13" data-expand-to="full-screenshot-14" src="https://lh5.ggpht.com/g9J-W-kAVR-FoSmuU3cPJYgiLLXJO3p9gbp-CL1upicwlyoyD3RPvGXhmExSNQIWIA=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-14" data-expand-to="thumbnails" src="https://lh5.ggpht.com/EoPwnSqrjemPIv2TpBYY5GFFa6pQgVZZbiS7xFUbJgzND9WnvaNzRk9cE67NB08ERq8=h900"> </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" data-show-use-buffer="true"> <div class="heading"> Description </div> <div class="show-more-content text-body" itemprop="description"> <div class="id-app-orig-desc">★ New York Times ‘Top 10 Must-Have App’, Winner: TechCrunch Crunchies, Mashable Awards and the Webbys. ★ <p>Evernote is an easy-to-use, free app that helps you remember everything across all of the devices you use. Stay organized, save your ideas and improve productivity. Evernote lets you take notes, capture photos, create to-do lists, record voice reminders--and makes these notes completely searchable, whether you are at home, at work, or on the go. <p>Key Features:<br>- Sync all of your notes across the computers and devices you use<br>- Create and edit text notes, to-dos and task lists <br>- Add handwriting and sketches to your notes<br>- Save, sync and share files <br>- Search for text inside images<br>- Organize notes by notebooks and tags<br>- Email notes and save tweets to your Evernote account<br>- Works with Evernote Business: Capture, browse, search, and share Business Notes and Business Notebooks from your smartphone or tablet.<br>- Connect Evernote to other apps and products you use<br>- Share notes with friends and colleagues via Facebook and Twitter<br>★ Premium feature: take notebooks offline to access them anytime <br>★ Premium feature: allow others to edit your notebooks<br>★ Premium feature: add a PIN lock to your Evernote app<p>Here are some ways to use Evernote for your personal and professional life:<br>- Research smarter: snap photos of whiteboards and books<br>- Take meeting and class notes, draft agendas and research notes<br>- Plan a trip: keep track of travel plans, plane tickets and passports<br>- Organize and save recipes; search by ingredients later<br>- Create a grocery list or task list and check things off as you go<br>- View web pages saved in Evernote on your desktop<br>- Capture ideas and inspiration on the go<br>- Access files and notes you create on your phone from your desktop<br>- Keep track of products and prices for comparison shopping purposes<br>- Keep finances in order: save receipts, bills and contracts<br>- Reduce paper clutter by taking snapshots of restaurant menus, business cards and labels<br>- Use Evernote as part of your GTD system to help you stay organized<br>- To get the most out of your Evernote experience, download it on all of the computers and phones that you use.<p>Evernote is available on any computer, phone and tablet device.<p>More information about permissions at:<br><a href="https://www.google.com/url?q=http://evernote.com/privacy/data_usage.php&amp;sa=D&amp;usg=AFQjCNFlUahHSnW-ynRsrqd6cr1kxrsccA" target="_blank">http://evernote.com/privacy/data_usage.php</a><p><br>Learn more: <a href="https://www.google.com/url?q=http://www.evernote.com/about/getting_started/&amp;sa=D&amp;usg=AFQjCNFFdb7DO02Xm4QNNC36yfzvwKK8og" target="_blank">http://www.evernote.com/about/getting_started/</a></div> <div class="show-more-end"></div> </div> <div> <button class="play-button show-more small"> Read more </button> <button class="play-button expand-close"> <div class="close-image"> </div> </button> </div> </div> <div class="details-section-divider"></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="review-help unallowed-app-review-container" data-unallowed-docid="com.evernote"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> <span class="unallowed-app-review id-unowned-app"> You must install this app before submitting a review. </span> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="review-help id-gplus-signup"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> Google Play reviews now use Google+ so it's easier to see opinions from people you care about. New reviews will be publicly linked to your Google+ profile. Your name on previous reviews now appears as "A Google User". </div> <div class="review-row"> <div class="review-action-button-container"> <a class="play-button id-no-nav apps" href="https://plus.google.com/up/accounts/upgrade?gpsrc=gpwr0&amp;continue=https://play.google.com/store/apps/details?id%3Dcom.evernote"> Sign up for Google+ </a> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="review-help id-gpr-onboard"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> Google Play reviews now use Google+ so it's easier to see opinions from people you care about. New reviews will be publicly linked to your Google+ profile. Your name on previous reviews now appears as "A Google User". </div> <div class="review-row"> <div class="review-action-button-container"> <button class="play-button id-enable-gpr apps"> Continue </button> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="write-review-panel"> <div> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> <div class="review-row-header"> Write a review </div> </div> <div class="review-row"> <div class="write-review-title-container"> <input class="review-input-text-box write-review-title" maxlength="75" type="text"> </div> </div> <div class="review-row"> <div class="write-review-comment-container"> <textarea class="review-input-text-box write-review-comment" maxlength="1200"></textarea> </div> </div> <div class="review-row"> <div class="review-stars-container"> <div class="neutral write-star-rating-container"> <div class="small-star"> <div class="star-rating-editable-container"> <span class="star-common first-star"></span> <span class="star-common second-star"></span> <span class="star-common third-star"></span> <span class="star-common fourth-star"></span> <span class="star-common fifth-star"></span> </div> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> <div class="star-rating-aria"> <button class="first-star" aria-label=" Rate one star out of five stars "></button> <button class="second-star" aria-label=" Rate two stars out of five stars "></button> <button class="third-star" aria-label=" Rate three stars out of five stars "></button> <button class="fourth-star" aria-label=" Rate four stars out of five stars "></button> <button class="fifth-star" aria-label=" Rate five stars out of five stars "></button> </div> </div> </div> <span class="alert-message-container"> <div class="alert-image-container"></div> <div class="alert-review-text-container"></div> </span> </div> <div class="review-action-button-container"> <button class="id-submit-review play-button apps disabled"> Submit Review </button> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> </div> <div style="display:none" class="my-review-panel" data-reviewid=""> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-image-row"> <div> <span> </span> </div> </div> <div class="review-row"> <div class="review-row-header"> My review </div> </div> <div class="review-row"> <span class="review-title"></span> </div> <div class="review-row"> <div class="review-stars-container"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> <div class="review-action-button-container"> <button class="play-button icon-button small review-action-button-gap"> <div class="review-trash-button-icon"></div> </button> </div> </div> <div class="review-row"> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="id-selected-review-panel" data-reviewid=""> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-image-row"> <div> <span> </span> </div> </div> <div class="review-row"> <div class="review-row-header"> <span> Review from <span style="display:none"> </span> </span> </div> </div> <div class="review-row"> <span class="review-title"></span> </div> <div class="review-row"> <div class="review-stars-container"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> </div> <div class="review-row"> </div> </div> <div class="write-review-triangle-container"></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="dropdown-menu-container review-filter id-review-sort-filter"> <div class="dropdown-menu"> <span class="displayed-child">Helpfulness</span> <div class="dropdown-icon"></div> </div> <div class="dropdown-menu-children"> <div class="dropdown-child" data-dropdown-value="0">Newest</div><div class="dropdown-child" data-dropdown-value="1">Rating</div><div class="dropdown-child selected" data-dropdown-value="2">Helpfulness</div> </div> </div> </div> <button class="id-write-button play-button"> <span class="write-review-button-icon"></span> <span> Write a 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.64290714263916" itemprop="ratingValue"> <meta content="987819" itemprop="ratingCount"> <div class="score">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" style="width: 92.8581428527832%"></div> </div> </div> <div class="reviews-stats"> <span class="reviewers-small"></span> <span class="reviews-num">987,819</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">731,924</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">199,038</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:4%"></span> <span class="bar-number">31,885</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">9,166</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:2%"></span> <span class="bar-number">15,590</span> </div> </div> </div> <div class="featured-review" data-expand-to="user-0" data-reviewid="lg:AOqpTOEl_joRLBdNEOwPem-5G20VgFHiDC4bOPbBTtBy1QtTrE8akPcflVb4XBsHnQnrITAOaFDSzE2ydYj0tw"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" style="width: 100%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Needs tab support and evernote to evernote sharing</span> Everything that need to be saved permanently goes here, excluding office docs, even contacts. Google Contacts is a third class service that messes up contact cards horribly, does not sync when required, and even deletes contact data. Nothing I save in Evernote gets lost. The pictures taken go here too. </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-1" data-reviewid="gp:AOqpTOG73VLUsHPgWZJznNQrEODvxhf9rg1vP21-8SvTUhrU6IdEDwWT48COWaoPgGlMD4Xi9eCCnDKc8apS4A"> <div class="author"> <a href="/store/people/details?id=110577086480087351993"> <img class="author-image" alt="Brandon W avatar image" src="https://lh3.googleusercontent.com/-xzU0Ualkngg/AAAAAAAAAAI/AAAAAAAAM_g/KqRJFWQlPsc/w48-c-h48/photo.jpg"> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=110577086480087351993">Brandon W</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" style="width: 100%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">I have nightmares about my Evernote getting erased</span> After 10 years and possibly $10k in the latest and greatest devices .. Seriously, Any and every device I have.. From my old-skoo LG Lucid POS - To my Galaxys 2, 3, 4..Note 2..Tab 2.. ASUS, know what they all got? EVERNOTE... I got a 4 PCs.. Know what i use on those though? OH.. Since u ask.. EVERNOTE! can read all notes from ANYWHERE. it brilliant... Simply brilliant. 5+ stars to the people that commit to this lifesaving, life organizing, life reminding app. Keep it up.. Forreal! </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-2" data-reviewid="gp:AOqpTOF4jFtcma4bcG5De5n_PPbY5tcE0tjpbnO2ADDP8XRUtGYLwi194qKZ-c2SKDKgcN0QMHw-5MX6DcD_UQ"> <div class="author"> <a href="/store/people/details?id=118342279922680601261"> <img class="author-image" alt="Memphis Ye avatar image" src="https://lh6.googleusercontent.com/-VuCRVLPewiY/AAAAAAAAAAI/AAAAAAAAAD8/P7YUeb_xQAw/w48-c-h48/photo.jpg"> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=118342279922680601261">Memphis Ye</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" style="width: 100%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">New design is awesome.</span> For many years, design of evernote in Android is bad. But this time, everything changes with the debut of Android L. Love u guys. </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-3" data-reviewid="gp:AOqpTOFc6aId8WHLSjtunFcq1QjHIjOcFl4_kru9opXrQ5S5JW31MQoHvvWgPxNPzvibr2XxJ7iwjmu18obBEg"> <div class="author"> <a href="/store/people/details?id=107934062117327617121"> <img class="author-image" alt="Dave Wenning avatar image" src="https://lh6.googleusercontent.com/-DoeuMHmlP2k/AAAAAAAAAAI/AAAAAAAAEzw/ARFtSjs-cso/w48-c-h48/photo.jpg"> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=107934062117327617121">Dave Wenning</a> </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" style="width: 40%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Another Good App Ruined by Updates</span> I was enjoying this app. Everything was great. Then they "updated" it. Now I find myself stymied every time I try to save something. It used to be easy to pick a notebook before saving. Now I grope around arcane icons and end up with multiple copies in the inbox. This is typical of my Android experience with updates. They always ruin good apps. Just waiting for the new iPad Mini so I can pitch this thing for good. </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-4" data-reviewid="lg:AOqpTOF0mGLybg8yVVZgjv3FPn_lIc_dQ7yRNzrbFp98yvA8KOcJBUAPqL-KyeRVoDb2aqYVqKtLYW7P5OEikQ"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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" style="width: 100%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Can't imagine not having Evernote</span> Update: Still loving it! Keeps getting better all the time. Very nice! Love the new widget and tablet layout! Absolute must have app for me. I have become an unintended evangelist because I love and use it so much. </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-5" data-reviewid="gp:AOqpTOFtwa51Ci_9dfKb2C8xHRiJ7JkxozafauwUffzHOuzNO5d0Q4lBOOIs5cPZtu3-r9k6TWvfZOvv1-qHtQ"> <div class="author"> <a href="/store/people/details?id=112768267705480616309"> <img class="author-image" alt="Kel Caz avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=112768267705480616309">Kel Caz</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" style="width: 80%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title"></span> Its no Springpad, but it keeps track of what I need it to and lets me know if I have a note conflict. </div> <div class="paragraph-end details-light"></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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-0" data-reviewid="lg:AOqpTOEl_joRLBdNEOwPem-5G20VgFHiDC4bOPbBTtBy1QtTrE8akPcflVb4XBsHnQnrITAOaFDSzE2ydYj0tw"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">July 24, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPRWxfam9STEJkTkVPd1BlbS01RzIwVmdGSGlEQzRiT1BiQlR0QnkxUXRUckU4YWtQY2ZsVmI0WEJzSG5RbnJJVEFPYUZEU3pFMnlkWWowdHc" 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" 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"> <span class="review-title">Needs tab support and evernote to evernote sharing</span> Everything that need to be saved permanently goes here, excluding office docs, even contacts. Google Contacts is a third class service that messes up contact cards horribly, does not sync when required, and even deletes contact data. Nothing I save in Evernote gets lost. The pictures taken go here too. <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"> <a href="/store/people/details?id=110577086480087351993"> <img class="author-image" alt="Brandon W avatar image" src="https://lh3.googleusercontent.com/-xzU0Ualkngg/AAAAAAAAAAI/AAAAAAAAM_g/KqRJFWQlPsc/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-1" data-reviewid="gp:AOqpTOG73VLUsHPgWZJznNQrEODvxhf9rg1vP21-8SvTUhrU6IdEDwWT48COWaoPgGlMD4Xi9eCCnDKc8apS4A"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=110577086480087351993">Brandon W</a> </span> <span class="review-date">July 9, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRzczVkxVc0hQZ1daSnpuTlFyRU9EdnhoZjlyZzF2UDIxLThTdlRVaHJVNklkRUR3V1Q0OENPV2FvUGdHbE1ENFhpOWVDQ25ES2M4YXBTNEE" 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" 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"> <span class="review-title">I have nightmares about my Evernote getting erased</span> After 10 years and possibly $10k in the latest and greatest devices .. Seriously, Any and every device I have.. From my old-skoo LG Lucid POS - To my Galaxys 2, 3, 4..Note 2..Tab 2.. ASUS, know what they all got? EVERNOTE... I got a 4 PCs.. Know what i use on those though? OH.. Since u ask.. EVERNOTE! can read all notes from ANYWHERE. it brilliant... Simply brilliant. 5+ stars to the people that commit to this lifesaving, life organizing, life reminding app. Keep it up.. Forreal! <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"> <a href="/store/people/details?id=118342279922680601261"> <img class="author-image" alt="Memphis Ye avatar image" src="https://lh6.googleusercontent.com/-VuCRVLPewiY/AAAAAAAAAAI/AAAAAAAAAD8/P7YUeb_xQAw/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-2" data-reviewid="gp:AOqpTOF4jFtcma4bcG5De5n_PPbY5tcE0tjpbnO2ADDP8XRUtGYLwi194qKZ-c2SKDKgcN0QMHw-5MX6DcD_UQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=118342279922680601261">Memphis Ye</a> </span> <span class="review-date">July 8, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRjRqRnRjbWE0YmNHNURlNW5fUFBiWTV0Y0UwdGpwYm5PMkFERFA4WFJVdEdZTHdpMTk0cUtaLWMyU0tES2djTjBRTUh3LTVNWDZEY0RfVVE" 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" 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"> <span class="review-title">New design is awesome.</span> For many years, design of evernote in Android is bad. But this time, everything changes with the debut of Android L. Love u guys. <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"> <a href="/store/people/details?id=107934062117327617121"> <img class="author-image" alt="Dave Wenning avatar image" src="https://lh6.googleusercontent.com/-DoeuMHmlP2k/AAAAAAAAAAI/AAAAAAAAEzw/ARFtSjs-cso/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-3" data-reviewid="gp:AOqpTOFc6aId8WHLSjtunFcq1QjHIjOcFl4_kru9opXrQ5S5JW31MQoHvvWgPxNPzvibr2XxJ7iwjmu18obBEg"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=107934062117327617121">Dave Wenning</a> </span> <span class="review-date">July 20, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRmM2YUlkOFdITFNqdHVuRmNxMVFqSElqT2NGbDRfa3J1OW9wWHJRNVM1SlczMU1Rb0h2dldnUHhOUHp2aWJyMlh4Sjdpd2ptdTE4b2JCRWc" 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" 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"> <span class="review-title">Another Good App Ruined by Updates</span> I was enjoying this app. Everything was great. Then they "updated" it. Now I find myself stymied every time I try to save something. It used to be easy to pick a notebook before saving. Now I grope around arcane icons and end up with multiple copies in the inbox. This is typical of my Android experience with updates. They always ruin good apps. Just waiting for the new iPad Mini so I can pitch this thing for good. <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-4" data-reviewid="lg:AOqpTOF0mGLybg8yVVZgjv3FPn_lIc_dQ7yRNzrbFp98yvA8KOcJBUAPqL-KyeRVoDb2aqYVqKtLYW7P5OEikQ"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">July 5, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPRjBtR0x5Ymc4eVZWWmdqdjNGUG5fbEljX2RRN3lSTnpyYkZwOTh5dkE4S09jSkJVQVBxTC1LeWVSVm9EYjJhcVlWcUt0TFlXN1A1T0Vpa1E" 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" 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"> <span class="review-title">Can't imagine not having Evernote</span> Update: Still loving it! Keeps getting better all the time. Very nice! Love the new widget and tablet layout! Absolute must have app for me. I have become an unintended evangelist because I love and use it so much. <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"> <a href="/store/people/details?id=112768267705480616309"> <img class="author-image" alt="Kel Caz avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> <div class="review-header" data-expand-target="user-5" data-reviewid="gp:AOqpTOFtwa51Ci_9dfKb2C8xHRiJ7JkxozafauwUffzHOuzNO5d0Q4lBOOIs5cPZtu3-r9k6TWvfZOvv1-qHtQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=112768267705480616309">Kel Caz</a> </span> <span class="review-date">July 24, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRnR3YTUxQ2lfOWRmS2IyQzh4SFJpSjdKa3hvemFmYXV3VWZmekhPdXpOTzVkMFE0bEJPT0lzNWNQWnR1My1yOWs2VFd2ZlpPdnYxLXFIdFE" 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" 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"> <span class="review-title"></span> Its no Springpad, but it keeps track of what I need it to and lets me know if I have a note conflict. <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"> <a href="/store/people/details?id=105313330140290874048"> <img class="author-image" alt="Troy Brasher avatar image" src="https://lh3.googleusercontent.com/-ojAR9-kmOPw/AAAAAAAAAAI/AAAAAAAAAOs/O4_nEd7fRyI/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-6" data-reviewid="gp:AOqpTOGfyFR-5yvxAnvSvvuEUDfTzDMf7dXWqowF0STdMseirkinzCX12i3ulZj5UdNz5FZ7NMAjVa7sBM6Kgw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=105313330140290874048">Troy Brasher</a> </span> <span class="review-date">July 22, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR2Z5RlItNXl2eEFudlN2dnVFVURmVHpETWY3ZFhXcW93RjBTVGRNc2VpcmtpbnpDWDEyaTN1bFpqNVVkTno1Rlo3Tk1BalZhN3NCTTZLZ3c" 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" 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"> <span class="review-title">Evernote is fantastic!</span> Devs constantly working upgrading the service and capabilities, great app for all note taking and filing requirements. <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-7" data-reviewid="gp:AOqpTOGOxe8mqhqQ5CqZ54BhOs0Q83EZEHgvDIC-KCy6TobWEh0-ZiNTJVrTb5Sxm8twXFobDX_oX9wcsB2FXA"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">July 17, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR094ZThtcWhxUTVDcVo1NEJoT3MwUTgzRVpFSGd2RElDLUtDeTZUb2JXRWgwLVppTlRKVnJUYjVTeG04dHdYRm9iRFhfb1g5d2NzQjJGWEE" 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" 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"> <span class="review-title">Nobody comes close</span> This is simply the best tool for storing many kinds of information from photos to spreadsheets it takes them all! <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"> <a href="/store/people/details?id=108588554691505791907"> <img class="author-image" alt="Jeanine Foy avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> <div class="review-header" data-expand-target="user-8" data-reviewid="gp:AOqpTOGm0wF4S6kIwYsRl2ECWfF_ujtXgOrRbY7dtkhH90V6_SvSLvoXTu1yvkOm9ugXeAx-4HBREJkdKxlGdw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=108588554691505791907">Jeanine Foy</a> </span> <span class="review-date">July 21, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR20wd0Y0UzZrSXdZc1JsMkVDV2ZGX3VqdFhnT3JSYlk3ZHRraEg5MFY2X1N2U0x2b1hUdTF5dmtPbTl1Z1hlQXgtNEhCUkVKa2RLeGxHZHc" 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" 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"> <span class="review-title">A must have!!</span> All of the other memo apps i've tried do not compare to this one. Even if you change your phone you can always log back in and recover everything you save. This app is the best!! <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"> <a href="/store/people/details?id=109286367018866194439"> <img class="author-image" alt="Daniel Persson avatar image" src="https://lh6.googleusercontent.com/-Ai3lAJ3ZqmQ/AAAAAAAAAAI/AAAAAAAAAuA/Be2PZOTgYRs/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-9" data-reviewid="gp:AOqpTOHTip2_vETAJmXZj-4JGCuTMLWUscOG4uu8HjrF-57ibOobGPyK9IaOJUGJApudoc-awOoYZnUFtnp2kQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=109286367018866194439">Daniel Persson</a> </span> <span class="review-date">June 27, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSFRpcDJfdkVUQUptWFpqLTRKR0N1VE1MV1VzY09HNHV1OEhqckYtNTdpYk9vYkdQeUs5SWFPSlVHSkFwdWRvYy1hd09vWVpuVUZ0bnAya1E" 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" 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"> <span class="review-title">The clipper extensions for Android, when?</span> First of all thanks for fixing nested tags. When they were gone I couldn't use them at all on mobile devices. But the clipping mechanism/add-ons, something must be done before Pocket swallow your users. In 2013 you said the Android browsers didn't have extensions and that's why we didn't get Evernote Clipper or Clearly. What's your excuse now? Every browser except for Chrome have extensions now and Chrome will soon enough too. Begin with Firefox and see the effect, 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"> <a href="/store/people/details?id=114986827665260771748"> <img class="author-image" alt="Phạm Minh Trí avatar image" src="https://lh6.googleusercontent.com/-Khse-yk2M7M/AAAAAAAAAAI/AAAAAAAAAH8/3Tx7K8mVK24/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-10" data-reviewid="gp:AOqpTOHFkXUfDcxronnUVOfcGsF5ZURxJTnHe2Zww8infiKArnNtas3VcD6AabhQMlIm31xRs6vR-xmoAW2syw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=114986827665260771748">Phạm Minh Trí</a> </span> <span class="review-date">July 1, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSEZrWFVmRGN4cm9ublVWT2ZjR3NGNVpVUnhKVG5IZTJad3c4aW5maUtBcm5OdGFzM1ZjRDZBYWJoUU1sSW0zMXhSczZ2Ui14bW9BVzJzeXc" 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" 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"> <span class="review-title">Really nice app</span> This app have a good looking UI. I really like it. Go a head and make it 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"> <a href="/store/people/details?id=118325975191750017591"> <img class="author-image" alt="Donald Maglio avatar image" src="https://lh4.googleusercontent.com/-MgErVbbakac/AAAAAAAAAAI/AAAAAAAAAHk/blh4EyjrLPA/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-11" data-reviewid="gp:AOqpTOFLcQMhM1kJxJk_dDwittvVqUuK3B3Yn2BXIZCytRNHKFagt8fY0InhlD50Cheiyhw4aVxcF_iBkBneFg"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=118325975191750017591">Donald Maglio</a> </span> <span class="review-date">June 26, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRkxjUU1oTTFrSnhKa19kRHdpdHR2VnFVdUszQjNZbjJCWElaQ3l0Uk5IS0ZhZ3Q4ZlkwSW5obEQ1MENoZWl5aHc0YVZ4Y0ZfaUJrQm5lRmc" 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" 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"> <span class="review-title">Fits all my needs and then some</span> If you need a program that's not only interactive on your phone in every respect you might need from voice to vide. But active on your computer as well this is definitely the way to go. Because it's got a great interface and it's easy to use on both systems. I've been involved with beta testing the new updates to this program for quite a while now and it just keeps getting better and better. Way to go guys keep up the good 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"> <a href="/store/people/details?id=107483200924890516815"> <img class="author-image" alt="David Kim avatar image" src="https://lh4.googleusercontent.com/--SRSmo91n_Y/AAAAAAAAAAI/AAAAAAAAAHg/0eAPn1Esm-U/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-12" data-reviewid="gp:AOqpTOERGR6LxIZIenl3GyFQA2UO4WjWfLh2i3tEbUtlGCqRB1iuAWPc7YE6pNyUCXOPD_9yFNN2ZNWSHuHwYA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=107483200924890516815">David Kim</a> </span> <span class="review-date">July 1, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRVJHUjZMeElaSWVubDNHeUZRQTJVTzRXaldmTGgyaTN0RWJVdGxHQ3FSQjFpdUFXUGM3WUU2cE55VUNYT1BEXzl5Rk5OMlpOV1NIdUh3WUE" 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" 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"> <span class="review-title">A Must-have</span> I cannot live without Evernote. Keep up the good 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"> <a href="/store/people/details?id=112019506917402182244"> <img class="author-image" alt="Eduardo Ruiz avatar image" src="https://lh4.googleusercontent.com/-6UXppe6_CIc/AAAAAAAAAAI/AAAAAAAAapQ/P-ZrWwN4jv8/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-13" data-reviewid="gp:AOqpTOFHut8L7_7YmD8gcMPmIOBMx03nC6dMDBnj_rOFBlA9VdW69HWTWXYKnX2pPYYDphntiZcKx4vaRszfjw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=112019506917402182244">Eduardo Ruiz</a> </span> <span class="review-date">July 1, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRkh1dDhMN183WW1EOGdjTVBtSU9CTXgwM25DNmRNREJual9yT0ZCbEE5VmRXNjlIV1RXWFlLblgycFBZWURwaG50aVpjS3g0dmFSc3pmanc" 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" 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"> <span class="review-title">Indispensable</span> I use Evernote for anything where I think I'll be needing it at some point in my life, whether it's recipes, how-to articles, or important information about a topic of interest. Always one of the first apps I install on my phone or tablet. <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-14" data-reviewid="lg:AOqpTOFMA-aPs4NVtTThLh3ux2dUMAzXL5jI9UX7UDLv_1gsVb-FJoxANRMJNx7vF9C8stVouZLa4uhsY5dOJg"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">July 4, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPRk1BLWFQczROVnRUVGhMaDN1eDJkVU1BelhMNWpJOVVYN1VETHZfMWdzVmItRkpveEFOUk1KTng3dkY5QzhzdFZvdVpMYTR1aHNZNWRPSmc" 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" 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"> <span class="review-title">Great!</span> I like that I can access my notes from anywhere there is internet. <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"> <a href="/store/people/details?id=113702713601344020746"> <img class="author-image" alt="Anthony T avatar image" src="https://lh5.googleusercontent.com/-XWA_vmnm6wU/AAAAAAAAAAI/AAAAAAAAToo/NPe3hEUNJ3M/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-15" data-reviewid="gp:AOqpTOEUT9GfZUAJdhrFDeHFMK1RFCyy7EVwUYCJQU8Q9uvhuocQ1ivha3RBQCDdsUYTt_nbSmLFQTWAhUYloA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=113702713601344020746">Anthony T</a> </span> <span class="review-date">June 30, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRVVUOUdmWlVBSmRockZEZUhGTUsxUkZDeXk3RVZ3VVlDSlFVOFE5dXZodW9jUTFpdmhhM1JCUUNEZHNVWVR0X25iU21MRlFUV0FoVVlsb0E" 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" 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"> <span class="review-title">I like the latest interface</span> Had some sync problems but seem to be fixed since last windows update <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-16" data-reviewid="lg:AOqpTOFf564-kxs_3G__mWv80aUd2BHdEboSWI3p6QmIEBPqJt1W1xLd4U5IisazkCeD-m0mRwf3M0fBe4Ubtw"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">July 12, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPRmY1NjQta3hzXzNHX19tV3Y4MGFVZDJCSGRFYm9TV0kzcDZRbUlFQlBxSnQxVzF4TGQ0VTVJaXNhemtDZUQtbTBtUndmM00wZkJlNFVidHc" 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" 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"> <span class="review-title">This is THE app!</span> I've used evernote since I first tried android. And it's the single greatest app I've ever used. It's become an essential tool to me. I highly recommend it. Best note taking app PERIOD! <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"> <a href="/store/people/details?id=112085981714100538170"> <img class="author-image" alt="Anshul Vineet avatar image" src="https://lh4.googleusercontent.com/-sOUi7m7aj2E/AAAAAAAAAAI/AAAAAAAAABM/TVxdfrYTVQw/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-17" data-reviewid="gp:AOqpTOFVa07X0ai-0NRRhBy5XvpNjwFgqAe6oL3glIclXV5wvwhedbVINEU0X0QGwwuto26WoUi7YdVoh-9XZw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=112085981714100538170">Anshul Vineet</a> </span> <span class="review-date">July 11, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRlZhMDdYMGFpLTBOUlJoQnk1WHZwTmp3RmdxQWU2b0wzZ2xJY2xYVjV3dndoZWRiVklORVUwWDBRR3d3dXRvMjZXb1VpN1lkVm9oLTlYWnc" 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" 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"> <span class="review-title">very useful app</span> Really great for organizing all your documents, web content, links, tags and lot more in a very easy way. Also very easy to sync to all your devices. Could use a little more options in reading part, otherwise it is perfect. <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-18" data-reviewid="lg:AOqpTOEDshHDKOnPfTo9zGXrFWD-NLo6czWEm1ObwBt_UYloqnGkbtN_cRrCYpCBT6fo0ps3azUAztMWjMAvfw"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">June 27, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPRURzaEhES09uUGZUbzl6R1hyRldELU5MbzZjeldFbTFPYndCdF9VWWxvcW5Ha2J0Tl9jUnJDWXBDQlQ2Zm8wcHMzYXpVQXp0TVdqTUF2Znc" 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" 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"> <span class="review-title">Ubiquitous Note Taking</span> There's nothing better for storing information and having it available on any imaginable device. <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"> <a href="/store/people/details?id=100464161450756204319"> <img class="author-image" alt="Gideon Otashu avatar image" src="https://lh6.googleusercontent.com/-Bf1ur6CO3BE/AAAAAAAAAAI/AAAAAAAAAzA/TYtJ7dwQmjo/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-19" data-reviewid="gp:AOqpTOGMbWHLd3zvN5zqnoiHdnbT9PwDD5gVevU0C1n83jmod2SbLcj9AXN--0xf8vIjHNYXnH6VpSTI5I5T_A"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=100464161450756204319">Gideon Otashu</a> </span> <span class="review-date">July 18, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR01iV0hMZDN6dk41enFub2lIZG5iVDlQd0RENWdWZXZVMEMxbjgzam1vZDJTYkxjajlBWE4tLTB4Zjh2SWpITllYbkg2VnBTVEk1STVUX0E" 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" 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"> <span class="review-title">Like it</span> Being using it for some time now and I love 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> </div> <div class="details-section-divider"></div> </div> <script>if (typeof ircs == 'undefined'){jQuery(document).ready(function(){ircs();});}else {ircs();}
80
- </script> </div> <div class="details-wrapper"> <div class="details-section whatsnew"> <div class="details-section-contents show-more-container"> <div class="heading"> What's New </div> <div class="recent-change">Handwriting</div><div class="recent-change">- Write and sketch inside your notes!</div><div class="recent-change">- Keep handwriting, text, photos, and files in the same note</div><div class="recent-change">- Choose from several colors and line thicknesses</div><div class="recent-change">Editor improvements</div><div class="recent-change">- New: Text highlighter</div><div class="recent-change">- Better support for notes made on other platforms</div><div class="recent-change">- Edit content in tables created on other platforms</div><div class="recent-change">Note improvements</div><div class="recent-change">- Create a note link to quickly jump between notes</div><div class="recent-change">- Duplicate a note</div><div class="recent-change">Better, Faster Camera</div><div class="recent-change">If you like using Evernote, don't forget to rate us. Thanks!</div> <div class="show-more-end"></div> <div> <button class="play-button show-more small"> Read more </button> <button class="play-button expand-close"> <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"> <div class="heading"> Additional information </div> </div> <div class="details-section-contents"> <div class="meta-info"> <div class="title">Updated</div> <div class="content" itemprop="datePublished">June 26, 2014</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"> 50,000,000 - 100,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"> <div class="title">Content Rating</div> <div class="content" itemprop="contentRating"> Low Maturity </div> </div> <div class="meta-info"> <div class="title"> Contact 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 Developer's Website </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> </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> <div class="details-section-divider"></div> </div> </div><div class="details-wrapper"> <div class="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"> <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"> <div class="card-content id-track-click id-track-impression" data-docid="com.socialnmobile.dictapps.notepad.color.note" data-server-cookie="CAIaNwo1EjMKLWNvbS5zb2NpYWxubW9iaWxlLmRpY3RhcHBzLm5vdGVwYWQuY29sb3Iubm90ZRABGAM=" data-uitype="500"> <a class="card-click-target" 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 class="cover-image" alt="ColorNote Notepad Notes" data-cover-large="https://lh3.ggpht.com/IDOtRhsZLSG3EFxWxmWREMPa42_SNQvl9-x4FBu5dn9aJMjpVtMx_GoNdnQwEIp_7gsV=w340" data-cover-small="https://lh3.ggpht.com/IDOtRhsZLSG3EFxWxmWREMPa42_SNQvl9-x4FBu5dn9aJMjpVtMx_GoNdnQwEIp_7gsV=w170" src="https://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-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=com.socialnmobile.dictapps.notepad.color.note" title="ColorNote Notepad Notes"> ColorNote Notepad Notes <span class="paragraph-end"></span> </a> </h2> <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="buy-button-container apps is-price-tag" data-docid="com.socialnmobile.dictapps.notepad.color.note"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.socialnmobile.dictapps.notepad.color.note"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> ColorNote® is a simple notepad app. It gives you a quick and simple notepad editing experience when you write notes, memo, email, message, shopping list and to do list. ColorNote® Notepad makes taking a note easier than any other notepad and memo apps.<p>* Notice *<br>If you cannot find widget of Color Note notepad notes, please read below FAQ.<p>* Features for Color Note notepad notes *<br>-Organize notes by color<br>-Sticky note Widget<br>-Checklist notes for To do list &amp; Shopping list<br>-Checklist notes to get things done (GTD)<br>-Organize your schedule by note in calendar<br>-Password Lock note : Protect your notes by passcode<br>-Secured backup notes to sd storage<br>-Supports online back up and sync. You can sync notes between phone and tablet.<br>-Reminder notes on status bar<br>-List/Grid View<br>-Search notes<br>-Notepad supports ColorDict Add-On<br>-Powerful Reminder : Time Alarm, All day, Repetition.(lunar calendar)<br>-Quick memo / notes<br>-Wiki note link : [[Title]]<br>-Share notes via SMS, email, twitter<br>-Use color to categorize notes<p>* Online backup and sync cloud service for Color Note notepad notes *<br>-Notes will be encrypted before uploading notes using the AES standard, which is the same encryption standard used by banks to secure customer data.<br>-It does not send any of your notes to server without your signing up.<br>-Sign-in with Google or Facebook.<p>* Permissions for notepad notes *<br>-Internet Access : For online backup &amp; sync notes<br>-Modify/delete SD card contents : For backup notes to sdcard<br>-Prevent phone from sleeping, control vibrator, automatically start at boot : For reminder notes<p>* FAQ for Color Note notepad notes *<br>Q : How do you put a sticky color note widget on the home screen?<br>A : Goto home screen and long press empty space and choose widget, Color Note will be there for sticking on page. <p>Q : How come the widget and the alarm and remider notes functions don&#39;t work?<br>A : If the app is installed on the SD card, your widget, reminder and etc. will not work properly because Android doesn&#39;t support them! If you have already moved app to SD card, but you want those features, you have to move it back to device and reboot your phone.<p>Settings - Applications - Manage Applications - Color Note - Move to Device<p>Q : Where is backed up notes data at sdcard?<br>A : /data/colornote on sdcard<p>Q: I forgot my master password, how can I change it?<br>A: Menu -&gt; Settings -&gt; Master Password -&gt; Menu Button-&gt; Clear Password. You will lose current locked notes when you clear password!<p>Q: How can I create to do list note?<br>A: New - Select checklist note - Put items - Save. Tap an item to striketrough.<p>When you&#39;re finished using the notepad, an automatic save command preserves your individual note.<p>Keywords : ColorNote Notepad,note, color note, notebook, notepad, notes, Shopping List, Todo list, Todo, To do List, To do, 2do, To-do, Shopping, list maker, Calendar, Task, Memo, text editor, Sticky Note, Post It, notes, notepad, memo pad, memo widget, sticky, editor, getting things done, GTD, journal, awesome, supports colordict</p></p></p></p></p></p></p></p></p></p></p></p> <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" tabindex="-1"> <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" style="width: 91.07522010803223%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.socialnmobile.dictapps.notepad.color.note"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.socialnmobile.dictapps.notepad.color.note"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </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"> <div class="card-content id-track-click id-track-impression" data-docid="com.google.android.keep" data-server-cookie="CAIaIQofEh0KF2NvbS5nb29nbGUuYW5kcm9pZC5rZWVwEAEYAw==" data-uitype="500"> <a class="card-click-target" 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 class="cover-image" alt="Google Keep - notes and lists" data-cover-large="https://lh4.ggpht.com/4FVlm8l-pprJXCyzvxXTQzA9mzai2asLejRnMjDchAt6vymuJJJHGey0_thS8QGmR9eU=w340" data-cover-small="https://lh4.ggpht.com/4FVlm8l-pprJXCyzvxXTQzA9mzai2asLejRnMjDchAt6vymuJJJHGey0_thS8QGmR9eU=w170" src="https://lh4.ggpht.com/4FVlm8l-pprJXCyzvxXTQzA9mzai2asLejRnMjDchAt6vymuJJJHGey0_thS8QGmR9eU=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.google.android.keep" aria-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=com.google.android.keep" title="Google Keep - notes and lists"> Google Keep - notes and lists <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Google+Inc." title="Google Inc.">Google Inc.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.google.android.keep"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.google.android.keep"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Quickly capture what’s on your mind and be reminded at the right place or time. Speak a voice memo on the go and have it automatically transcribed. Grab a photo of a poster, receipt or document and easily find it later in search.<p> Capture what’s on your mind<br> • Add notes, lists and photos to Google Keep. Pressed for time? Record a voice memo and Keep will transcribe it so you can find it later.<p> Find what you need, fast<br> • Color code notes to quickly organize and get on with your life. If you need to find something you saved, a simple search will turn it up.<p> Always within reach<br> • Keep works on your phone, tablet and computer. Everything you add syncs across all of your devices so your thoughts are always with you.<p> The right note at the right time<br> • Need to remember to pick up some groceries? Set a location-based reminder to pull up your grocery list right when you get to the store.<p> Available everywhere<br> • Try Google Keep on the web at http://keep.google.com and on the Chrome Web Store at http://goo.gl/pQvKtH.</p></p></p></p></p> <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" tabindex="-1"> <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" style="width: 89.22558784484863%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.google.android.keep"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.google.android.keep"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.flufflydelusions.app.enotesclassiclite" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="com.flufflydelusions.app.enotesclassiclite" data-server-cookie="CAIaNAoyEjAKKmNvbS5mbHVmZmx5ZGVsdXNpb25zLmFwcC5lbm90ZXNjbGFzc2ljbGl0ZRABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.flufflydelusions.app.enotesclassiclite" 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 class="cover-image" alt="Classic Notes Lite - Notepad" data-cover-large="https://lh4.ggpht.com/hvEnAn5_HnHVu24exCcDHvsh7Rt_483bTFJtvnho9wbPbhIdycWCBPKOScWUp5NA09c=w340" data-cover-small="https://lh4.ggpht.com/hvEnAn5_HnHVu24exCcDHvsh7Rt_483bTFJtvnho9wbPbhIdycWCBPKOScWUp5NA09c=w170" src="https://lh4.ggpht.com/hvEnAn5_HnHVu24exCcDHvsh7Rt_483bTFJtvnho9wbPbhIdycWCBPKOScWUp5NA09c=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.flufflydelusions.app.enotesclassiclite" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.flufflydelusions.app.enotesclassiclite"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.flufflydelusions.app.enotesclassiclite" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.flufflydelusions.app.enotesclassiclite" title="Classic Notes Lite - Notepad"> Classic Notes Lite - Notepad <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Fluffy+Delusions" title="Fluffy Delusions">Fluffy Delusions</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.flufflydelusions.app.enotesclassiclite"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.flufflydelusions.app.enotesclassiclite"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> ** LITE VERSION IS AD SUPPORTED **<p>** IF YOU ENJOY THIS APP CHECK OUT MY NEWLY RELEASED CONVERT EVERYTHING APP **<p>- A Simple Note-Taking App for Android, Plus More Tiny Utilities Than You’ll Know What to Do With - Lifehacker<p>- Classic Notes + App Box for Android: Like a Better iPhone Notes App for Your Android Phone - App of the Day @ Gizmodo<p>- Classic Notes Lite is an app that does just about everything, and walks your dog - DroidDog<p>- Classic Notes is the most functional, usable, versatile app I&#39;ve ever come across - AndroidGuys<p>- Manages to provide a minimalistic interface that doesn’t sacrifice quality - App of the Day @ Phandroid<br> <br>- Simple Yet Rich In Features - Talkandroid<p>Classic Notes notepad with App Box is built upon the same principles as Extensive Notes but with a more minimal approach. <p>* Export notes as text to SD<br>* Import / Export CSV as todo, checklist, shopping list<br>* Share notes through facebook, twitter, more.<br>* Create backups<br>* Google translate<br>* Send to Google Docs, Dropbox, pastebin<br>* Text to Speech audio playback<br>* Add to Google Calendar - Set reminders and events <br>* Add notes to status bar<br>* Create Home Screen shortcuts<br>* New Note shortcut for notepad<br>* New Note Statusbar entry for notepad<br>* Modify timestamp<br>* Easily display create &amp; modification more<br>* Wallpapers - colors, patterns, palettes<br>* Images - via camera or gallery<br>* Video - Record video<br>* Paint notes - fingerpaint / sketch notes<br>* Private notes - Lock notes with a password<br>* Audio notes / voice notes - Record audio of lectures, meetings<br>* File attachments e.g PDF, MS Word, Excel, MP3, PowerPoint, etc<br>* Geotag + Address look up support - Tag locations <br>* In note content search <br>* Todo / checklist support<br>* Prioritize notes, todos, and tasks based on urgency of low, medium, high w/ color<br>* Todo, checklist, shopping list<br>* Easily sort notes, todo, and tasks by last modified, alphabetical, pending reminders, priority<br>* Attach to-do&#39;s / checklists <br>* Tagging support<br>* Reminders / Alarms<br>* Abbreviations<br>* Dictionary<br>* Word etymology<br>* Example word usage<br>* Music Related references<br>* Postal Code Lookup for notepad<br>* Question and Answer for notepad<br>* Slang<br>* Spelling Suggestions for notepad<br>* Thesaurus<br>* Album Art for notepad<br>* Artist Information<br>* Artist Image<br>* Artists Similar to<br>* Track Information<br>* QR Code notes<br>* Stopwatch<br>* Sales tax / VAT calculator<br>* Discount calculator<br>* Tip calculator<br>* Image caption support<br>* Unit conversions<br>* Acceleration<br>* Area<br>* Bandwidth/Data Type<br>* Circular Measure<br>* Currency<br>* Energy<br>* Flow Rate<br>* Fuel Consumption<br>* Length/Distance<br>* Liquid Volume<br>* Planetary Age<br>* Planetary Weight<br>* Power<br>* Pressure<br>* Sound<br>* Time<br>* Temperature<br>* Weight/Mass<br>* Standard calculator<br>* Mortgage Calculator amortization table monthly payment, interest paid, total interest, principal paid, and balance<br>* Word of the day<br>* Rhyming words<br>* Phrases<br>* Wikipedia search<br>* Film/Cinema extras<br>* Actor/actress lookup<br>* Film lookup <br>* Weather<br>* Stock quotes<br>- Fitness related calculators<br>* Basal Metabolic Rate (BMR)<br>* Body Fat<br>* Body Mass Index (BMI)<br>* Daily Caloric Intake<br>* Max Heart Rate<br>* One Rep Max (1RM)<br>* Target Heart Rate<br>* Waist To Hip Ratio<br>* Water Intake<br>* Ohm&#39;s law, resistance, voltage, current<br>* Random password generator<br>* import csv into note<br>* System monitor in extras<br>- Battery level percentage, status, health<br>- SD card total size, available space<br>- Memory usage - total and available memory<br>- Processor/CPU information<br>- Network information ip address, wifi &amp; mobile state<br>- GPS status<br>* Holidays<br>* URL Shortener<br>* Bulleted lists<br>* Random number generator<br>* Days until countdown<br>* Timzone<br>* Decimal to roman numeral<br>* Wavelength to RGB<br>* WHOIS lookup<br>* Folder support<br>* Rotten Tomatoes<br>* Random Quote<br>* Import via Outlook<br>* Airport codes<br>* Area codes<br>* Countdown Timer<br>* Bi-gram phrases<br>* Comments &amp; sub-notes<br>* Recipes<br>* Flashlight / torch<br>* Base64 encode/decode, unique word, lexical density, word lengths<br>* Compare text<br>* Hotkeys</p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.flufflydelusions.app.enotesclassiclite" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.flufflydelusions.app.enotesclassiclite" tabindex="-1"> <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" style="width: 80.73285102844238%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.flufflydelusions.app.enotesclassiclite"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.flufflydelusions.app.enotesclassiclite"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </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"> <div class="card-content id-track-click id-track-impression" data-docid="de.softxperience.android.noteeverything" data-server-cookie="CAIaMQovEi0KJ2RlLnNvZnR4cGVyaWVuY2UuYW5kcm9pZC5ub3RlZXZlcnl0aGluZxABGAM=" data-uitype="500"> <a class="card-click-target" 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 class="cover-image" alt="Note Everything" 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-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=de.softxperience.android.noteeverything" title="Note Everything"> Note Everything <span class="paragraph-end"></span> </a> </h2> <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="buy-button-container apps is-price-tag" data-docid="de.softxperience.android.noteeverything"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="de.softxperience.android.noteeverything"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> A note (notepad) application where you can create text-, voice- and paint-notes. Your notes can be organized in folders. You can create shortcuts on home, send notes, use live folders &amp; much more!<p>Get the Pro-Add-On for more features!<p>Imports your Palm / Outlook Memos!<p>Contact me if you have problems!</p></p></p> <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" tabindex="-1"> <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" style="width: 89.0855598449707%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="de.softxperience.android.noteeverything"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="de.softxperience.android.noteeverything"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="yong.app.notes" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="yong.app.notes" data-server-cookie="CAIaGAoWEhQKDnlvbmcuYXBwLm5vdGVzEAEYAw==" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=yong.app.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 class="cover-image" alt="Quick notes" data-cover-large="https://lh6.ggpht.com/TMrndFFgU9uPpldEf9UoxGFgK1i2LcQmmrXKGbQT7u_bo_ex4crg1hrBqseP8k61sg=w340" data-cover-small="https://lh6.ggpht.com/TMrndFFgU9uPpldEf9UoxGFgK1i2LcQmmrXKGbQT7u_bo_ex4crg1hrBqseP8k61sg=w170" src="https://lh6.ggpht.com/TMrndFFgU9uPpldEf9UoxGFgK1i2LcQmmrXKGbQT7u_bo_ex4crg1hrBqseP8k61sg=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=yong.app.notes" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="yong.app.notes"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=yong.app.notes" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=yong.app.notes" title="Quick notes"> Quick notes <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=HALBERT" title="HALBERT">HALBERT</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="yong.app.notes"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="yong.app.notes"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> &quot;Quick notes&quot; is a simple notepad application.<p>When you write notes, memos, e-mail, information, shopping lists, to-do list, it can give you a quick and simple notepad editing experience.<p>You can set reminders for each important note, so that you will not miss important things.<p>You can place it on the phone&#39;s desktop, to record some easy to forget things. And there are two different specifications, each specification of five different colors of sticky notes can be selected.<p><br>*** Features ***<br>- Export as text to SD<br>- Share notes through facebook, twitter, and more.<br>- Multiple color desktop plug-in, let your desktop beautiful<br>- Supports online backup, sync to Google task, having the data safe forever.<br>- Sticky notes to remind function , so you never miss an important thing<br>- Create Home Screen shortcuts<br>- Todo, checklist, shopping list<br>- Customize font size and background color<br>- Provides list mode to facilitate your life<br>- Different notes in different folders to categorize, so your notes clear<br>- Use color classification notes<br>- Search for records<p>Disclaimer:<br>- &quot;Quick notes&quot; development based on open source MiCode Community. Adhering to Apache License 2.0 .</p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=yong.app.notes" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=yong.app.notes" tabindex="-1"> <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" style="width: 85.74296951293945%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="yong.app.notes"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="yong.app.notes"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.naturalapps.notas" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="com.naturalapps.notas" data-server-cookie="CAIaHwodEhsKFWNvbS5uYXR1cmFsYXBwcy5ub3RhcxABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.naturalapps.notas" 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 class="cover-image" alt="Natural Notes" data-cover-large="https://lh4.ggpht.com/HAxLpDLdQedyfAd7Ot8I13QoM0uTM9JcHHWmcg45iydjMJ_vyz4dscCDkCxJxNFJZ2rl=w340" data-cover-small="https://lh4.ggpht.com/HAxLpDLdQedyfAd7Ot8I13QoM0uTM9JcHHWmcg45iydjMJ_vyz4dscCDkCxJxNFJZ2rl=w170" src="https://lh4.ggpht.com/HAxLpDLdQedyfAd7Ot8I13QoM0uTM9JcHHWmcg45iydjMJ_vyz4dscCDkCxJxNFJZ2rl=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.naturalapps.notas" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.naturalapps.notas"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.naturalapps.notas" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.naturalapps.notas" title="Natural Notes"> Natural Notes <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Natural+Apps" title="Natural Apps">Natural Apps</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.naturalapps.notas"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.naturalapps.notas"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Natural Notes is a free digital note book for Android smartphones or tablets.<br>With Natural Notes you can write, store and share your notes.<br>It is a useful application, natural to use and totally free!<br>You can add, edit, delete and share the notes you add.<br>In addition to using this application as a digital note pad, you can use it to compose and save messages that you can then send by email, SMS and with other applications installed on your device. Just write a note and use the &quot;share&quot; feature.<br>You can even write your tweets to Twitter or Facebook messages ... write down everything you need, Natural Notes stores it for when you want to check your notes or send them.<br>Includes backup feature to the MicroSD memory card of your device.<br>Nature Notes is a free application and without ads. Does not connect to the Internet.<br>Added option to open any .txt file on the device with Natural Notes and save it as a note (.txt files you receive via Bluetooth, as an email attach, etc).<p>Added option to install or move the app to the SD card (on Android versions that allow this)<br>New design for large 10 inch HoneyComb tablets<p>Improved portuguese translation. Thank you Bernardo!<br>Improved french translation. Thank you Philippe!<br>Improved style for large non-Honeycomb tablets. <br>Improved translation into Italian and Portuguese.<p>Version 2.9<br>NEW If there is no title for the note it will set automatically.<br>NEW Improved design on Android Ice Cream and Jelly Bean versions.<br>NEW Added more options to the new Settings screen.<br>NEW Double tap note text to open edit mode.<br>NEW Added option to insert date and time to text or title name on double tap.<br>NEW More control over your backups: you can now choose the folder on your device in the settings screen.<br>NEW Various bug fixes.<p>Your comments and suggestions are welcome at info@naturalapps.com email (we can not reply to comments).</p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.naturalapps.notas" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.naturalapps.notas" tabindex="-1"> <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" style="width: 84.98419761657715%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.naturalapps.notas"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.naturalapps.notas"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </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"> <div class="card-content id-track-click id-track-impression" data-docid="nl.jacobras.notes" data-server-cookie="CAIaGwoZEhcKEW5sLmphY29icmFzLm5vdGVzEAEYAw==" data-uitype="500"> <a class="card-click-target" 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 class="cover-image" alt="Notes" data-cover-large="https://lh3.ggpht.com/uPCVW5sg-Kd02RjH6Rsv2xwboHBJIxe_sAal_4vcG5ZtbxezIBVfbmB5-fhg_japWG10=w340" data-cover-small="https://lh3.ggpht.com/uPCVW5sg-Kd02RjH6Rsv2xwboHBJIxe_sAal_4vcG5ZtbxezIBVfbmB5-fhg_japWG10=w170" src="https://lh3.ggpht.com/uPCVW5sg-Kd02RjH6Rsv2xwboHBJIxe_sAal_4vcG5ZtbxezIBVfbmB5-fhg_japWG10=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=nl.jacobras.notes" aria-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=nl.jacobras.notes" title="Notes"> Notes <span class="paragraph-end"></span> </a> </h2> <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="buy-button-container apps is-price-tag" data-docid="nl.jacobras.notes"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="nl.jacobras.notes"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> The easiest way to create notes and secure them with a password! Organize your notes in notebooks and synchronize them using Dropbox. Optimized for both phones and tablets!<p>Coming soon: a web version of Notes!<p>• Password protection<br>• Sync &amp; share notes<br>• Organize using notebooks<br>• Clear user interface<br>• Supports English, French, German, Italian, Spanish, Dutch and Russian</p></p> <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" tabindex="-1"> <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" style="width: 81.4113998413086%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="nl.jacobras.notes"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="nl.jacobras.notes"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.gs.stickit" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="com.gs.stickit" data-server-cookie="CAIaGAoWEhQKDmNvbS5ncy5zdGlja2l0EAEYAw==" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.gs.stickit" 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 class="cover-image" alt="Sticky Notes !" data-cover-large="https://lh5.ggpht.com/dST7xt4JAW9BY08ZvVGKo51nbh0zH2oOozvu2uZjK81trY_WxS-1A6w1MPppdBx_-mbL=w340" data-cover-small="https://lh5.ggpht.com/dST7xt4JAW9BY08ZvVGKo51nbh0zH2oOozvu2uZjK81trY_WxS-1A6w1MPppdBx_-mbL=w170" src="https://lh5.ggpht.com/dST7xt4JAW9BY08ZvVGKo51nbh0zH2oOozvu2uZjK81trY_WxS-1A6w1MPppdBx_-mbL=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.gs.stickit" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.gs.stickit"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.gs.stickit" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.gs.stickit" title="Sticky Notes !"> Sticky Notes ! <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=DroidVeda+LLP" title="DroidVeda LLP">DroidVeda LLP</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.gs.stickit"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.gs.stickit"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Sticky Notes! is the ultimate application to create sticky notes and reminders on your Android device. <p>Designed to take notes and navigate with minimum clicks and taps, Sticky Notes beats every other note taking app in ease of use and speed. Multiple fonts and different text sizes make it even more friendly to use.<p>Put your witty thoughts on a sticky image and easily share it on social media from now on. You can swipe through the stickies for quick navigation. And with the new reminder feature, you will never forget a task.<p>Searching through your stickies is faster than ever using the search button. You can even search your stickies directly from your Home screen by including the search results in the Google Search widget.<p>It is complemented by two simple widgets so that you can always have a quick access to your stickies right from your Home screen.<p>Features:<p>* Elegant UI - quick access to create, edit, search and share sticky notes.<br>* Swipe between stickies for faster navigation.<br>* Set reminders with your preferred ring tone and custom volume.<br>* Multiple colors for stickies.<br>* Cool themes.<br>* Home screen &amp; Lock screen widgets.<br>* Easily sort and organize.<br>* Multiple fonts and different sizes.<br>* Tablet friendly.<br>* Easily share your stickies to Facebook, Twitter, Email or SMS<br>* Create cool sticky images and share easily. Integrated Facebook to enable posting without native Facebook app.<br>* Text to speech to read out your notes.<br>* Backup and Restore feature to create a backup of stickies and restore later to prevent data loss.<p>NOTE: Phone state permission is used only to reduce the alarm volume if a phone call is in progress.<p>Have a nice time using Stick Notes!</p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.gs.stickit" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.gs.stickit" tabindex="-1"> <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" style="width: 80.78763961791992%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.gs.stickit"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.gs.stickit"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="my.handrite" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="my.handrite" data-server-cookie="CAIaFQoTEhEKC215LmhhbmRyaXRlEAEYAw==" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=my.handrite" 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 class="cover-image" alt="Handrite Note Notepad Lite" data-cover-large="https://lh4.ggpht.com/EEpkqz5-0xnNcFxzgTF5e85ZL_CIXQ4Zygxn8ew9x7ATAfXZexSyRURjrbKhuC7R7MU=w340" data-cover-small="https://lh4.ggpht.com/EEpkqz5-0xnNcFxzgTF5e85ZL_CIXQ4Zygxn8ew9x7ATAfXZexSyRURjrbKhuC7R7MU=w170" src="https://lh4.ggpht.com/EEpkqz5-0xnNcFxzgTF5e85ZL_CIXQ4Zygxn8ew9x7ATAfXZexSyRURjrbKhuC7R7MU=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=my.handrite" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="my.handrite"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=my.handrite" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=my.handrite" title="Handrite Note Notepad Lite"> Handrite Note Notepad Lite <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=NC+Corp." title="NC Corp.">NC Corp.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="my.handrite"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="my.handrite"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Handrite note is an intuitive handwriting note app that serves as your sticky note, to-do list, memo pad and journal - all at the touch of your finger. Never wade through crumpled pieces of paper, lose important flashes of inspiration or let an unreliable autocorrect impede your speed of thought again.<p>WHO USES HANDRITE NOTE?<br>People who have a need to capture thoughts and ideas quickly, clearly and accurately.<p>HOW HANDRITE NOTE WORKS<br>Write in the spacious &quot;zoomed area&quot; and watch your words appear in the body of your page. Handrite note does not try to “recognize” your handwriting. Instead, it simply captures your strokes exactly as you drew them. This avoids the tedious task of having to “train” the app to read your handwriting as well as the interpretation errors that still occur. It also means that you can sketch symbols, numbers, pictures, mathematical equations, etc in your notes.<p>Support us, buy Handrite note PRO<br>* Unlimited notebooks<br>* export your note as PDF<br>* Continuous writing, so you can write as fast as with pen and paper.<br>* More paper style options for your note page.<p>FEATURES<br>Copy &amp; Paste text and pictures (even from other apps)<br>Freely edit and format your handwritten page with spaces, carriage returns and backspace delete of entries<br>Organize notes by notebook, date, label and title<br>Desktop widget for instant access and for use as sticky note<br>Instantly switch between handwriting and the software keyboard whenever necessary<br>Make your notes and memos beautiful with professionally designed paper styles<br>Customizable pen styles, including a unique variable thickness line setting, makes your writing look as beautiful as from a fine fountain pen<br>Insert images in the body of your note page<br>Reliable auto-save so you never lose your note<p>Help us translate<br>We&#39;d appreciate if you would like to translate Handrite Note into your language. Here is the translating project you can start with: http://crowdin.net/project/handrite<p>KEYWORDS<br>notes, notepad, notebook, note, journal, diary, PDF, tab, tablet, memo, post it, sticky, write, editor, pad</p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=my.handrite" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=my.handrite" tabindex="-1"> <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" style="width: 82.06377983093262%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="my.handrite"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="my.handrite"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="notepad.memocool.free" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="notepad.memocool.free" data-server-cookie="CAIaHwodEhsKFW5vdGVwYWQubWVtb2Nvb2wuZnJlZRABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=notepad.memocool.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 class="cover-image" alt="Notes - MemoCool Free" data-cover-large="https://lh4.ggpht.com/kJyfCXGTGyBmA44gjUkeg0iGrFLxJv19J0P9opB2lce6T5DMpMshDZ_bN3pcrYlRbQ4=w340" data-cover-small="https://lh4.ggpht.com/kJyfCXGTGyBmA44gjUkeg0iGrFLxJv19J0P9opB2lce6T5DMpMshDZ_bN3pcrYlRbQ4=w170" src="https://lh4.ggpht.com/kJyfCXGTGyBmA44gjUkeg0iGrFLxJv19J0P9opB2lce6T5DMpMshDZ_bN3pcrYlRbQ4=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=notepad.memocool.free" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="notepad.memocool.free"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=notepad.memocool.free" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=notepad.memocool.free" title="Notes - MemoCool Free"> Notes - MemoCool Free <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=NalaDex" title="NalaDex">NalaDex</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="notepad.memocool.free"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="notepad.memocool.free"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> From the creators of ListOn, MemoCool! The best application to personalise your notes.<br> <br>MemoCool is a simple and practical application which you can use to make rapid notes and personalise them by adding colours and entertaining magnet-like icons. MemoCool emulates the typical “Post-it” stuck with magnets on the fridge in your house, but now has the advantage that you can take it with you in your pocket. You can create, edit, archive or delete notes any number of times without limit.<br> <br>You also have at your disposal a widget which allows you to have your notes visible on your home screen allowing you to never forget your tasks.<br> <br>Characteristics:<br>-Create and edit notes easily and simply<br>-Create reminders with calendar and notification<br>-Organise notes to ensure the most important notes are always visible<br>-The most visually, realistic and entertaining style in the Play Store<br>-18 colours to choose from to personalise your notes<br>-24 magnets to choose from to add a personal touch to every note<br>-Realistic sounds for every action<br>-Share your own note designs on Whatsapp, Line, email, etc<br>-The most entertaining notes widget you can find on your mobile<br>-Recycle-enabled trash bin so that you can never lose your notes; but also allowing you to keep your fridge door clutter free ;)<br>-Absolutely free and no restrictions. Paid version without adverts!<br> <br>Don’t forget to give MemoCool positive reviews which allows us to create more functions in the near future (synchronisation, task list, reminders, security lists, etc); as well as new magnets and improvements! <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=notepad.memocool.free" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=notepad.memocool.free" tabindex="-1"> <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" style="width: 82.08333015441895%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="notepad.memocool.free"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="notepad.memocool.free"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </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"> <div class="card-content id-track-click id-track-impression" data-docid="ru.andrey.notepad" data-server-cookie="CAIaGwoZEhcKEXJ1LmFuZHJleS5ub3RlcGFkEAEYAw==" data-uitype="500"> <a class="card-click-target" 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 class="cover-image" alt="Notepad" data-cover-large="https://lh6.ggpht.com/f7RQdXEYFqrkBIsvCOph4lEyee49b7MJfBP8ysnZsj-S5YkXC4CqPgGWu7uoknjwGSQ=w340" data-cover-small="https://lh6.ggpht.com/f7RQdXEYFqrkBIsvCOph4lEyee49b7MJfBP8ysnZsj-S5YkXC4CqPgGWu7uoknjwGSQ=w170" src="https://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-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=ru.andrey.notepad" title="Notepad"> Notepad <span class="paragraph-end"></span> </a> </h2> <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="buy-button-container apps is-price-tag" data-docid="ru.andrey.notepad"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="ru.andrey.notepad"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> GO Notepad a new, comfortable and simple notepad right on your Android. Notepad is always at your hand, you just have to write down what you want to do or what you don&#39;t want to forget, you may even do not save it, it would do it for you.<br>Choose any color you want to write notes, also you do have a chance to share notes with friends or relatives. <br>If you like to leave a lot of articles and do not know where is the one you want? Your new notebook will find it easily<br>Notepad is fine for students in writing crib sheets.<p>Features:<br>- Search notes, drawings<br>- Automatically save notes<br>- Save images into SD in notepad folder<br>- Painting the choice of color and brush size<br>- The intensity of the brush saturation and color transparency<br>- Undo in painting<br>- Edit the name of the picture, or note<br>- Eraser is used to remove areas of color from the active layer or selection of this layer, leaving behind transparency.<br>- Supports plotting boards for sketching, like a graffiti in touch with choice of color, thickness, intensity<br>- The &quot;Add Bookmark&quot; will help you to put Desktop shortcut of your note or drawing as a reminder.<br>- Share notes Icq, Gmail, Bluetooth, Skype, Facebook, Vkontakte, Flickr, Twitter<br>- Drawing, Color picker<br>- Photo notes drawing<br>- Photo Editor<br>- Photoshop<br>- Photo notes text<br>- Voice note<br>- Reminders<br>- Shopping list<br>- Gallery notes<br>- Background color<br>- Backup/import/export to SD card<br>Automatic backup schedule daily / weekly /<br>- Video Notes<br>- Password Protection<p>Are you a creative person? You need to not only record your ideas but also do sketches as a picture, then this new notepad is for you!<br>With this feature, you can quickly and easily create notes as sketches, drawings, or make a note in the form of handwriting.<br>Bright palette and vibrant colors will help you to express all your feelings in the time of the drawing.<br>An excellent option for the manuscript is a device Samsung Galaxy Note with its pen, you can create a masterpiece.<br>Fast, easy, beautiful and accessible at any time. This is what you need</p></p> <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" tabindex="-1"> <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" style="width: 88.62896919250488%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="ru.andrey.notepad"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="ru.andrey.notepad"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.fihtdc.note" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="com.fihtdc.note" data-server-cookie="CAIaGQoXEhUKD2NvbS5maWh0ZGMubm90ZRABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.fihtdc.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 class="cover-image" alt="Note" data-cover-large="https://lh3.ggpht.com/cWy9Crf6C6ZR_G3zljuBamZSPDln9wwn85-8NDnX9VkZWwwL18x2yIrVKNAm-qONsqA=w340" data-cover-small="https://lh3.ggpht.com/cWy9Crf6C6ZR_G3zljuBamZSPDln9wwn85-8NDnX9VkZWwwL18x2yIrVKNAm-qONsqA=w170" src="https://lh3.ggpht.com/cWy9Crf6C6ZR_G3zljuBamZSPDln9wwn85-8NDnX9VkZWwwL18x2yIrVKNAm-qONsqA=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.fihtdc.note" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.fihtdc.note"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.fihtdc.note" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.fihtdc.note" title="Note"> Note <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Evenwell+Digitech+Inc." title="Evenwell Digitech Inc.">Evenwell Digitech Inc.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.fihtdc.note"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.fihtdc.note"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> This is a simple but powerful multi-function notebook, can meet all kinds of people use.<br>The main functional characteristics are as follows:<br>1. Provide abundant template: Simple dairy,Meeting minutes,travel dairy,scratchy drawing <br> and so on.It have enough template to satisfy common operations;<br>2. Support original handwriting: to pick up dropped &quot;pen&quot;, appreciate the long-awaited &quot;beauty&quot;;<br>3. Quick insert a variety of elements:time,date,location,weather and so on, do what you want;<br>4. Cut picture as you wish:cut the picture as you want,make the &quot;&quot;talent&quot;&quot; to the limit;<br>5. Long time recording:record the text with sound,say goodbye to the monotony of age;<br>6. One key share:It&#39;s much joyful to share the joy than enjoy alone,Let&#39;s enjoy the share happiness.<br>Anytime, anywhere; any idea, every Note. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.fihtdc.note" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.fihtdc.note" tabindex="-1"> <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" style="width: 84.20872688293457%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.fihtdc.note"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.fihtdc.note"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.crazelle.app.notepad" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="com.crazelle.app.notepad" data-server-cookie="CAIaIgogEh4KGGNvbS5jcmF6ZWxsZS5hcHAubm90ZXBhZBABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.crazelle.app.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 class="cover-image" alt="My Notes" data-cover-large="https://lh3.ggpht.com/hMIYpFxdCZUVbH3fpTY6ckXblRlLdZZrIeH5_DFctXG3Si94nq6bxt-OYDTos8LIysE=w340" data-cover-small="https://lh3.ggpht.com/hMIYpFxdCZUVbH3fpTY6ckXblRlLdZZrIeH5_DFctXG3Si94nq6bxt-OYDTos8LIysE=w170" src="https://lh3.ggpht.com/hMIYpFxdCZUVbH3fpTY6ckXblRlLdZZrIeH5_DFctXG3Si94nq6bxt-OYDTos8LIysE=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.crazelle.app.notepad" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.crazelle.app.notepad"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.crazelle.app.notepad" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.crazelle.app.notepad" title="My Notes"> My Notes <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Crazelle+Solutions" title="Crazelle Solutions">Crazelle Solutions</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.crazelle.app.notepad"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.crazelle.app.notepad"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> My Notes is an intuitive, light weight notepad application that allows you to capture and organize your ideas. The main screen gives you a note pad look-and-feel, allowing you to view selected categories, or sort the notes by title, date created or date last modified.<p>Key Features:<br>- Simple Navigation<br>- Allows you to categorize notes when entered.<br>- Allows you to create custom categories.<br>- Provides filtering capabilities to display notes from a selected category.<br>- Has the ability to order notes by title, date created or date last modified.<br>- Has the ability to convert spoken notes into text for easy retrieval.<br>- Search your note pad by either typing, or speaking to your device.<br>- Share notes at the touch of a button using your favorite electronic method (e-mail, twitter, facebook,..etc)installed on your device. <br>- Integration with Google backup to transfer data when upgrading your device (may not be available with all carriers).<p>This can be your new personal assistant.</p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.crazelle.app.notepad" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.crazelle.app.notepad" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.8 stars out of five stars "> <div class="current-rating" style="width: 75.07978916168213%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.crazelle.app.notepad"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.crazelle.app.notepad"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.workpail.inkpad.notepad.notes" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="com.workpail.inkpad.notepad.notes" data-server-cookie="CAIaKwopEicKIWNvbS53b3JrcGFpbC5pbmtwYWQubm90ZXBhZC5ub3RlcxABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.workpail.inkpad.notepad.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 class="cover-image" alt="InkPad Notepad - Notes - To do" data-cover-large="https://lh4.ggpht.com/7CWX-KGTenSY_723kj7JWP0cj7-1KBN5UaQEbVUk2nKIt8M-xT2bmQEhwfDkAeDQgt4=w340" data-cover-small="https://lh4.ggpht.com/7CWX-KGTenSY_723kj7JWP0cj7-1KBN5UaQEbVUk2nKIt8M-xT2bmQEhwfDkAeDQgt4=w170" src="https://lh4.ggpht.com/7CWX-KGTenSY_723kj7JWP0cj7-1KBN5UaQEbVUk2nKIt8M-xT2bmQEhwfDkAeDQgt4=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.workpail.inkpad.notepad.notes" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.workpail.inkpad.notepad.notes"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.workpail.inkpad.notepad.notes" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.workpail.inkpad.notepad.notes" title="InkPad Notepad - Notes - To do"> InkPad Notepad - Notes - To do <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Workpail" title="Workpail">Workpail</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.workpail.inkpad.notepad.notes"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.workpail.inkpad.notepad.notes"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> InkPad Notepad is the simple, elegant, easy way to keep notes on your phone, or on the web.<p>Once upon a time, you had to write down notes in a paper notepad and carry it around with you. If you wrote a shopping list or to do list, you might go to the store and discover you had forgotten your notepad. But how often do you forget to bring your mobile phone with you? Introducing InkPad, the notepad you’ll only forget as often as your phone!<p>Inkpad Notepad let&#39;s you access your notes online at www.InkpadNotepad.com. You can create or edit notes from the convenience of your computer&#39;s web browser, and always have access to your notes from your phone when you&#39;re offline too.<p>CREATE NOTES<br>InkPad is designed to look like a paper notepad, and is just as simple to use. When you open InkPad, you’ll see a list of all notes you’ve created. To add a new note, tap on the “+” button at the bottom of the screen. The first line of text will automatically be used as the title.<p>CREATE TO DO LIST<br>Create a note as usual, then select the &quot;to do list&quot; button at the top of the note screen.<p>CREATE SHOPPING LIST<br>Create a note as usual, then select the &quot;shopping list&quot; button at the top of the note.<p>EDIT NOTE OR TO DO LIST<br>Now you can write your note. Just like a paper notepad, you don’t have to do anything special to save your notes, they are auto-saved for you.<p>SAVE<br>As mentioned above, notes are auto-saved. You don’t have to do anything special to save them.<p>BACKUP NOTES TO SD CARD<br>By default, notes are backed up to SD card as text files. You can turn this feature off in Notepad Settings.<p>SYNC NOTES ONLINE<br>With version 2.0, Inkpad Notepad now lets you sync/backup notes online. You can access your online notes at www.InkpadNotepad.com by signing in with the same Google account you selected in the mobile app.<p>SEARCH YOUR NOTES OR TO DO LISTS<br>Inkpad Notepad now gives you an option to search your notes or to do lists. From the home screen, tap on the search icon, then begin writing. As you write, the list of notes will be filtered to only display notes containing the search keyword. Press the &quot;X&quot; button to close note search, and view all notes as usual.<p>SHARE NOTES<br>At the bottom of each note is a “share” button. Tapping it brings up all the ways to share. Typical ways include email, SMS, etc. <p>CHANGE NOTE’S TITLE<br>To change a notes title, tap on the title area at the top of that note.<p>DELETE NOTE<br>If you don’t want a note any longer, you can delete it in several ways: 1) Open the note, tap the “delete” button at the bottom of the page. 2) From the main notes screen, long-press the title of a note, then tap on “delete”.<p>REMOVE ADS<br>The free version of InkPad Notepad is ad supported. If you would like to remove the ads and support the continued development of InkPad Notepad, you can do so. From the main screen, press your phone’s menu button, then tap the “remove ads” button.<p>BACKUP NOTES<br>To backup a note, press the share button and email to yourself the note you want to backup.<p>TYPICAL USES<br>Write To do lists (Note: check-list support is now here for to do lists!), shopping lists, addresses, email, SMS, Twitter updates*, write lyrics, poems, or even a novel if you feel like it! The uses are limited only by your imagination.<p>Follow @workpail on twitter (http://twitter.com/workpail) and facebook (http://www.facebook.com/profile.php?id=100001471431772) to receive updates about InkPad Note pad.<p>Known issues: some users have experienced problems when using Swype keyboard, please email me if you have problems. Atrix users with previously installed version of the note pad will have to change the font to &quot;Android default font&quot;.<p>*Assumes separate Twitter client is installed, Twitter cannot post note pad content longer than 140 characters.</p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.workpail.inkpad.notepad.notes" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.workpail.inkpad.notepad.notes" tabindex="-1"> <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" style="width: 84.98359680175781%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.workpail.inkpad.notepad.notes"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.workpail.inkpad.notepad.notes"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.james.SmartNotepad" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="com.james.SmartNotepad" data-server-cookie="CAIaIAoeEhwKFmNvbS5qYW1lcy5TbWFydE5vdGVwYWQQARgD" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.james.SmartNotepad" 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 class="cover-image" alt="Smart Notes" data-cover-large="https://lh3.ggpht.com/si4ohn1PnnMCJEK-qetSpIx5HOVKj4fY5jlGODieOjwHr-z-XzygB8Thw8wg06FcBKg=w340" data-cover-small="https://lh3.ggpht.com/si4ohn1PnnMCJEK-qetSpIx5HOVKj4fY5jlGODieOjwHr-z-XzygB8Thw8wg06FcBKg=w170" src="https://lh3.ggpht.com/si4ohn1PnnMCJEK-qetSpIx5HOVKj4fY5jlGODieOjwHr-z-XzygB8Thw8wg06FcBKg=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.james.SmartNotepad" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.james.SmartNotepad"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.james.SmartNotepad" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.james.SmartNotepad" title="Smart Notes"> Smart Notes <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=SmartWho" title="SmartWho">SmartWho</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.james.SmartNotepad"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.james.SmartNotepad"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> ● NOTES<p>○ Multi-select, command support <br>Delete, Backup, Complete, Protect<br>○ Memo recording<br>○ Voice input<br>○ Memo backup(Sd card txt file)<br>○ Notes management (processing completed)<br>○ Memo protection<br>○ Memo lock<br>○ Memo share<br>○ SMS received letters Import : Received characters are automatically imported into Notes.<br>○ Translate<br>- A memo translation<br>- Save translations<br>- Translation information shared<br>- Voice Play<br>- Language translation support<br> Bulgarian<br> China<br> Croatian<br> Czech<br> Danish<br> Dutch<br> English<br> Filipino<br> Finnish<br> French<br> German<br> Greek<br> Indonesian<br> Italian<br> Japanese<br> Korean<br> Latvian<br> Lithuanian<br> Norwegian<br> Polish<br> Portuguese<br> Romanian<br> Russian<br> Spanish<br> Serbian<br> Slovak<br> Slovenian<br> Swedish<br> Ukrainian<br> Vietnamese<br> Persian<br> Arabic<p><br>● CALENDAR<p>- Month, daily written notes (modified) query function<p><br>● BACKUP/RESTORE<p>- Multi-select, command support <br>Restore, Delete<br>- Backup, recovery, support, individual note<br>- The user\&#39;s full backup, recovery support (XML)<br>- Automatic full backup, and recovery support<br>- Text, XML Viewer Services<br>- TXT File import<br>BACKUP PATH : /sdcard/SmartNotespad<p><br>● SETTINGS<p>- ABOUT Smart Notes<br>- Smart Notes settings<p><br>● Home screen widget<p>- widget(2*1) 3 posts<br>- widget(2*2) 6 posts<p><br>English To Play feature Phone menu&gt; Settings&gt; TTS(text-to-speech) voice data from the installation should proceed.(Or click Below voice data download button)<br>For voice input feature [Google Voice Search] application in the market for search and install the required support.</p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.james.SmartNotepad" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.james.SmartNotepad" tabindex="-1"> <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" style="width: 82.26685523986816%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.james.SmartNotepad"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.james.SmartNotepad"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.mbile.notes" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="com.mbile.notes" data-server-cookie="CAIaGQoXEhUKD2NvbS5tYmlsZS5ub3RlcxABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.mbile.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 class="cover-image" alt="Slide Notes" data-cover-large="https://lh3.ggpht.com/OecgZ6ifMBsbzVZSz7w8ETBVYIkYuKcBLCHL5gbYxIepYc_9WtEIW3Ub_O1aZNmY-K0=w340" data-cover-small="https://lh3.ggpht.com/OecgZ6ifMBsbzVZSz7w8ETBVYIkYuKcBLCHL5gbYxIepYc_9WtEIW3Ub_O1aZNmY-K0=w170" src="https://lh3.ggpht.com/OecgZ6ifMBsbzVZSz7w8ETBVYIkYuKcBLCHL5gbYxIepYc_9WtEIW3Ub_O1aZNmY-K0=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.mbile.notes" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.mbile.notes"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.mbile.notes" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.mbile.notes" title="Slide Notes"> Slide Notes <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=MDJ+Software" title="MDJ Software">MDJ Software</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.mbile.notes"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.mbile.notes"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Slide Notes is an elegant &amp; easy to use notepad app for your Android. You can quickly view notes by sliding left or right with your finger.<p>Features:<br>- edit notes<br>- search &amp; sort<br>- send email, export to SD card<br>- share notes to facebook/twitter (app required)<p>Languages: EN, DE, ES, FR &amp; PL.</p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.mbile.notes" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.mbile.notes" tabindex="-1"> <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" style="width: 86.31741523742676%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.mbile.notes"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.mbile.notes"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> </div> </div> <div class="rec-cluster" data-server-cookie="CAMiHAgCEAMaFBISCgxjb20uZXZlcm5vdGUQARgDKAQ=" data-uitype="400"> <h1 class="heading">More from developer</h1> <div class="cards expandable"> <div class="card no-rationale square-cover apps small" data-docid="com.evernote.skitch" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="com.evernote.skitch" data-server-cookie="CAIaHQobEhkKE2NvbS5ldmVybm90ZS5za2l0Y2gQARgD" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.skitch" 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 class="cover-image" alt="Skitch - Snap. Mark up. Send." data-cover-large="https://lh4.ggpht.com/kAuy9wZG3xzenfzMHzkkK6qTcyQNX45d_joxn3sowhZS4C2-JH3CUeBpiIfa-nLu2Q=w340" data-cover-small="https://lh4.ggpht.com/kAuy9wZG3xzenfzMHzkkK6qTcyQNX45d_joxn3sowhZS4C2-JH3CUeBpiIfa-nLu2Q=w170" src="https://lh4.ggpht.com/kAuy9wZG3xzenfzMHzkkK6qTcyQNX45d_joxn3sowhZS4C2-JH3CUeBpiIfa-nLu2Q=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.evernote.skitch" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.evernote.skitch"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.skitch" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.evernote.skitch" title="Skitch - Snap. Mark up. Send."> Skitch - Snap. Mark up. Send. <span class="paragraph-end"></span> </a> </h2> <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="buy-button-container apps is-price-tag" data-docid="com.evernote.skitch"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.evernote.skitch"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> See something that sparks an idea? Use Skitch to snap it, mark it up with simple tools, and send it on in an instant. Your bold ideas stand out even brighter with Skitch.<p>————————————<p>People everywhere use Skitch to help them visually share their thoughts with others. Here are a few ways you can use it, too:<p>FOR FUN<br>Mark up photos of silly, cool, or inspiring things you see and share them via social, email, SMS, and more.<p>FOR HOME<br>Annotate photos of your backyard to plan out your vegetable garden.<p>FOR SCHOOL<br>Share a diagram of the earth’s layers and have students label it with you.<p>FOR EVENTS<br>Capture a map, mark it up, and share it with your friends to show them where you&#39;ll be.<p>FOR WORK<br>Open a PDF and highlight changes to skip the lengthy, confusing email chains and give clear feedback. Or annotate a screenshot to communicate a change. <p>————————————<br>PDF Markup requires either an in app purchase or an Evernote Premium account.<p>Skitch uses the contacts permissions in order to populate the email field when sending a PDF. This permission lets Skitch use your local address book so you can easily send an email by simply typing someone&#39;s name. <p>More information about permissions at:<br>http://s.evernote.com/skitchpermissions</p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.evernote.skitch" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.evernote.skitch" tabindex="-1"> <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" style="width: 84.57015991210938%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.evernote.skitch"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.evernote.skitch"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.evernote.widget" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="com.evernote.widget" data-server-cookie="CAIaHQobEhkKE2NvbS5ldmVybm90ZS53aWRnZXQQARgD" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.widget" 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 class="cover-image" alt="Evernote Widget" data-cover-large="https://lh3.ggpht.com/3yGG15BuKMx__RWdoDZNBkSI0hg4NaJuXbPw1G23wjduMf49BULCJLgiJxmk9ogKd74=w340" data-cover-small="https://lh3.ggpht.com/3yGG15BuKMx__RWdoDZNBkSI0hg4NaJuXbPw1G23wjduMf49BULCJLgiJxmk9ogKd74=w170" src="https://lh3.ggpht.com/3yGG15BuKMx__RWdoDZNBkSI0hg4NaJuXbPw1G23wjduMf49BULCJLgiJxmk9ogKd74=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.evernote.widget" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.evernote.widget"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.widget" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.evernote.widget" title="Evernote Widget"> Evernote Widget <span class="paragraph-end"></span> </a> </h2> <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="buy-button-container apps is-price-tag" data-docid="com.evernote.widget"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.evernote.widget"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> **The latest version of Evernote is required in order to use the Evernote Widget app**<br>The Evernote Widget lets you go directly to core Evernote features right from your home screen.<p>3 widget options:<p>- List widget (Android 3.0+): Provides a scrollable list and display reminders. <br>- Large widget: Same as the small widget, plus snippets of recently viewed notes.<br>- Small widget: Create new text, snapshot and audio notes, and jump to the search screen.<p>How to install:<br>Once you install this app, tap and hold on the home screen, then select your preferred widget from the popup.<p>The story behind this widget:<br>We want every users to have the best Evernote experience possible. Unfortunately, if Evernote is installed on the SD card, then the widgets that comes with the app are unavailable. Thanks to this Evernote Widget application, anyone can take advantage of this time saving feature regardless of where Evernote is installed.<p>Learn more about the widget: <br>http://evernote.com/evernote/guide/android/#8</p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.evernote.widget" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.evernote.widget" tabindex="-1"> <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" style="width: 84.72661018371582%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.evernote.widget"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.evernote.widget"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.evernote.food" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="com.evernote.food" data-server-cookie="CAIaGwoZEhcKEWNvbS5ldmVybm90ZS5mb29kEAEYAw==" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.food" 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 class="cover-image" alt="Evernote Food" data-cover-large="https://lh5.ggpht.com/9tPgMhRM9SxrJmnUT0lugvw_H50_jieQKaiyj5qKw0kSxEpWdw8vrw_FhF5KHj1Jj48=w340" data-cover-small="https://lh5.ggpht.com/9tPgMhRM9SxrJmnUT0lugvw_H50_jieQKaiyj5qKw0kSxEpWdw8vrw_FhF5KHj1Jj48=w170" src="https://lh5.ggpht.com/9tPgMhRM9SxrJmnUT0lugvw_H50_jieQKaiyj5qKw0kSxEpWdw8vrw_FhF5KHj1Jj48=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.evernote.food" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.evernote.food"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.food" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.evernote.food" title="Evernote Food"> Evernote Food <span class="paragraph-end"></span> </a> </h2> <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="buy-button-container apps is-price-tag" data-docid="com.evernote.food"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.evernote.food"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Evernote Food 2.0 is now available on Android!<p>Evernote Food helps you remember the food you love. From discovering great recipes and restaurants to capturing your memorable food experiences, Evernote Food is the one app you need to remember your life in food.<p>• Explore the best recipes from across the web and save them to My Cookbook to try later<br>• Find great restaurants near you or anywhere in the world; add them to your wish list or book a reservation<br>• Document your food experiences through photos, notes, &amp; locations<br>• Share your meals with friends through e-mail, Twitter, Facebook, or links<p>Bonus: Since Evernote Food is part of Evernote, recipes you clip using Evernote Web Clipper on your desktop will also appear in the the My Cookbook section of the app. Use tags to organize them based on diet and ingredients.<br>Additionally, anything you save in Evernote Food will show up in Evernote on any device you use.<p>What&#39;s new in Evernote Food 2.0<p>• Explore Recipes - Thousands of recipes from the best food sites to browse, search, and save.<br>• My Cookbook - Recipes you save in the app, plus ones you&#39;ve clipped or saved in Evernote, show up here, making them easy to find from any device.<br>• Restaurants - A location-based list and map view of restaurants that lets you clip and save the ones you want to try and see all the spots you&#39;ve visited.<br>• My Meals - A photographic journey through all of your past meals and food adventures.<p>Here are just a few ways you can use Evernote Food:<br>• Build your own online cookbook using My Cookbook, where you can save favorite and new recipes you want to try. <br>• Document each step of recipe preparation with photos and captions, from new creations to family traditions you want to preserve.<br>• Discover restaurants by location or cuisine and create a list of ones to visit in your city and for travel destinations. Book your table within the app using OpenTable.<br>• Remember culinary journeys using My Meals. Add images and notes on the food, wine, people, and ambience that make trips memorable.<br>• Capture your food memories of special restaurant or home-cooked meals enjoyed with family and friends. Take note of dishes you love so you can order them again.<p>Learn more: http://evernote.com/food/<br>Follow Evernote Food on Twitter: twitter.com/evernote</p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.evernote.food" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.evernote.food" tabindex="-1"> <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" style="width: 85.21005630493164%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.evernote.food"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.evernote.food"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.evernote.hello" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-click id-track-impression" data-docid="com.evernote.hello" data-server-cookie="CAIaHAoaEhgKEmNvbS5ldmVybm90ZS5oZWxsbxABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.hello" 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 class="cover-image" alt="Evernote Hello" data-cover-large="https://lh3.ggpht.com/8IAdhSnCvlYoSVThLBHeoztN7xmF1RzjdYY3VbEIZHZHjznUu7l3OMNpWyS6_omTbPk=w340" data-cover-small="https://lh3.ggpht.com/8IAdhSnCvlYoSVThLBHeoztN7xmF1RzjdYY3VbEIZHZHjznUu7l3OMNpWyS6_omTbPk=w170" src="https://lh3.ggpht.com/8IAdhSnCvlYoSVThLBHeoztN7xmF1RzjdYY3VbEIZHZHjznUu7l3OMNpWyS6_omTbPk=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.evernote.hello" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.evernote.hello"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.hello" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.evernote.hello" title="Evernote Hello"> Evernote Hello <span class="paragraph-end"></span> </a> </h2> <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="buy-button-container apps is-price-tag" data-docid="com.evernote.hello"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.evernote.hello"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> With Evernote Hello it’s easy to remember everything about everyone you meet.<p>Whether you&#39;re meeting someone for the first time, trying to remember important details about a person you’ve met before, or recalling important information about a previous meeting, Evernote Hello is here to help. Here&#39;s how:<p>- See everyone you’ve met and pictures of your activities in a beautiful mosaic layout<br>- View a history of all the meetings you&#39;ve had with individuals<br>- Remember all aspects of your meetings: location, notes, photos, and faces<br>- Connect with people through LinkedIn and now Facebook<br>- Get additional insights about contacts and meetings with Related Notes from your Evernote account<p>There are three easy ways to bring people you meet into Evernote Hello:<p>- Connect with nearby Evernote Hello users via Hello Connect<br>- Pull their information from your calendar appointments, texts, calls or your address book<br>- Create a quick profile and snap their photo manually<p>With Evernote Hello, you can easily remember everyone you meet.<p>Evernote Hello is part of the Evernote family of products, which are designed to help you remember everything.</p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.evernote.hello" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.evernote.hello" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.4 stars out of five stars "> <div class="current-rating" style="width: 68.98005962371826%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.evernote.hello"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.evernote.hello"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </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"> <div class="card-content id-track-click id-track-impression" data-docid="com.evernote.wear" data-server-cookie="CAIaGwoZEhcKEWNvbS5ldmVybm90ZS53ZWFyEAEYAw==" data-uitype="500"> <a class="card-click-target" 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 class="cover-image" alt="Evernote for Android Wear" data-cover-large="https://lh4.ggpht.com/-LFDb4dqb4OuOWf_qHCw4AMLLn6_sEJRxcE8LfiE6RGGoMZDnkVHhOBKLCP2ZR9X3sM=w340" data-cover-small="https://lh4.ggpht.com/-LFDb4dqb4OuOWf_qHCw4AMLLn6_sEJRxcE8LfiE6RGGoMZDnkVHhOBKLCP2ZR9X3sM=w170" src="https://lh4.ggpht.com/-LFDb4dqb4OuOWf_qHCw4AMLLn6_sEJRxcE8LfiE6RGGoMZDnkVHhOBKLCP2ZR9X3sM=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.evernote.wear" aria-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=com.evernote.wear" title="Evernote for Android Wear"> Evernote for Android Wear <span class="paragraph-end"></span> </a> </h2> <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="buy-button-container apps is-price-tag" data-docid="com.evernote.wear"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.evernote.wear"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Evernote for Android Wear puts notes and checklists at your fingertips while your phone stays in your pocket.<p>Key Features:<br>- Create a note with simple voice commands.<br>- View a note on your phone, lock the screen and that note appears on your watch. <br>- Check off to-dos by tapping your watch, and add new to-dos by speaking the to-do name<br>- Find notes by speaking the text you are looking for<br>- Find notes you created nearby, and notes you looked at recently<br>- See relevant notes and content appear on your watch whenever you have a calendar event.<br>- For recurring meetings, see notes created during prior meeting.<p>Evernote for Android together with Evernote for Android Wear make your notes accessible at a glance whenever you need them.</p></p> <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" tabindex="-1"> <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" style="width: 84.89583015441895%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.evernote.wear"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link id-no-nav id-track-click" data-uitype="218" href="#" target="_blank"> <span class="id-no-nav" style="display:none"> Listen </span> <span class="id-no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span class="info-label" style="display:none"> Added </span> <button style="display:none" class="consume-link id-no-nav id-watch-button id-track-click" data-uitype="218" data-video-docid="com.evernote.wear"> Watch </button> <span class="price buy id-track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> </div> </div> </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 id="footer-content"> <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">©2014 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="https://play.google.com/intl/en-US_us/about/device-terms.html" target="_blank"> Devices Terms of Sale</a> <a class="footer-link id-no-nav" href="https://support.google.com/googleplay/bin/answer.py?answer=1196018&amp;hl=en_US" 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> </div> </div> </div></div><script type="text/javascript">(function(){var locale='en_US';window.___gcfg = {lang:locale,parsetags:'explicit'
81
- };(function(){function doPlusOne(){if (window.gapi && window.gapi.plusone){window.gapi.plusone.go('body-content');}
74
+ </style><link rel="stylesheet" href="https://www.gstatic.com/play/store/web/css/566661591-lowlife_css_ltr.css">
75
+ <link href="//ssl.gstatic.com/android/market_images/web/favicon.ico" rel="shortcut icon"><script type="text/javascript"></script><title id="main-title">Evernote - Android Apps on Google Play</title><meta content="You’re on the path to something big — Evernote is where you do the work to achieve it.&lt;p&gt;Write notes of all types, from short lists to lengthy research, and access the..." name="Description"><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=in" hreflang="in" 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" hreflang="fr" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=fr_BE" hreflang="fr_BE" 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_FR" hreflang="fr_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=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=nl_BE" hreflang="nl_BE" rel="alternate"><link href="https://play.google.com/store/apps/details?id=com.evernote&amp;hl=nl_NL" hreflang="nl_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=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"></head><body class="no-focus-outline" data-page-server-cookie=""><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="http://www.google.com/intl/en/options/"><u>More</u> &raquo;</a></nobr></div><div style="position:fixed;top:-100000px;left:-100000px;opacity:0" id="offscreen-renderer"></div><div class="wrapper-with-footer" id="wrapper"><div style="display:block"> <div class="nav-container id-click-track 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" 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/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/MOVIE"> Movies </a> </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/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/collection/promotion_1000568_txb_product"> Textbooks </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"> 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 store" 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"> Store </span> </span> </a> </li> <li class="store"> <ul class="sub-nav id-sub-nav-store"> <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 id-no-menu-change id-no-nav" href="https://play.google.com/intl/en-US_us/about/giftcards"> Buy gift card </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"> Buy Google Play credit </button> </li> </ul> </li> </ul> </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 type="text/javascript" src="https://www.gstatic.com/play/store/web/js/4021730603-jquery_js_compiled_jquery_js.js"></script>
76
+ <script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/3182759948-initial_page_js_compiled_initial_page_js.js"></script>
77
+ <script>initializeAppMenu();</script><div class="action-bar-container" role="navigation" jsl="$t t-NjQXl_7dol8;$x 0;"> <div class="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-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,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> <div jsl="$x 4;$t t-pZpp18oHJ6M;$x 0;" class="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" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item"> <ul jsl="$x 8;$t t-ufnLPd03FBo;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;" style="display:none"> <a target="_blank" jsl="$x 2;" jsan="0.target"></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/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="1" 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="2" 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="3" 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="4" 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="5" 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="6" 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="7" 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="8" 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="9" 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="10" 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="11" 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="12" 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="13" 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="14" 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="15" 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="16" 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="17" 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="18" 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="19" 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="20" 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="21" 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="22" 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="23" 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="24" 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="*25" 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" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item"> <ul jsl="$x 8;$t t-ufnLPd03FBo;$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_FAMILY" title="Family" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Family</a> </li><li jsinstance="9" 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="10" 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="11" 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="12" 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="13" 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="14" 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="15" 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="16" 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="*17" 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> </ul> </div> </div> </div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="1" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,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> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="2" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-3kDrbXyPsIE;$x 0;" class="action-bar-link" jsan="t-3kDrbXyPsIE,7.action-bar-link"> <a class="action-bar-link-title" aria-selected="false" href="/store/apps" jsl="$x 1;" jsan="7.action-bar-link-title,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> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="3" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-3kDrbXyPsIE;$x 0;" class="action-bar-link" jsan="t-3kDrbXyPsIE,7.action-bar-link"> <a class="action-bar-link-title" aria-selected="false" href="/store/apps/top" jsl="$x 1;" jsan="7.action-bar-link-title,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> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="4" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-3kDrbXyPsIE;$x 0;" class="action-bar-link" jsan="t-3kDrbXyPsIE,7.action-bar-link"> <a class="action-bar-link-title" aria-selected="false" href="/store/apps/new" jsl="$x 1;" jsan="7.action-bar-link-title,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> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="*5" jsl="$x 2;$t t-JC5PZYWvdyU;$x 0;" class="action-bar-aux" jsan="t-JC5PZYWvdyU,7.action-bar-aux"> <div jsinstance="0" jsl="$x 1;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,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;$t t-jrVj4fYkncg;$x 0;" class="action-bar-link action-bar-help play-button small id-track-click" data-uitype="112" title="Help" jsan="t-jrVj4fYkncg,7.action-bar-link,7.action-bar-help,7.play-button,7.small,7.id-track-click,0.data-uitype,0.title"> <span class="action-bar-link-title" jsl="$x 1;" jsan="7.action-bar-link-title"></span> </button> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="*1" jsl="$x 1;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item settings-gear-menu play-button small" jsan="t-rwatkwvxdCk,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> <div jsl="$x 4;$t t-pZpp18oHJ6M;$x 0;" class="action-bar-dropdown-container"> <div class="action-bar-dropdown"> <button class="action-bar-dropdown-top" aria-controls="action-dropdown-children-" 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-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-RFvLnNve14Q;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="/store/account" title="My orders" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.title">My orders</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-RFvLnNve14Q;$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="*2" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-RFvLnNve14Q;$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 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div> </div> </div> </div> </div><div class="id-body-content-beginning" aria-labelledby="main-title" tabindex="-1"></div><div 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"><meta content="https://www.gstatic.com/android/market_images/plus/play_stream_logo.png" itemprop="logoImageUrl"><meta content="https://play.google.com" itemprop="logoHrefUrl"><div> <div class="details-wrapper apps square-cover id-track-partial-impression" data-docid="com.evernote" data-server-cookie="CAIaFgoUEhIKDGNvbS5ldmVybm90ZRABGAM=" data-uitype="209"> <div class="details-info"> <div class="cover-container"> <img class="cover-image" src="https://lh5.ggpht.com/u_ZwBnOs3s7nHA2v4XDCrJknAAVVHQIzK4mVF8tbx1n62-_LrDSopwHviqeNuDIFigc=w300" alt="Cover art" aria-hidden="true" itemprop="image"> </div> <div class="info-container"> <div class="document-title" itemprop="name"> <div>Evernote</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">- November 26, 2014</div> </div> <div> <a class="document-subtitle category" href="/store/apps/category/PRODUCTIVITY"> <span itemprop="genre">Productivity</span> </a> </div> <div class="details-actions"> <span> <span class="apps medium play-button buy-button-container" 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"> <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="" itemprop="previewUrl"> <meta content="" itemprop="offerType"> <meta content="0" itemprop="price"> <meta content="" itemprop="description"> <span itemprop="seller" itemscope="itemscope" itemtype="http://schema.org/Organization"> <meta content="Android" itemprop="name"> </span> </span> </span> <jsl jsl="$x 0;$t t-_eIX7HsHFbc;$x 0;$t t-ha7zyzmVjec;$x 0;"> <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> </jsl> <span>Install</span> </button> </span> </span> <div class="id-wishlist-display wishlist-display"> <div class="wishlist-container" data-enable-wishlist-icon-center="true" data-server-cookie="CAIaFgoUEhIKDGNvbS5ldmVybm90ZRABGAM=" data-uitype="203"> <button class="play-button wishlist-content wishlist-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="CAIaFgoUEhIKDGNvbS5ldmVybm90ZRABGAM=" data-uitype="204"> Add to Wishlist </div> <div class="wishlist-text-default wishlist-text-adding"> Adding... </div> <div class="wishlist-text-default wishlist-text-added id-track-impression"> Added to Wishlist </div> <div class="wishlist-text-default wishlist-text-remove id-track-click" data-server-cookie="CAIaFgoUEhIKDGNvbS5ldmVybm90ZRABGAM=" data-uitype="205"> Remove </div> <div class="wishlist-text-default wishlist-text-removing"> Removing... </div> </div> </button> </div> </div> </div> <div class="voucher-message" style="display:none"> You have a reward that applies to this item. </div> <div class="app-compatibility"> <div class="app-compatibility-initial" style="display:none"> <div class="compatibility-loading compatibility-image"></div> <span> Loading device compatibility... </span> </div> <div class="app-compatibility-final" style="display:none"> <div class="id-app-compatibility-icon compatibility-image"></div> </div> <div class="app-compatibility-device-list" style="display:none"></div> <script>(function(){var docid='com.evernote';if (typeof fci !== 'undefined'){fci(docid);}else {jQuery('body').one('onPressPlay',function(){fci(docid);});}
78
+ })();</script> </div> <div class="inapp-msg">Offers in-app purchases</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" style="width: 92.50911712646484%"></div> </div> </div> <div class="stars-count"> (<span class="reviewers-small"></span>1,134,111) </div> <div> <span class="badge"> <meta content="https://ssl.gstatic.com/android/market_images/badges/editorschoice_ann.png" itemprop="editorsChoiceBadgeUrl"> <a href="/store/apps/collection/editors_choice"> <img src="https://lh4.ggpht.com/JY4J8vOWIddiNyOGCsmzbjNPmFYgGlBpRnPaPlgKxGdy41ltzp_yTx_xO-SZkJZHB3Ci=w14" aria-hidden="true"> <span class="badge-title">Editors' Choice</span> </a> </span><span class="badge"> <meta content="https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png" itemprop="topDeveloperBadgeUrl"> <img src="https://lh3.ggpht.com/STkLA3lthJ3mrb1mScEIdKgag30BABVWAz3m-zTnwTeUShZIZz8fAkQR0tgCe4GLSEY=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");}
79
+ </script> </div> </div> </div> </div> <div class="details-section screenshots" aria-hidden="true"> <div class="details-section-contents"> <div class="details-section-body expandable"> <div class="thumbnails-wrapper"> <div class="thumbnails" data-expand-target="thumbnails"> <span class="details-trailer"> <span class="video-image-wrapper"> <img class="video-image" src="//i.ytimg.com/vi/UnpUIVO8Lmo/hqdefault.jpg"> </span> <span class="preview-overlay-container" data-docid="com.evernote" data-video-url="https://www.youtube.com/embed/UnpUIVO8Lmo?ps=play&amp;vq=large&amp;rel=0&amp;autohide=1&amp;showinfo=0&amp;autoplay=1"> <span class="play-action-container" data-video-url="https://www.youtube.com/embed/UnpUIVO8Lmo?ps=play&amp;vq=large&amp;rel=0&amp;autohide=1&amp;showinfo=0&amp;autoplay=1"> <span class="play-action"></span> </span> </span> </span> <img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-0" src="https://lh5.ggpht.com/PVFHj_lDlc52wwNu0by2CLmUrSHaAx6NINjbe9qmk-NPo-S5UUA8oghVARMBHEWgXDU=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-1" src="https://lh5.ggpht.com/KvbOit3FFnfbOZ6rG23sDEVuC4ALtLGV0Q0zwu6vMKDCO4u69_zI-IhmD3jOGuJLEj4=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-2" src="https://lh5.ggpht.com/TEWuyLgIH6_514_1xpcqpcjFPSxu82Sak2RPuwbtexRqe-kJuW81DF5IRdS4Lis1KJQ=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-3" src="https://lh4.ggpht.com/KeGMsBnchmH9gywdjA1x7fqUpQX0UrMA_cMZbvr2hYHLiYTsCKOescqniEO4DItuHxU=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-4" src="https://lh5.ggpht.com/zWJ3VVV-sjT0mSADljAMyecO3QmcoFBtLBs8bETznU49X8avDRv3_iF5TkJkzVlu8qU=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-5" src="https://lh5.ggpht.com/3DqrNu-AHqGQQTDper8eTzpm9XEUNq605BxNSCkx4yGopa9u0TD2jBPHXdgwEPp08A=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-6" src="https://lh6.ggpht.com/9h0D2tvXlf6oLsylnNaaSdxjmm6rJuWeHvML-8zg5xoTp4akAjSXRCylxvF_dNTfoTU=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-7" src="https://lh5.ggpht.com/ugk2h_v0RrvAdzL7FfqD4jBONrfzboL6eAuFmkqvWg7zQiJUvkz6GThCU5pnKzCmRA=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-8" src="https://lh4.ggpht.com/3QUx47b-R9ex02vhUDH8h2hN3VDgS7e7rNAP7JCPaxaXr-GClb7jsZEsAyIr5iiwzw=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-9" src="https://lh5.ggpht.com/1LW-N8yEdwS1s-ZuvQSzqNMLaLldL8wBdLHhDY9TvPV8NnxBWIUjVaDZuat8I7V5uh4=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-10" src="https://lh4.ggpht.com/hIueHCJKvvAUrTrQQSSv6-2zpKMV-fdTIITHhMGfrulky5fEAR6KM1cpyUFD_9_kqw=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-11" src="https://lh4.ggpht.com/l-rQJVY9d2ZYZXWXnKfLUkTk6gGCE79Xopb__YlFeVZ974PBgfF4lK8olU67TvK3-g=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-12" src="https://lh4.ggpht.com/Q_2sTO9l0OIdDv801S2mlJI-vugeKROHHyPcWf7Hvavs5d-MU2v2RWS6sUOrF79gH1Hn=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-13" src="https://lh5.ggpht.com/1O17OJEpW3qZcyEyfljRcIHUIIAOiBlCc5SxHPghyv0evV4h2g-ZooBAL3xkog-kZYU=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-14" src="https://lh6.ggpht.com/nyn0trJ4OTdpb3SkH7ItJu8W4DdFNNW9P2AAr0OBA9q0H7y8KLxtc144tlSZXQIVKjE=h310" itemprop="screenshot"><img class="screenshot" alt="Evernote - screenshot thumbnail" data-expand-to="full-screenshot-15" src="https://lh6.ggpht.com/Yo4DN_K0v27ltrEEmJxI9XHn_BtGIgH6kLkxG3hG8Q0PeCJPpDv0FzDXLxbK2gkx0wY=h310" itemprop="screenshot"> </div> </div> <div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-0" data-expand-to="full-screenshot-1" src="https://lh5.ggpht.com/PVFHj_lDlc52wwNu0by2CLmUrSHaAx6NINjbe9qmk-NPo-S5UUA8oghVARMBHEWgXDU=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-1" data-expand-to="full-screenshot-2" src="https://lh5.ggpht.com/KvbOit3FFnfbOZ6rG23sDEVuC4ALtLGV0Q0zwu6vMKDCO4u69_zI-IhmD3jOGuJLEj4=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-2" data-expand-to="full-screenshot-3" src="https://lh5.ggpht.com/TEWuyLgIH6_514_1xpcqpcjFPSxu82Sak2RPuwbtexRqe-kJuW81DF5IRdS4Lis1KJQ=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-3" data-expand-to="full-screenshot-4" src="https://lh4.ggpht.com/KeGMsBnchmH9gywdjA1x7fqUpQX0UrMA_cMZbvr2hYHLiYTsCKOescqniEO4DItuHxU=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-4" data-expand-to="full-screenshot-5" src="https://lh5.ggpht.com/zWJ3VVV-sjT0mSADljAMyecO3QmcoFBtLBs8bETznU49X8avDRv3_iF5TkJkzVlu8qU=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-5" data-expand-to="full-screenshot-6" src="https://lh5.ggpht.com/3DqrNu-AHqGQQTDper8eTzpm9XEUNq605BxNSCkx4yGopa9u0TD2jBPHXdgwEPp08A=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-6" data-expand-to="full-screenshot-7" src="https://lh6.ggpht.com/9h0D2tvXlf6oLsylnNaaSdxjmm6rJuWeHvML-8zg5xoTp4akAjSXRCylxvF_dNTfoTU=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-7" data-expand-to="full-screenshot-8" src="https://lh5.ggpht.com/ugk2h_v0RrvAdzL7FfqD4jBONrfzboL6eAuFmkqvWg7zQiJUvkz6GThCU5pnKzCmRA=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-8" data-expand-to="full-screenshot-9" src="https://lh4.ggpht.com/3QUx47b-R9ex02vhUDH8h2hN3VDgS7e7rNAP7JCPaxaXr-GClb7jsZEsAyIr5iiwzw=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-9" data-expand-to="full-screenshot-10" src="https://lh5.ggpht.com/1LW-N8yEdwS1s-ZuvQSzqNMLaLldL8wBdLHhDY9TvPV8NnxBWIUjVaDZuat8I7V5uh4=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-10" data-expand-to="full-screenshot-11" src="https://lh4.ggpht.com/hIueHCJKvvAUrTrQQSSv6-2zpKMV-fdTIITHhMGfrulky5fEAR6KM1cpyUFD_9_kqw=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-11" data-expand-to="full-screenshot-12" src="https://lh4.ggpht.com/l-rQJVY9d2ZYZXWXnKfLUkTk6gGCE79Xopb__YlFeVZ974PBgfF4lK8olU67TvK3-g=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-12" data-expand-to="full-screenshot-13" src="https://lh4.ggpht.com/Q_2sTO9l0OIdDv801S2mlJI-vugeKROHHyPcWf7Hvavs5d-MU2v2RWS6sUOrF79gH1Hn=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-13" data-expand-to="full-screenshot-14" src="https://lh5.ggpht.com/1O17OJEpW3qZcyEyfljRcIHUIIAOiBlCc5SxHPghyv0evV4h2g-ZooBAL3xkog-kZYU=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-14" data-expand-to="full-screenshot-15" src="https://lh6.ggpht.com/nyn0trJ4OTdpb3SkH7ItJu8W4DdFNNW9P2AAr0OBA9q0H7y8KLxtc144tlSZXQIVKjE=h900"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" alt="Evernote - screenshot" data-expand-fit-screen="true" data-expand-scroll="true" data-expand-target="full-screenshot-15" data-expand-to="thumbnails" src="https://lh6.ggpht.com/Yo4DN_K0v27ltrEEmJxI9XHn_BtGIgH6kLkxG3hG8Q0PeCJPpDv0FzDXLxbK2gkx0wY=h900"> </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" data-show-use-buffer="true"> <div class="heading"> Description </div> <div class="show-more-content text-body" itemprop="description"> <div class="id-app-orig-desc">You’re on the path to something big — Evernote is where you do the work to achieve it.<p>Write notes of all types, from short lists to lengthy research, and access them on any device.<br>Collect web articles, handwritten notes, and photos to keep all the details in one place. <br>Find your work quickly with Evernote’s powerful search.<p>Move projects forward with Evernote:<p>- Take notes: write in a clean, distraction-free workspace.<br>- Get organized: create notebooks and add tags to wrangle projects.<br>- Access anywhere: keep your work in sync across devices.<br>- Find anything fast: text in notes, photos, and PDFs is searchable.<br>- Share ideas and resources: create a workspace for collaboration with shared notebooks.<br>- Keep up with to-do’s: make to-do lists and check items off as you go.<br>- Harness creativity: capture ideas while they’re fresh, wherever you are.<br>- Prepare for meetings: draft agendas and to-do’s for next time.<br>- Manage expenses: organize receipts, bills, and invoices to keep expense reports in check.<br>- Plan business travel: save reservations and tickets for simple trip planning.<p>Accomplish even more with Evernote Premium: <p>★Take notebooks offline to access them anytime<br>★ Add a PIN lock to the Evernote app on your phone<br>★Notes are four times larger so you can pack Evernote with large files and hi-res images<p>Evernote is available for all your computers, phones, tablets, and on the web! Find your notes anywhere you’ve installed the app.<p>★ New York Times ‘Top 10 Must-Have App’, Winner: TechCrunch Crunchies, Mashable Awards and the Webbys. ★<p>Want to use Evernote with your team at work? Learn more about Evernote Business at: <a href="https://www.google.com/url?q=https://www.google.com/url?q%3Dhttp://evernote.com/business/%26sa%3DD%26usg%3DAFQjCNHZua21cECVO7bkqxm3tiTnRuH2Xg&amp;sa=D&amp;usg=AFQjCNGxnz_caScyL2DlaakVTyt4W_sXEg" target="_blank">http://evernote.com/business/</a><p>Visit our homepage: <a href="https://www.google.com/url?q=https://www.google.com/url?q%3Dhttp://www.evernote.com/%26sa%3DD%26usg%3DAFQjCNFUAXCwp1d7XjZIzmApzsaKJVONUQ&amp;sa=D&amp;usg=AFQjCNF-ETCEk1w79XxJ-jyL32iPYr5Djg" target="_blank">http://www.evernote.com/</a><p>More information about permissions at:<br><a href="https://www.google.com/url?q=https://www.google.com/url?q%3Dhttp://evernote.com/privacy/data_usage.php%26sa%3DD%26usg%3DAFQjCNFlUahHSnW-ynRsrqd6cr1kxrsccA&amp;sa=D&amp;usg=AFQjCNHc5p9XKSt9Jj_irO86ikVHZnOfyw" target="_blank">http://evernote.com/privacy/data_usage.php</a></p></p></p></p></p></p></p></p></p></p></div> <div class="show-more-end"></div> </div> <div> <button class="play-button show-more small"> Read more </button> <button class="play-button expand-close"> <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="review-help unallowed-app-review-container" data-unallowed-docid="com.evernote"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> <span class="unallowed-app-review id-unowned-app"> You must install this app before submitting a review. </span> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="review-help id-gplus-signup"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> Google Play reviews now use Google+ so it's easier to see opinions from people you care about. New reviews will be publicly linked to your Google+ profile. Your name on previous reviews now appears as "A Google User". </div> <div class="review-row"> <div class="review-action-button-container"> <a class="play-button id-no-nav apps" href="https://plus.google.com/up/accounts/upgrade?gpsrc=gpwr0&amp;continue=https://play.google.com/store/apps/details?id%3Dcom.evernote"> Sign up for Google+ </a> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="review-help id-gpr-onboard"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> Google Play reviews now use Google+ so it's easier to see opinions from people you care about. New reviews will be publicly linked to your Google+ profile. Your name on previous reviews now appears as "A Google User". </div> <div class="review-row"> <div class="review-action-button-container"> <button class="play-button id-enable-gpr apps"> Continue </button> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="write-review-panel"> <div> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> <div class="review-row-header"> Write a review </div> </div> <div class="review-row"> <div class="write-review-title-container"> <input class="review-input-text-box write-review-title" maxlength="75" type="text"> </div> </div> <div class="review-row"> <div class="write-review-comment-container"> <textarea class="review-input-text-box write-review-comment" maxlength="1200"></textarea> </div> </div> <div class="review-row"> <div class="review-stars-container"> <div class="neutral write-star-rating-container"> <div class="small-star"> <div class="star-rating-editable-container"> <span class="star-common first-star"></span> <span class="star-common second-star"></span> <span class="star-common third-star"></span> <span class="star-common fourth-star"></span> <span class="star-common fifth-star"></span> </div> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> <div class="star-rating-aria"> <button class="first-star" aria-label=" Rate one star out of five stars "></button> <button class="second-star" aria-label=" Rate two stars out of five stars "></button> <button class="third-star" aria-label=" Rate three stars out of five stars "></button> <button class="fourth-star" aria-label=" Rate four stars out of five stars "></button> <button class="fifth-star" aria-label=" Rate five stars out of five stars "></button> </div> </div> </div> <span class="alert-message-container"> <div class="alert-image-container"></div> <div class="alert-review-text-container"></div> </span> </div> <div class="review-action-button-container"> <button class="id-submit-review play-button apps disabled"> Submit Review </button> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> </div> <div style="display:none" class="my-review-panel" data-reviewid=""> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-image-row"> <div> <span> </span> </div> </div> <div class="review-row"> <div class="review-row-header"> My review </div> </div> <div class="review-row"> <span class="review-title"></span> </div> <div class="review-row"> <div class="review-stars-container"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> <div class="review-action-button-container"> <button class="play-button icon-button small review-action-button-gap"> <div class="review-trash-button-icon"></div> </button> </div> </div> <div class="review-row"> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="id-selected-review-panel" data-reviewid=""> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-image-row"> <div> <span> </span> </div> </div> <div class="review-row"> <div class="review-row-header"> <span> Review from <span style="display:none"> </span> </span> </div> </div> <div class="review-row"> <span class="review-title"></span> </div> <div class="review-row"> <div class="review-stars-container"> <div class="small-star star-rating-non-editable-container" aria-label=" Rated stars out of five stars "> <div class="current-rating" style="width: 0%"></div> </div> </div> </div> <div class="review-row"> </div> </div> <div class="write-review-triangle-container"></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="dropdown-menu-container review-filter id-review-sort-filter"> <div class="dropdown-menu"> <span class="displayed-child">Helpfulness</span> <div class="dropdown-icon"></div> </div> <div class="dropdown-menu-children"> <div class="dropdown-child" data-dropdown-value="0">Newest</div><div class="dropdown-child" data-dropdown-value="1">Rating</div><div class="dropdown-child selected" data-dropdown-value="2">Helpfulness</div> </div> </div> </div> <button class="id-write-button play-button"> <span class="write-review-button-icon"></span> <span> Write a 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.625455856323242" itemprop="ratingValue"> <meta content="1134111" itemprop="ratingCount"> <div class="score">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" style="width: 92.50911712646484%"></div> </div> </div> <div class="reviews-stats"> <span class="reviewers-small"></span> <span class="reviews-num">1,134,111</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">833,055</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">229,395</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:4%"></span> <span class="bar-number">39,241</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">12,003</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:2%"></span> <span class="bar-number">20,202</span> </div> </div> </div> <div class="featured-review" data-expand-to="user-0" data-reviewid="gp:AOqpTOGHnPugNLVFR1-CmAOdXpmhUBCobzaOHrwOJOwq7MUBYrkm2DasIRtOFSZD4VhGKAVyabKDTBRlQsc1Uw"> <div class="author"> <a href="/store/people/details?id=104829888477874332677"> <img class="author-image" alt="Alvaro Malmierca avatar image" src="https://lh4.googleusercontent.com/-X2-YoySrCWs/AAAAAAAAAAI/AAAAAAAAAUY/gy9JwHB5tPw/w48-c-h48/photo.jpg"> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=104829888477874332677">Alvaro Malmierca</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" style="width: 60%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Sound attachment error on Desktop</span> Great app and most works well BUT... I use the audio notes a lot and the audio attachments don't show up properly on the windows desktop app. It's been like this for a long time as well. 5 stars when that works as it should. </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-1" data-reviewid="gp:AOqpTOH9_8PFdfLe9PdXxV4cyHH0ONJlzdA1o1WurafbzVhhSR2wG14vaItFCNwMTEBT7Rklzx1sEYagmLI89g"> <div class="author"> <a href="/store/people/details?id=103551614036594486628"> <img class="author-image" alt="Tee Wolfe avatar image" src="https://lh5.googleusercontent.com/-etKckLyvucI/AAAAAAAAAAI/AAAAAAAAAP0/f7DRdUkch5s/w48-c-h48/photo.jpg"> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=103551614036594486628">Tee Wolfe</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" style="width: 60%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Saving multiple copies of my notes</span> I used to think its a temp error..but every time now i save a note..it saves multiple times..so i hv 4-5 notes of d same topic.. its like wen i save an article.. nxt time wen i open..i find around 5 notes of the same.. plzzz fix... i luv evernote otherwise.. fix asap :'( </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-2" data-reviewid="gp:AOqpTOGBeETEod0GrFeRzCFGBzo3ktwMJAnMZc5TKJZmCghsGM0YmXGTXLFFzpKZVCRxwnktjnDBoRXBmx08-g"> <div class="author"> <a href="/store/people/details?id=104985686748488707833"> <img class="author-image" alt="Michael DeBiase avatar image" src="https://lh6.googleusercontent.com/-Dg0KQPy89oY/AAAAAAAAAAI/AAAAAAAAHsM/qe_RGvy-5UM/w48-c-h48/photo.jpg"> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=104985686748488707833">Michael DeBiase</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" style="width: 100%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Can't beat it</span> Evernote is the best way to stay organized. Finals week this week and I wouldn't be able to manage without it. Also, their customer service is good too. Helped me out with an issue I ran into with my account. </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-3" data-reviewid="gp:AOqpTOG4VWTyI65Dzr_e5JI_MAA2RJyb8DncstM2bmlFCL-ld_eWlY7qtzvC7fgENhIteVLaOP1fkf_LCRJTnw"> <div class="author"> <a href="/store/people/details?id=101646181911534670192"> <img class="author-image" alt="julien croy avatar image" src="https://lh3.googleusercontent.com/-ZbLomBpSMgI/AAAAAAAAAAI/AAAAAAAABGw/6p03pkhYWkw/w48-c-h48/photo.jpg"> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=101646181911534670192">julien croy</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4 stars out of five stars "> <div class="current-rating" style="width: 80%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Great app</span> I really love Evernote at this time I have nothing bad to say except the dictionary doesn't work well. It tries to correct things that are correct and sometimes misses incorrect things </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-4" data-reviewid="lg:AOqpTOHzBqbkc55QnAkUWXDm_1y8PvK_awb13NQDmv0tjLJNcdil2ulAb6__6r4r-icHSDH7IB1whKP8MXnvTA"> <div class="author"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </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 1 stars out of five stars "> <div class="current-rating" style="width: 20%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">I long for Catch Notes or Springpad</span> I can't sort my notebooks in the way I want. None of the four sorting options give me what I need. The app constantly logs me out, making it a right pain to jusr quickly check my notes. Also, there is no desktop client for Linux. Sadly both Catch Notes and Springpad have gone, both of which books had a much better UI. This brought me to Evernote, but I'm already on the lookout for a better Catch Notes replacement which I had originally found in Springpad. </div> <div class="paragraph-end details-light"></div> </div> </div> </div> <div class="featured-review" data-expand-to="user-5" data-reviewid="gp:AOqpTOE9dwXFLk6LVSW3lrFM_lczTCnsRAg187VRKLo_KqBTATXeCTnr8O0FbjNDfQWDceCreWZ2JvlXNECgvg"> <div class="author"> <a href="/store/people/details?id=104604742804787816364"> <img class="author-image" alt="Daniel Aguilar avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> </div> <div> <span class="author-name"> <a href="/store/people/details?id=104604742804787816364">Daniel Aguilar</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" style="width: 100%"></div> </div> </div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">I really love this app</span> I have no idea why there are so many irritated "customers" on here. This app is free, for one, and for two it is able to be translated onto multiple platforms (unlike OneNote and many others) I also extremely enjoy the audio feature and this app is very user friendly. I absolutely love this app </div> <div class="paragraph-end details-light"></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"> <a href="/store/people/details?id=104829888477874332677"> <img class="author-image" alt="Alvaro Malmierca avatar image" src="https://lh4.googleusercontent.com/-X2-YoySrCWs/AAAAAAAAAAI/AAAAAAAAAUY/gy9JwHB5tPw/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-0" data-reviewid="gp:AOqpTOGHnPugNLVFR1-CmAOdXpmhUBCobzaOHrwOJOwq7MUBYrkm2DasIRtOFSZD4VhGKAVyabKDTBRlQsc1Uw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=104829888477874332677">Alvaro Malmierca</a> </span> <span class="review-date">December 2, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR0huUHVnTkxWRlIxLUNtQU9kWHBtaFVCQ29iemFPSHJ3T0pPd3E3TVVCWXJrbTJEYXNJUnRPRlNaRDRWaEdLQVZ5YWJLRFRCUmxRc2MxVXc" 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" 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"> <span class="review-title">Sound attachment error on Desktop</span> Great app and most works well BUT... I use the audio notes a lot and the audio attachments don't show up properly on the windows desktop app. It's been like this for a long time as well. 5 stars when that works as it should. <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"> <a href="/store/people/details?id=103551614036594486628"> <img class="author-image" alt="Tee Wolfe avatar image" src="https://lh5.googleusercontent.com/-etKckLyvucI/AAAAAAAAAAI/AAAAAAAAAP0/f7DRdUkch5s/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-1" data-reviewid="gp:AOqpTOH9_8PFdfLe9PdXxV4cyHH0ONJlzdA1o1WurafbzVhhSR2wG14vaItFCNwMTEBT7Rklzx1sEYagmLI89g"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=103551614036594486628">Tee Wolfe</a> </span> <span class="review-date">November 29, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSDlfOFBGZGZMZTlQZFh4VjRjeUhIME9OSmx6ZEExbzFXdXJhZmJ6VmhoU1Iyd0cxNHZhSXRGQ053TVRFQlQ3Umtsengxc0VZYWdtTEk4OWc" 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" 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"> <span class="review-title">Saving multiple copies of my notes</span> I used to think its a temp error..but every time now i save a note..it saves multiple times..so i hv 4-5 notes of d same topic.. its like wen i save an article.. nxt time wen i open..i find around 5 notes of the same.. plzzz fix... i luv evernote otherwise.. fix asap :'( <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"> <a href="/store/people/details?id=104985686748488707833"> <img class="author-image" alt="Michael DeBiase avatar image" src="https://lh6.googleusercontent.com/-Dg0KQPy89oY/AAAAAAAAAAI/AAAAAAAAHsM/qe_RGvy-5UM/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-2" data-reviewid="gp:AOqpTOGBeETEod0GrFeRzCFGBzo3ktwMJAnMZc5TKJZmCghsGM0YmXGTXLFFzpKZVCRxwnktjnDBoRXBmx08-g"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=104985686748488707833">Michael DeBiase</a> </span> <span class="review-date">December 3, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR0JlRVRFb2QwR3JGZVJ6Q0ZHQnpvM2t0d01KQW5NWmM1VEtKWm1DZ2hzR00wWW1YR1RYTEZGenBLWlZDUnh3bmt0am5EQm9SWEJteDA4LWc" 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" 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"> <span class="review-title">Can't beat it</span> Evernote is the best way to stay organized. Finals week this week and I wouldn't be able to manage without it. Also, their customer service is good too. Helped me out with an issue I ran into with my account. <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"> <a href="/store/people/details?id=101646181911534670192"> <img class="author-image" alt="julien croy avatar image" src="https://lh3.googleusercontent.com/-ZbLomBpSMgI/AAAAAAAAAAI/AAAAAAAABGw/6p03pkhYWkw/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-3" data-reviewid="gp:AOqpTOG4VWTyI65Dzr_e5JI_MAA2RJyb8DncstM2bmlFCL-ld_eWlY7qtzvC7fgENhIteVLaOP1fkf_LCRJTnw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=101646181911534670192">julien croy</a> </span> <span class="review-date">December 2, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRzRWV1R5STY1RHpyX2U1SklfTUFBMlJKeWI4RG5jc3RNMmJtbEZDTC1sZF9lV2xZN3F0enZDN2ZnRU5oSXRlVkxhT1AxZmtmX0xDUkpUbnc" 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" 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"> <span class="review-title">Great app</span> I really love Evernote at this time I have nothing bad to say except the dictionary doesn't work well. It tries to correct things that are correct and sometimes misses incorrect things <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-4" data-reviewid="lg:AOqpTOHzBqbkc55QnAkUWXDm_1y8PvK_awb13NQDmv0tjLJNcdil2ulAb6__6r4r-icHSDH7IB1whKP8MXnvTA"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">December 1, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPSHpCcWJrYzU1UW5Ba1VXWERtXzF5OFB2S19hd2IxM05RRG12MHRqTEpOY2RpbDJ1bEFiNl9fNnI0ci1pY0hTREg3SUIxd2hLUDhNWG52VEE" 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" 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"> <span class="review-title">I long for Catch Notes or Springpad</span> I can't sort my notebooks in the way I want. None of the four sorting options give me what I need. The app constantly logs me out, making it a right pain to jusr quickly check my notes. Also, there is no desktop client for Linux. Sadly both Catch Notes and Springpad have gone, both of which books had a much better UI. This brought me to Evernote, but I'm already on the lookout for a better Catch Notes replacement which I had originally found in Springpad. <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"> <a href="/store/people/details?id=104604742804787816364"> <img class="author-image" alt="Daniel Aguilar avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> <div class="review-header" data-expand-target="user-5" data-reviewid="gp:AOqpTOE9dwXFLk6LVSW3lrFM_lczTCnsRAg187VRKLo_KqBTATXeCTnr8O0FbjNDfQWDceCreWZ2JvlXNECgvg"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=104604742804787816364">Daniel Aguilar</a> </span> <span class="review-date">November 27, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRTlkd1hGTGs2TFZTVzNsckZNX2xjelRDbnNSQWcxODdWUktMb19LcUJUQVRYZUNUbnI4TzBGYmpORGZRV0RjZUNyZVdaMkp2bFhORUNndmc" 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" 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"> <span class="review-title">I really love this app</span> I have no idea why there are so many irritated "customers" on here. This app is free, for one, and for two it is able to be translated onto multiple platforms (unlike OneNote and many others) I also extremely enjoy the audio feature and this app is very user friendly. I absolutely love this app <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"> <a href="/store/people/details?id=112641304010905253711"> <img class="author-image" alt="Zachary Dunn avatar image" src="https://lh6.googleusercontent.com/-MhCOR7xvTeA/AAAAAAAAAAI/AAAAAAAAAuw/zwoKdk8aWYA/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-6" data-reviewid="gp:AOqpTOFrv8bJBg0mE6PNZStPLWXmVxWGEm_773FjLJQoVwEtC987p_2cQXi9TnnvbB2-xK7cXbJaxaPNJfXhrQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=112641304010905253711">Zachary Dunn</a> </span> <span class="review-date">December 1, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRnJ2OGJKQmcwbUU2UE5aU3RQTFdYbVZ4V0dFbV83NzNGakxKUW9Wd0V0Qzk4N3BfMmNRWGk5VG5udmJCMi14SzdjWGJKYXhhUE5KZlhoclE" 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" 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"> <span class="review-title">Alright</span> The constant feature advertisements are annoying. The widget and Wear components should be a part of this app, not separate downloads. It defeats the ease of both of them to separate them. The tablet layout floating button should be the same as the phone. I think the compressed nav drawer on tablets is just in the way. <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"> <a href="/store/people/details?id=100327870422249817849"> <img class="author-image" alt="Ryan Spears avatar image" src="https://lh6.googleusercontent.com/-hr_TM2rxsgE/AAAAAAAAAAI/AAAAAAAAE5s/EPVHcLuzuGA/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-7" data-reviewid="gp:AOqpTOEx3eq6Vr6bXhN4uZuciIs2lrMCCI0KIaD1YUfS3DaoAAaTjZHPpSETmjghkT0kSONQYlnWpfSGoz0Klw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=100327870422249817849">Ryan Spears</a> </span> <span class="review-date">December 3, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRXgzZXE2VnI2YlhoTjR1WnVjaUlzMmxyTUNDSTBLSWFEMVlVZlMzRGFvQUFhVGpaSFBwU0VUbWpnaGtUMGtTT05RWWxuV3BmU0dvejBLbHc" 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" 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"> <span class="review-title">Each update introduces new design features and new problems</span> New redesign is a step in the right direction, and I can really appreciate where they are going with this. But now I am getting repeated conflicts with this and desktop app. Three major gripes: 1. Numbered lists are not compatible with check lists. 2. Tags cannot be placed within tags. 3. Tags cannot be deleted. These features are extremely important and used daily in the desktop version. Would like to see some consistency. <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"> <a href="/store/people/details?id=116078014224684137097"> <img class="author-image" alt="Casper von Sader avatar image" src="https://lh3.googleusercontent.com/-yzLPMw0KsHY/AAAAAAAAAAI/AAAAAAAAHwM/DPRVTNYPeRk/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-8" data-reviewid="gp:AOqpTOEWauRAP-hN6qGKZrO7fe9WPnwTF1m91bGv1uznL8WdNrIY7F5CGf8u_L8DWPmfOvSVeI6dEDeurl1uZA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=116078014224684137097">Casper von Sader</a> </span> <span class="review-date">November 30, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRVdhdVJBUC1oTjZxR0tack83ZmU5V1Bud1RGMW05MWJHdjF1em5MOFdkTnJJWTdGNUNHZjh1X0w4RFdQbWZPdlNWZUk2ZEVEZXVybDF1WkE" 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" 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"> <span class="review-title">Totally Indispensable!</span> No more need be said. It is the daily mainstay of all my intellectual ramblings and cerebral eccentricities. Couldn't do without 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"> <a href="/store/people/details?id=107920964623559442872"> <img class="author-image" alt="Scott Jalbert avatar image" src="https://lh6.googleusercontent.com/-brkoGCqdQwo/AAAAAAAAAAI/AAAAAAAAAFI/hPMOC0ZHiog/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-9" data-reviewid="gp:AOqpTOG5gqecTGrpj9xPoGZC9pS-NkoUHVnIpOh7EGuj4sS6-nDEmsXTb3ucCEZZFzfO_iUUuJWdIiZJslM5EQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=107920964623559442872">Scott Jalbert</a> </span> <span class="review-date">November 30, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRzVncWVjVEdycGo5eFBvR1pDOXBTLU5rb1VIVm5JcE9oN0VHdWo0c1M2LW5ERW1zWFRiM3VjQ0VaWkZ6Zk9faVVVdUpXZElpWkpzbE01RVE" 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" 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"> <span class="review-title">Reliable sync</span> A good note syncing service with excellent conflict resolution for bad cell connectivity, this alone is worth the money. The free apps can't compare in this department or in the other features offered either. <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"> <a href="/store/people/details?id=111887144382219575141"> <img class="author-image" alt="Jason Carter avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> <div class="review-header" data-expand-target="user-10" data-reviewid="gp:AOqpTOEmPIbWecyAmCcKQ__07GwcsCAeRI1JeSxz43lGrXcHbIk5EsGd5WbZpPkVQLZLeYX-5qkK-QyABRN6bQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=111887144382219575141">Jason Carter</a> </span> <span class="review-date">November 30, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRW1QSWJXZWN5QW1DY0tRX18wN0d3Y3NDQWVSSTFKZVN4ejQzbEdyWGNIYklrNUVzR2Q1V2JacFBrVlFMWkxlWVgtNXFrSy1ReUFCUk42YlE" 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" 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"> <span class="review-title">This App Saved My Life</span> I am so completely unorganized and this app gave me a platform to correct my sloppiness. :-) <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"> <a href="/store/people/details?id=102413431428625566999"> <img class="author-image" alt="Tristen Heatherly avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> <div class="review-header" data-expand-target="user-11" data-reviewid="gp:AOqpTOHlQpWenTyB6DUjDkNI0LBFDDTl4OBytMQbvQnqBb5coeRf4NTM31lYNgPkaOH6Xcen7X-0hr2gdE9Jjw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=102413431428625566999">Tristen Heatherly</a> </span> <span class="review-date">December 1, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSGxRcFdlblR5QjZEVWpEa05JMExCRkREVGw0T0J5dE1RYnZRbnFCYjVjb2VSZjROVE0zMWxZTmdQa2FPSDZYY2VuN1gtMGhyMmdkRTlKanc" 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" 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"> <span class="review-title">Yes.</span> I like it, well done. However, it would be great if somehow the checked things on the to do list could be crossed out or maybe sectioned out somehow; sort of like how Google keep does 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"> <a href="/store/people/details?id=104930865991386405737"> <img class="author-image" alt="Steve Dorrans avatar image" src="https://lh3.googleusercontent.com/-zUrWdXwqPOE/AAAAAAAAAAI/AAAAAAAAAD0/UA5M72aA61Q/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-12" data-reviewid="gp:AOqpTOEBEOjQy5KBLMgSIjDGONj0Rt2-Uq3btxkQ23wYdO0Lu9CSuVISyHeLLuR_-DiqhULu7Ny8cJZbpWkoYA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=104930865991386405737">Steve Dorrans</a> </span> <span class="review-date">November 28, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRUJFT2pReTVLQkxNZ1NJakRHT05qMFJ0Mi1VcTNidHhrUTIzd1lkTzBMdTlDU3VWSVN5SGVMTHVSXy1EaXFoVUx1N055OGNKWmJwV2tvWUE" 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" 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"> <span class="review-title">Awesome productivity tool</span> I can't believe how useful evernote has been for me. I have a scansnap usb scanner which plugs into my laptop and does duplex scans have all my paperwork in a matter of seconds, which evernote safes in a searchable pdf format allowing me to have a paperless office at last. The convenience of having all my e-mails and files saved in evernote is just exceptionally helpful - thank you evernote i could not be more grateful! <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"> <a href="/store/people/details?id=112990453132129953972"> <img class="author-image" alt="Josh Wiley avatar image" src="https://lh4.googleusercontent.com/-rzsiW8JVb84/AAAAAAAAAAI/AAAAAAAAGfw/w0jc4ktEEx4/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-13" data-reviewid="gp:AOqpTOFlnCJXikvuB_RnShS_YV05M3-u1JjByAwx2LbmVzwIGGrmES6LT9rxVZUUYo_ADD3dobrm2Bx1RH1wXQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=112990453132129953972">Josh Wiley</a> </span> <span class="review-date">December 3, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRmxuQ0pYaWt2dUJfUm5TaFNfWVYwNU0zLXUxSmpCeUF3eDJMYm1WendJR0dybUVTNkxUOXJ4VlpVVVlvX0FERDNkb2JybTJCeDFSSDF3WFE" 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" 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"> <span class="review-title">Awesome for Students</span> If you are in school, this is a must-have. Along with being one of the most important apps on my device, Evernote has allowed me to go almost completely paperless (with the exception of my Math classes). The developers are awesome: New features are frequently added, bugs are eliminated before most users even notice, and the design is kept sleek and fresh. <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"> <a href="/store/people/details?id=105807520821537223901"> <img class="author-image" alt="Wayne Mason avatar image" src="https://lh4.googleusercontent.com/-WidRqOOIDBc/AAAAAAAAAAI/AAAAAAAAALk/iGxHuBMYE8U/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-14" data-reviewid="gp:AOqpTOHKMM7Zj09jBFcTSQPIdQCuQIvhRmwImRs4PvVP0ilsuW0AxfIc6vFWHBpkRelRzq57veN6iHBSDvCMWQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=105807520821537223901">Wayne Mason</a> </span> <span class="review-date">November 26, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSEtNTTdaajA5akJGY1RTUVBJZFFDdVFJdmhSbXdJbVJzNFB2VlAwaWxzdVcwQXhmSWM2dkZXSEJwa1JlbFJ6cTU3dmVONmlIQlNEdkNNV1E" 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" 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"> <span class="review-title">Tell us how we are doing, rate the app... Wtf</span> What's the point.. You take no notice at all. Still the different text size between view and edit exists. Why is view so large... Why can't it be the same size as edit. This is basics, and very important when the app is based around text notes. Why can't the font sizes be consistent. You pay no attention at all to customers in my view, this I have seen raised many times by others in various places on internet. If that was fixed the app would be good and not irritate when viewing and editing. <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"> <a href="/store/people/details?id=103390168776754930161"> <img class="author-image" alt="Charles Sutton avatar image" src="https://lh3.googleusercontent.com/-n95R421iGYA/AAAAAAAAAAI/AAAAAAAACc8/YRnMvjKhAX8/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-15" data-reviewid="gp:AOqpTOGItZ8m90VAyhl0g6Z008AZlXtt0zX0RhF5y59tAENYkCgYZtm3Or5jkJhuICSwKwa-c11Nr6Uff3LIag"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=103390168776754930161">Charles Sutton</a> </span> <span class="review-date">November 27, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR0l0WjhtOTBWQXlobDBnNlowMDhBWmxYdHQwelgwUmhGNXk1OXRBRU5Za0NnWVp0bTNPcjVqa0podUlDU3dLd2EtYzExTnI2VWZmM0xJYWc" 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" 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"> <span class="review-title">Obscure</span> I got this application because the description said it could make to do lists. Maybe it can, but I am hanged if I can figure out how. The only reason I have not deleted it is that early on I made a note I need to get a small project done. Once that is completed, away it goes. <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"> <a href="/store/people/details?id=109392101658120718314"> <img class="author-image" alt="Walt Woody avatar image" src="https://lh4.googleusercontent.com/-oJZo0FYxFAU/AAAAAAAAAAI/AAAAAAAAAAA/zgZeBgYhsDY/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-16" data-reviewid="gp:AOqpTOEvC0yRyGJ812jJ4TP5iHVe78s_LVNYX_q8oDdhCr_bZOgSq-f3tA3FnlUTVhP_oyf3DTxTMxLNS3TEzA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=109392101658120718314">Walt Woody</a> </span> <span class="review-date">November 30, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRXZDMHlSeUdKODEyako0VFA1aUhWZTc4c19MVk5ZWF9xOG9EZGhDcl9iWk9nU3EtZjN0QTNGbmxVVFZoUF9veWYzRFR4VE14TE5TM1RFekE" 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" 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"> <span class="review-title">Very Handy</span> I would give Evernote five stars except that it has some sync issues. If a change was made on another device (phone, tablet, desktop app, browser, etc) it frequently announces a conflict, even if the change was made days ago when opening a note. Evidently it waits to sync notes when they are opened. I have left the note open for over a minute without it synching. Otherwise I absolutely love being able to have my notes and lists available wherever I am on whatever device I am using at the moment. <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"> <a href="/store/people/details?id=117578903203286467871"> <img class="author-image" alt="Kevin Wiebe avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> <div class="review-header" data-expand-target="user-17" data-reviewid="gp:AOqpTOGz0HlYjpl4SNxLHhgYtKIXS5S_UADq1n0n7dwoitgfGqFpq1lNx1GS0v_epeaev1_CPBlaS8K05QuLFA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=117578903203286467871">Kevin Wiebe</a> </span> <span class="review-date">November 27, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR3owSGxZanBsNFNOeExIaGdZdEtJWFM1U19VQURxMW4wbjdkd29pdGdmR3FGcHExbE54MUdTMHZfZXBlYWV2MV9DUEJsYVM4SzA1UXVMRkE" 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" 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"> <span class="review-title">Great, very useful app!</span> I have been using this app for a couple years and really enjoy using it. It seems like there is always something new to learn after every update, usually a good feature. However, I used to really like being able to modify a text note by clicking anywhere on the note and not just the little green pen icon. Thanks for helping me stay a little organized. <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-18" data-reviewid="lg:AOqpTOFEYQseFkY7Oq2wsCVMq9XVaw5mHIJn7UvDsVJbGAw-Gr0GgIUJRDq_NishrobzNn05K5vIoAvT6yUcMw"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">December 2, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPRkVZUXNlRmtZN09xMndzQ1ZNcTlYVmF3NW1ISUpuN1V2RHNWSmJHQXctR3IwR2dJVUpSRHFfTmlzaHJvYnpObjA1SzV2SW9BdlQ2eVVjTXc" 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" 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"> <span class="review-title">Great idea, brittle implementation...</span> I love Evernote but it drives be crazy since I can't reliably share content. Syncing does not happen, sharing stops. And there is nothing I can do to understand what is broken. <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"> <a href="/store/people/details?id=111064859315143552394"> <img class="author-image" alt="Richard Erickson avatar image" src="https://lh4.googleusercontent.com/-nAcVXSifXRw/AAAAAAAAAAI/AAAAAAAAGjI/-WF6DeNT0vQ/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-19" data-reviewid="gp:AOqpTOGwd3bYXSvBjMY9Xu6THuQzggqMoPWIMSWxQxihezUuOgac02WSsa2iZ7rPHA4SvjT5iBjB9zTn-bwH2g"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=111064859315143552394">Richard Erickson</a> </span> <span class="review-date">November 27, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR3dkM2JZWFN2QmpNWTlYdTZUSHVRemdncU1vUFdJTVNXeFF4aWhlelV1T2dhYzAyV1NzYTJpWjdyUEhBNFN2alQ1aUJqQjl6VG4tYndIMmc" 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" 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"> <span class="review-title">Best in Class</span> It needs themes/color options to increase ease of use but Evernote is the premier personal tool. If you're interested in being organized, informed, and in having a great way to use "down time" this will likely to the trick. Its adaptable to your needs. Very usefull. Google common place note book, then multiply the concept x100. <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"> <a href="/store/people/details?id=117065437312184293877"> <img class="author-image" alt="James Herrero avatar image" src="https://lh3.googleusercontent.com/-Uko4YzOhrAo/AAAAAAAAAAI/AAAAAAAAAB4/BtjTuLJ-hcQ/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-20" data-reviewid="gp:AOqpTOFWsdV6kHlpmZf7MZzZarKeyhG-iKMu6PiC2JnGDk2OF3iJk0ztmw6WtEBIkJCSVnVstM0jkUi44l9dig"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=117065437312184293877">James Herrero</a> </span> <span class="review-date">November 29, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRldzZFY2a0hscG1aZjdNWnpaYXJLZXloRy1pS011NlBpQzJKbkdEazJPRjNpSmswenRtdzZXdEVCSWtKQ1NWblZzdE0wamtVaTQ0bDlkaWc" 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" 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"> <span class="review-title">Great app.. just runs so slow</span> Great app, but slow and unreliable at time.. very frustrating for everyday use and the lag has stopped me from using the app at times and switching to a pen and paper. Clunky and slow.. wish they would address this. <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-21" data-reviewid="lg:AOqpTOHXM8eVxE7WftHw9TP6ovZbpxdLMVdO-sD5XakFFTQHXfbI-lf0aEimoSOy1pnePBQ3-0rXb9lRxhVXkg"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">November 27, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPSFhNOGVWeEU3V2Z0SHc5VFA2b3ZaYnB4ZExNVmRPLXNENVhha0ZGVFFIWGZiSS1sZjBhRWltb1NPeTFwbmVQQlEzLTByWGI5bFJ4aFZYa2c" 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" 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"> <span class="review-title">Good app</span> Quite useful. But I am getting tired of all the 'work chat' info windoids. Yes, it's a feature, but no, I don't care to use it. Google Keep is starting to look 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"> <a href="/store/people/details?id=104080579768082986318"> <img class="author-image" alt="promit ghosh avatar image" src="https://lh6.googleusercontent.com/-nhzgic-RDuc/AAAAAAAAAAI/AAAAAAAAAEU/1eU_VSXE_I4/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-22" data-reviewid="gp:AOqpTOHHsz0ja0d--rBWZJr7Rl-sNOxtyXVRbJFd2wt1wIiy7uWxQJydGRw06cIaYbwTAjDd_bp_iUxiVqO0Ow"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=104080579768082986318">promit ghosh</a> </span> <span class="review-date">November 26, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSEhzejBqYTBkLS1yQldaSnI3Umwtc05PeHR5WFZSYkpGZDJ3dDF3SWl5N3VXeFFKeWRHUncwNmNJYVlid1RBakRkX2JwX2lVeGlWcU8wT3c" 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" 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"> <span class="review-title">One note is far better</span> Decent app, but Evernote's organization of my pages and notes is far worse than OneNote's. I'll be sticking with that app instead of using this. <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"> <a href="/store/people/details?id=114299262507923012703"> <img class="author-image" alt="Matthew Dye avatar image" src="https://lh6.googleusercontent.com/-hoC0JCD4dGY/AAAAAAAAAAI/AAAAAAAAgTE/Zh7tUJ9dk-c/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-23" data-reviewid="gp:AOqpTOFqGFNjfTi6T1EZNN-GaL-u1WN6sFg9lH8gm6RmOo8e86f7TDv2RSa0hj1VaE8gr8LdL5VXJdmHmMfkfg"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=114299262507923012703">Matthew Dye</a> </span> <span class="review-date">November 30, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRnFHRk5qZlRpNlQxRVpOTi1HYUwtdTFXTjZzRmc5bEg4Z202Um1PbzhlODZmN1REdjJSU2EwaGoxVmFFOGdyOExkTDVWWEpkbUhtTWZrZmc" 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" 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"> <span class="review-title">Deserves the accolades</span> Frequent updates, beautiful adherence to Google Android guidelines and lots of innovation for what should be a pretty standard app with standard functionality. One of the best apps one can use. <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"> <a href="/store/people/details?id=115485469417545853489"> <img class="author-image" alt="Nathan Manna avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> <div class="review-header" data-expand-target="user-24" data-reviewid="gp:AOqpTOFplzp8TVgoTdy2FykxeF0hXODuhcHTnZR0_QWVDww7GSoC3dRiileta0oO511spCcocNoX_iRiDNQynw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=115485469417545853489">Nathan Manna</a> </span> <span class="review-date">December 2, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRnBsenA4VFZnb1RkeTJGeWt4ZUYwaFhPRHVoY0hUblpSMF9RV1ZEd3c3R1NvQzNkUmlpbGV0YTBvTzUxMXNwQ2NvY05vWF9pUmlETlF5bnc" 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" 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"> <span class="review-title">Extremely Useful</span> I have enjoyed this app. Nothing is perfect but this app has given me no issues. Cant wait to see how much more I can use it for. <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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-25" data-reviewid="lg:AOqpTOHDd-UbZ7DU3EmdXMhwaI_-p3MKyE8LfWUhWvndyR0pya0Mb47t6HUcSmME3j9vhGaNbwTT9tx6ifewDw"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">November 28, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPSERkLVViWjdEVTNFbWRYTWh3YUlfLXAzTUt5RThMZldVaFd2bmR5UjBweWEwTWI0N3Q2SFVjU21NRTNqOXZoR2FOYndUVDl0eDZpZmV3RHc" 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" 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"> <span class="review-title">Really awesome app, many features, constantly improving.</span> Awesome app. The features are endless yet useful. Snappy performance and bug free in my experience. The only possible drawback is that the app is becoming fairly complex in comparison with e.g. Google Keep. Feature set is however incomparable. <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"> <a href="/store/people/details?id=110736296708313981691"> <img class="author-image" alt="Natalie Duke avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> <div class="review-header" data-expand-target="user-26" data-reviewid="gp:AOqpTOH2D4ukPtDDiKyOqaf_A88taeFO_u0c0NfhLvXb7RzcVa3W7UKezjxTndagi7UdY_BumrRy_CkUev5amQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=110736296708313981691">Natalie Duke</a> </span> <span class="review-date">November 30, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSDJENHVrUHRERGlLeU9xYWZfQTg4dGFlRk9fdTBjME5maEx2WGI3UnpjVmEzVzdVS2V6anhUbmRhZ2k3VWRZX0J1bXJSeV9Da1VldjVhbVE" 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" 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"> <span class="review-title">Evernote is incredible!</span> I absolutely love Evernote; its clean interface, sensible layout, and easy controls make it a valuable tool for writing, taking notes, and anything else. It's easy to organize and group notes. The only slight criticism I can give would be that I wish it was a little better with long documents. I use Evernote for writing, so it can take a while to scroll all the way to the bottom. Also, when I'm viewing a note and change to edit mode, it goes to the top of the page. I ♥ Evernote though, Job well done! <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"> <a href="/store/people/details?id=103221562399306818728"> <img class="author-image" alt="Maurits Moretto avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> <div class="review-header" data-expand-target="user-27" data-reviewid="gp:AOqpTOH36oGy_XQt14uLcbS348XKce6pmvAu5E9_t9QlOdghxTGCW7FlaMGwR4j8ALuaGB_8Hn1MiCcIpKCGeA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=103221562399306818728">Maurits Moretto</a> </span> <span class="review-date">November 27, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSDM2b0d5X1hRdDE0dUxjYlMzNDhYS2NlNnBtdkF1NUU5X3Q5UWxPZGdoeFRHQ1c3RmxhTUd3UjRqOEFMdWFHQl84SG4xTWlDY0lwS0NHZUE" 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" 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"> <span class="review-title">Syncronysing with everything</span> Great app. Smooth. Intuitive. Polished. Cross-platform compatabilty mostly unproblematic. Unfussy on note types . Great browser -app compatabilitied. Works with most common attachments formats. Love the logo. <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"> <a href="/store/people/details?id=110525241531481388314"> <img class="author-image" alt="Ryan Diaz avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> <div class="review-header" data-expand-target="user-28" data-reviewid="gp:AOqpTOH6TdWYlHIQjDDTVcdcuBmTCO27mOatuAsiIK58bR-UPUAmxnsFUf5uBROTTyuwBIxSQeScB5Pzamy1LQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=110525241531481388314">Ryan Diaz</a> </span> <span class="review-date">November 29, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPSDZUZFdZbEhJUWpERFRWY2RjdUJtVENPMjdtT2F0dUFzaUlLNThiUi1VUFVBbXhuc0ZVZjV1QlJPVFR5dXdCSXhTUWVTY0I1UHphbXkxTFE" 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" 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"> <span class="review-title">Superb!</span> Evernote makes taking notes much easier. I use it to write anything digitally. The reminders come in handy but I wish more work were placed on them as much as the convenience of the overall app. I, sadly, cannot give it 5 stars for one problem I have. The feature of 'Emailing from Evernote' is that problem. When I try to send emails, even to myself, they never appear in my inbox but evernote notifies me that they are sent. It has been 2 weeks and the email I sent myself has never been received. So until this feature is tweaked, I copy and paste my Evernote notes in my email. Otherwise, it is just fantastic but please look into this... <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"> <a href="/store/people/details?id=103796559159160519530"> <img class="author-image" alt="Ed Agrawal avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> <div class="review-header" data-expand-target="user-29" data-reviewid="gp:AOqpTOG4uJDEFxWezGuCjKazoUg08Pyk0fkhCNVdOGJEWBm-0-3fhxv__RLvvshTZ4IgMidRE6Zw6nOPBJow3Q"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=103796559159160519530">Ed Agrawal</a> </span> <span class="review-date">December 3, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRzR1SkRFRnhXZXpHdUNqS2F6b1VnMDhQeWswZmtoQ05WZE9HSkVXQm0tMC0zZmh4dl9fUkx2dnNoVFo0SWdNaWRSRTZadzZuT1BCSm93M1E" 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" 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"> <span class="review-title">worst app ever, slow and unusable</span> i can't imagine how an app like evernote got to this level of popularity. The app is horrible - way toooooo slow and buggy to use on Samsung Galaxy Android phone that I'm using. Simply unusable. I am literally tearing my hair out. I now have to spend a lot of effort to migrate away from this crappy app, they should pay me for wasting my time with this pathetic quality app <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"> <a href="/store/people/details?id=103732840871696665647"> <img class="author-image" alt="Angie Clark avatar image" src="https://lh4.googleusercontent.com/-Ayz7US5BN0Y/AAAAAAAAAAI/AAAAAAAABBY/icOtmIIGFOA/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-30" data-reviewid="gp:AOqpTOG2FHV5i8CJIxRvAEFup6mpVGgd5AGwkrBo0xKhCxC0mF7v04uHZlFmK7T2cJlBmv-7YEjhDcq2MuoPSA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=103732840871696665647">Angie Clark</a> </span> <span class="review-date">December 4, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRzJGSFY1aThDSkl4UnZBRUZ1cDZtcFZHZ2Q1QUd3a3JCbzB4S2hDeEMwbUY3djA0dUhabEZtSzdUMmNKbEJtdi03WUVqaERjcTJNdW9QU0E" 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" 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"> <span class="review-title">Please don't let this app become too complex for average user.</span> I love evernote, one of the biggest original draws to this app was the simplicity of using it. Developers please don't start getting carried away by adding updates that start to make this app too confusing and user unfriendly for an average user. Improvement is great if you don't lose sight of the big picture. It would be so disappointing if that happened. Keep it so people of all generations can learn how to use this app with ease to make their lives more organized and less stressful. Thanks so much! <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"> <a href="/store/people/details?id=104022294893581111531"> <img class="author-image" alt="Maria Schreiner avatar image" src="https://lh3.googleusercontent.com/-r2Raf9BKg6k/AAAAAAAAAAI/AAAAAAAAAD4/9UYmcCH3pu8/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-31" data-reviewid="gp:AOqpTOFeq9R_FAmW4bx7ItRswXSIdeovWgfvfnosnu5PWPnzS8_9OnMjk-JlxHeCsISj7yVkNoO5t9O9WOMmcw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=104022294893581111531">Maria Schreiner</a> </span> <span class="review-date">November 27, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRmVxOVJfRkFtVzRieDdJdFJzd1hTSWRlb3ZXZ2Z2Zm5vc251NVBXUG56UzhfOU9uTWprLUpseEhlQ3NJU2o3eVZrTm9PNXQ5TzlXT01tY3c" 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" 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"> <span class="review-title">The best and getting better</span> Evernote and this app are hugely powerful and helpful. I got great support when I was trying to use an ancient phone and having issues. When I got a Nexus 5 last year and experienced how it was supposed to run I was floored! I suggest Getting Things Done for Evernote, a few bucks, but it explains and applies the power of Evernote. *** Still wishing for a transparent list view widget so I can see my pretty live wallpaper!***" <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"> <a href="/store/people/details?id=106145730430611179550"> <img class="author-image" alt="Shridhar Navanageri avatar image" src="https://lh3.googleusercontent.com/-GFJ9V6CIH1c/AAAAAAAAAAI/AAAAAAAACBg/R3Dsj8JGU_w/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-32" data-reviewid="gp:AOqpTOF9QD55pycTHj6NaAoWnqZf3fS0cE8gIdMxqxri_OjsbMX1pt2hbxNbXS9q_5uG9cxRDZqOVSBTEEVqrA"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=106145730430611179550">Shridhar Navanageri</a> </span> <span class="review-date">November 29, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRjlRRDU1cHljVEhqNk5hQW9XbnFaZjNmUzBjRThnSWRNeHF4cmlfT2pzYk1YMXB0MmhieE5iWFM5cV81dUc5Y3hSRFpxT1ZTQlRFRVZxckE" 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" 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"> <span class="review-title">Nice app</span> Love the ease of use and platform independence. The innovative new features are pretty cool as well! <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"> <a href="/store/people/details?id=117043265538542518888"> <img class="author-image" alt="Emma Thomas avatar image" src="https://lh5.googleusercontent.com/-J_whbQd-X88/AAAAAAAAAAI/AAAAAAAAARA/V3pxqzjYmvg/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-33" data-reviewid="gp:AOqpTOGWL-t7BjGP0gtUbWIfMX6P4NLL656vISawg9bwWRnEGKVA5NoHFdM66tKec2hKA9Nbq6_yJ_YRRZkOuw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=117043265538542518888">Emma Thomas</a> </span> <span class="review-date">November 27, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR1dMLXQ3QmpHUDBndFViV0lmTVg2UDROTEw2NTZ2SVNhd2c5YndXUm5FR0tWQTVOb0hGZE02NnRLZWMyaEtBOU5icTZfeUpfWVJSWmtPdXc" 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" 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"> <span class="review-title">Best administrative investment ever!</span> I pay for premium access to Evernote and my use of it has revolutionized my work and person life with the convenience and order across devices it brings. Fantastic work, and I hope you will be able to continue to offer the free version for as long as possible for those smaller users or who simply cannot afford to get premium (although very reasonably priced). Thank you! <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"> <a href="/store/people/details?id=115846213026851532224"> <img class="author-image" alt="Yash Gupta avatar image" src="https://lh4.googleusercontent.com/-YeARkrHm1gA/AAAAAAAAAAI/AAAAAAAAABc/45x1ICD7Bgg/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-34" data-reviewid="gp:AOqpTOGTO6LM73UkZYGRfldMHpMQ6Dy7kNKTy4sukm6BZNgTkFS4QmQuYgF8XNW-xRVcIlx55sZ21Kor-Qp6fQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=115846213026851532224">Yash Gupta</a> </span> <span class="review-date">November 30, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR1RPNkxNNzNVa1pZR1JmbGRNSHBNUTZEeTdrTktUeTRzdWttNkJaTmdUa0ZTNFFtUXVZZ0Y4WE5XLXhSVmNJbHg1NXNaMjFLb3ItUXA2ZlE" 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" 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"> <span class="review-title">Happy user</span> Evernote is a great app..very useful..easy to use..all functions that one needs..love it..its not dull..fun to use..different functions are just 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"> <span> <img class="author-image" alt="A Google User avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </span> <div class="review-header" data-expand-target="user-35" data-reviewid="lg:AOqpTOHWLbxlt24YxcPuwlmsK9k_MYLOTMRhSLy-6SQBduEp6vLOinVlqJjaX3oezpf2SF6qbp5MO-7T_0kIIA"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="review-date">November 30, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=bGc6QU9xcFRPSFdMYnhsdDI0WXhjUHV3bG1zSzlrX01ZTE9UTVJoU0x5LTZTUUJkdUVwNnZMT2luVmxxSmphWDNvZXpwZjJTRjZxYnA1TU8tN1RfMGtJSUE" 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" 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"> <span class="review-title">Keeps asking for ratings - improved.</span> The application is awesome, the best information organization tool available. I'd given it a low rating because of its intrusive requests for a rating. They've improved with a less intrusive request. Here's a better rating. It gets 5 stars when there's no request for a rating after it's been rated. <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"> <a href="/store/people/details?id=110855491443978135706"> <img class="author-image" alt="GM DIceplaya avatar image" src="https://lh5.googleusercontent.com/-bjyzYiEJzj0/AAAAAAAAAAI/AAAAAAAAABk/Il9OJvxpErY/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-36" data-reviewid="gp:AOqpTOGLuF0JXQ_-quWHG-Q_QdSyUHgXvmHsKQ9dJtZK6rrUQqS6ezbykMz5WPIXBm0P8k3UokYlDc7iiwCDiw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=110855491443978135706">GM DIceplaya</a> </span> <span class="review-date">December 2, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR0x1RjBKWFFfLXF1V0hHLVFfUWRTeVVIZ1h2bUhzS1E5ZEp0Wks2cnJVUXFTNmV6YnlrTXo1V1BJWEJtMFA4azNVb2tZbERjN2lpd0NEaXc" 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" 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"> <span class="review-title">Love just Love</span> This application has helped me a lot. I mostly use ever note when I am in school. I take so many notes that this is an easy place for me store everything and it has a nice convenience that everything is just from a tap of a screen. Thank you for making this app. I would kiss you so hard right now 😘😘😘😘😘😘😄😄😄😄😄 <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"> <a href="/store/people/details?id=115520040755222010261"> <img class="author-image" alt="Shannon Ballard avatar image" src="https://lh3.googleusercontent.com/-Z-xZNnVQQig/AAAAAAAAAAI/AAAAAAAAAHk/_ruurdQ1vlw/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-37" data-reviewid="gp:AOqpTOE0Y-rh7g1ig3ONX01jZxZ4P3r2J9nDLOmQlJe2HdMcfcp9Zg5jMpDnjAi7KJiOQfNCdYbFLWpADfbyEw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=115520040755222010261">Shannon Ballard</a> </span> <span class="review-date">November 28, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRTBZLXJoN2cxaWczT05YMDFqWnhaNFAzcjJKOW5ETE9tUWxKZTJIZE1jZmNwOVpnNWpNcERuakFpN0tKaU9RZk5DZFliRkxXcEFEZmJ5RXc" 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" 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"> <span class="review-title">Premium subscription</span> I love this app. But after this last update it has become the most hated app on my phone even more hated than the AT&amp;T bloatware junk. This getting notifications and emails saying that my premium subscription has expired every day is about worthless. I have never had a premium subscription and after seeing all of these emails and notifications all hours of the day and night I never will. And if these stupid notifications don't stop I will have to remove this app. :( <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"> <a href="/store/people/details?id=114901458185623433156"> <img class="author-image" alt="Simon Jolly avatar image" src="https://lh3.googleusercontent.com/-XN8gL0wot2I/AAAAAAAAAAI/AAAAAAAAE44/7zVqG5hsd34/w48-c-h48/photo.jpg"> </a> <div class="review-header" data-expand-target="user-38" data-reviewid="gp:AOqpTOGLikm1FIaictn1VK7vTlxcqM3JLO14QHHnzpHs8o5gfdmeo_MYDJTGAnP7Xr_oH5lWJ0ld5eslm9c8zw"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=114901458185623433156">Simon Jolly</a> </span> <span class="review-date">November 30, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPR0xpa20xRklhaWN0bjFWSzd2VGx4Y3FNM0pMTzE0UUhIbnpwSHM4bzVnZmRtZW9fTVlESlRHQW5QN1hyX29INWxXSjBsZDVlc2xtOWM4enc" 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" 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"> <span class="review-title">Excellent</span> No complaints other than the annoying pop ups <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"> <a href="/store/people/details?id=108350859359820932301"> <img class="author-image" alt="Preston Soh avatar image" src="https://lh3.googleusercontent.com/uFp_tsTJboUY7kue5XAsGA=w48-c-h48"> </a> <div class="review-header" data-expand-target="user-39" data-reviewid="gp:AOqpTOFtFVGo2E3j-FvaCPkR0JIumIMmYYIFMYuy8juRgWt1eD_px6nCUMaYVC0wqVXpKb5BQrCxUTsBXwEmvQ"> <div class="review-info"> <span class="author-name"> <a href="/store/people/details?id=108350859359820932301">Preston Soh</a> </span> <span class="review-date">November 27, 2014</span> <a class="reviews-permalink" href="/store/apps/details?id=com.evernote&amp;reviewId=Z3A6QU9xcFRPRnRGVkdvMkUzai1GdmFDUGtSMEpJdW1JTW1ZWUlGTVl1eThqdVJnV3QxZURfcHg2bkNVTWFZVkMwd3FWWHBLYjVCUXJDeFVUc0JYd0VtdlE" 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" 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"> <span class="review-title">Best notes app!</span> This is a best notes app. Been using for making notes, record, minute of meeting, etc. Used for more than 5 years and have tried many other note app but can't find a replacement because of its good syncing feature. On addition, calendar feature can be further improve. Hope to see more update on new feature. Give a 5 star for not giving me problem. Hope to see improve handwriting like S notes. Time line for task. Can create a form template for fill up just like S note. Looking forward to new feature. 👍 <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> <script>if (typeof ircs == 'undefined'){jQuery('body').one('onPressPlay',function(){ircs();});}else {ircs();}
80
+ </script> </div> <div class="details-wrapper"> <div class="details-section whatsnew"> <div class="details-section-contents show-more-container"> <div class="heading"> What's New </div> <div class="recent-change">Bugs fixes and miscellaneous improvements</div><div class="recent-change">Tell us how we’re doing! Rate the app.</div> <div class="show-more-end"></div> <div> <button class="play-button show-more small"> Read more </button> <button class="play-button expand-close"> <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"> <div class="heading"> Additional information </div> </div> <div class="details-section-contents"> <div class="meta-info"> <div class="title">Updated</div> <div class="content" itemprop="datePublished">November 26, 2014</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"> 50,000,000 - 100,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"> <div class="title">Content Rating</div> <div class="content" itemprop="contentRating"> Low Maturity </div> </div> <div class="meta-info"> <div class="title">In-app Products</div> <div class="content">$1.00 - $49.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
81
+ Redwood City, CA 94063</div> </div> </div> </div> <div class="details-section-divider"></div> </div> </div><div class="details-wrapper"> <div class="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"> <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"> <div class="card-content id-track-impression" data-docid="com.socialnmobile.dictapps.notepad.color.note" data-server-cookie="CAIaNwo1EjMKLWNvbS5zb2NpYWxubW9iaWxlLmRpY3RhcHBzLm5vdGVwYWQuY29sb3Iubm90ZRABGAM=" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaNwo1EjMKLWNvbS5zb2NpYWxubW9iaWxlLmRpY3RhcHBzLm5vdGVwYWQuY29sb3Iubm90ZRABGAM=" 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 class="cover-image" alt="ColorNote Notepad Notes" data-cover-large="https://lh3.ggpht.com/IDOtRhsZLSG3EFxWxmWREMPa42_SNQvl9-x4FBu5dn9aJMjpVtMx_GoNdnQwEIp_7gsV=w340" data-cover-small="https://lh3.ggpht.com/IDOtRhsZLSG3EFxWxmWREMPa42_SNQvl9-x4FBu5dn9aJMjpVtMx_GoNdnQwEIp_7gsV=w170" src="https://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-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=com.socialnmobile.dictapps.notepad.color.note" title="ColorNote Notepad Notes"> ColorNote Notepad Notes <span class="paragraph-end"></span> </a> </h2> <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" 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"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> ColorNote® is a simple and awesome notepad app. It gives you a quick and simple notepad editing experience when you write notes, memos, e-mails, messages, shopping lists and to-do lists. Taking notes with ColorNote® Notepad is easier than any other notepad or memo pad app.<p>* Notice *<br>- If you cannot find the widget, then please read the FAQ below.<br>- When you&#39;re finished using the notepad, an automatic save command preserves your individual note.<p>* Product Description *<br>ColorNote® features two basic note taking formats, a lined-paper styled text option, and a checklist option. Add as many as you want to your master list, which appears on the app&#39;s home screen each time the program opens. This list may be viewed in traditional ascending order, in grid format, or by note color.<p>- Taking a Note -<br>Serving as a simple word processing program, the text option allows for as many characters as you&#39;re willing to type. Once saved, you can edit, share, set a reminder, or check off or delete the note through your device&#39;s menu button. When checking off a text note, the app places a slash through the list&#39;s title, and this will be displayed on the main menu.<p>- Making To-do List or Shopping List -<br>In the checklist mode, you can add as many items as you&#39;d like and arrange their order with drag buttons activated in the edit mode. After the list is finished and saved, you may check or uncheck each line on your list with a quick tap, which will toggle a line slash. If all items have been checked, then the list&#39;s title is slashed as well.<p><br>* Features *<br>- Organize notes by color (color notebook)<br>- Sticky note memo widget (Post It notes on your home screen)<br>- Checklist notes for To do list &amp; Shopping list. (Quick and simple list maker)<br>- Checklist notes to get things done (GTD)<br>- Organize your schedule by note in calendar<br>- Write a diary and journal in calendar<br>- Password Lock note : Protect your notes with passcode<br>- Secured backup notes to SD storage<br>- Supports online back up and sync. You can sync notes between phone and tablet.<br>- Reminder notes on status bar<br>- List/Grid View<br>- Search notes<br>- Notepad supports ColorDict Add-on<br>- Powerful task reminder : Time Alarm, All day, Repetition.(lunar calendar)<br>- Quick memo / notes<br>- Wiki note link : [[Title]]<br>- Share notes via SMS, e-mail or Twitter<p>* Online backup and sync cloud service *<br>- Notes will be encrypted before uploading notes by using the AES standard, which is the same encryption standard used by banks to secure customer data.<br>- It does not send any of your notes to the server without you signing in.<br>- Sign-in with Google or Facebook.<p>* Permissions *<br>- Internet Access: For online backup &amp; sync notes<br>- Modify/delete SD card contents: For backup notes to SD card<br>- Prevent phone from sleeping, control vibrator, automatically start at boot: For reminder notes<p>* FAQ *<br>Q: How do you put a sticky note widget on the home screen?<br>A: Go to the home screen and hold down your finger on an empty space and choose widget, Color Note will then be desplayed so you can stick on the page. <p>Q: Why don&#39;t the widget, the alarm and notes remider functions work?<br>A: If the app is installed on the SD card, your widget, reminder, etc. will not work properly because Android doesn&#39;t support these features when installed on an SD card! If you have already moved the app to an SD card, but want those features, then you have to move the app back on the device and reboot your phone.<p>Settings - Applications - Manage Applications - Color Note - Move to Device<p>Q: Where are backed up notes data on the SD card?<br>A: &#39;/data/colornote&#39; or &#39;/Android/data/com.socialnmobile.dictapps.notepad.color.note/files&#39; on SD card <p>Q: I forgot my master password. How can I change it?<br>A: Menu → Settings → Master Password → Menu Button → Clear Password. You will lose your current locked notes when you clear the password!<p>Q: How can I create todo list note?<br>A: New - Select checklist note - Put items - Save. Tap an item to strikethrough.</p></p></p></p></p></p></p></p></p></p></p></p></p> <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" tabindex="-1"> <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" style="width: 90.57186126708984%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" 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"> <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"> <div class="card-content id-track-impression" data-docid="com.google.android.keep" data-server-cookie="CAIaIQofEh0KF2NvbS5nb29nbGUuYW5kcm9pZC5rZWVwEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaIQofEh0KF2NvbS5nb29nbGUuYW5kcm9pZC5rZWVwEAEYAw==" 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 class="cover-image" alt="Google Keep - notes and lists" data-cover-large="https://lh5.ggpht.com/DY9VpGNRSHoICKJVpIy9dMjgm7TOb3lTveLtsv4got8aqbLGpSS4w5xXiR7VBe-mr_M=w340" data-cover-small="https://lh5.ggpht.com/DY9VpGNRSHoICKJVpIy9dMjgm7TOb3lTveLtsv4got8aqbLGpSS4w5xXiR7VBe-mr_M=w170" src="https://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-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=com.google.android.keep" title="Google Keep - notes and lists"> Google Keep - notes and lists <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Google+Inc." title="Google Inc.">Google Inc.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" 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"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Quickly capture what’s on your mind and get a reminder later at the right place or time. Speak a voice memo on the go and have it automatically transcribed. Grab a photo of a poster, receipt or document and easily find it later in search. Google Keep makes it easy to capture a thought or list for yourself, and share it with friends and family.<p> Capture what’s on your mind<br> • Add notes, lists and photos to Google Keep. Pressed for time? Record a voice memo and Keep will transcribe it so you can find it later.<p> Share ideas with friends and family<br> • Easily plan that surprise party by sharing your Keep notes with others and collaborating on them in real time.<p> Find what you need, fast<br> • Color code notes to quickly organize and get on with your life. If you need to find something you saved, a simple search will turn it up.<p> A lways within reach<br> • Keep works on your phone, tablet, computer and Android wearables. Everything you add syncs across all of your devices so your thoughts are always with you.<p> The right note at the right time<br> • Need to remember to pick up some groceries? Set a location-based reminder to pull up your grocery list right when you get to the store.<p> Available everywhere<br> • Try Google Keep on the web at http://keep.google.com and find it in the Chrome Web Store at http://goo.gl/pQvKtH.</p></p></p></p></p></p> <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" tabindex="-1"> <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" style="width: 89.04450416564941%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" 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"> <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.flufflydelusions.app.enotesclassiclite" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.flufflydelusions.app.enotesclassiclite" data-server-cookie="CAIaNAoyEjAKKmNvbS5mbHVmZmx5ZGVsdXNpb25zLmFwcC5lbm90ZXNjbGFzc2ljbGl0ZRABGAM=" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaNAoyEjAKKmNvbS5mbHVmZmx5ZGVsdXNpb25zLmFwcC5lbm90ZXNjbGFzc2ljbGl0ZRABGAM=" data-uitype="500" href="/store/apps/details?id=com.flufflydelusions.app.enotesclassiclite" 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 class="cover-image" alt="Classic Notes Lite - Notepad" data-cover-large="https://lh4.ggpht.com/hvEnAn5_HnHVu24exCcDHvsh7Rt_483bTFJtvnho9wbPbhIdycWCBPKOScWUp5NA09c=w340" data-cover-small="https://lh4.ggpht.com/hvEnAn5_HnHVu24exCcDHvsh7Rt_483bTFJtvnho9wbPbhIdycWCBPKOScWUp5NA09c=w170" src="https://lh4.ggpht.com/hvEnAn5_HnHVu24exCcDHvsh7Rt_483bTFJtvnho9wbPbhIdycWCBPKOScWUp5NA09c=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.flufflydelusions.app.enotesclassiclite" aria-hidden="true" tabindex="-1"> <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.flufflydelusions.app.enotesclassiclite"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.flufflydelusions.app.enotesclassiclite" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.flufflydelusions.app.enotesclassiclite" title="Classic Notes Lite - Notepad"> Classic Notes Lite - Notepad <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Fluffy+Delusions" title="Fluffy Delusions">Fluffy Delusions</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.flufflydelusions.app.enotesclassiclite"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> ** LITE VERSION IS AD SUPPORTED. A PAID VERSION IS AVAILABLE THAT IS AD FREE **<p>** IF YOU ENJOY THIS APP CHECK OUT MY NEWLY RELEASED CONVERT EVERYTHING APP **<p>- A Simple Note-Taking App for Android, Plus More Tiny Utilities Than You’ll Know What to Do With - Lifehacker<p>- Classic Notes + App Box for Android: Like a Better iPhone Notes App for Your Android Phone - App of the Day @ Gizmodo<p>- Classic Notes Lite is an app that does just about everything, and walks your dog - DroidDog<p>- Classic Notes is the most functional, usable, versatile app I&#39;ve ever come across - AndroidGuys<p>- Manages to provide a minimalistic interface that doesn’t sacrifice quality - App of the Day @ Phandroid<br> <br>- Simple Yet Rich In Features - Talkandroid<p>Classic Notes notepad with App Box is built upon the same principles as Extensive Notes but with a more minimal approach. <p>* Export notes as text to SD<br>* Import / Export CSV as todo, checklist, shopping list<br>* Share notes through facebook, twitter, more.<br>* Create backups<br>* Google translate<br>* Send to Google Docs, Dropbox, pastebin<br>* Text to Speech audio playback<br>* Add to Google Calendar - Set reminders and events <br>* Add notes to status bar<br>* Create Home Screen shortcuts<br>* New Note shortcut for notepad<br>* New Note Statusbar entry for notepad<br>* Modify timestamp<br>* Easily display create &amp; modification<br>* Wallpapers - colors, patterns, palettes<br>* Images - camera or gallery<br>* Video - Record video<br>* Paint notes - fingerpaint / sketch notes<br>* Private notes - Lock notes with password<br>* Audio notes / voice notes - Record audio of lectures, meetings<br>* File attachments e.g PDF, MS Word, Excel, MP3, PowerPoint, etc<br>* Geotag - Tag locations <br>* In note content search <br>* Todo / checklist support<br>* Prioritize notes, todos, and tasks based on urgency of low, medium, high<br>* Todo, checklist, shopping list<br>* Easily sort notes, todo, and tasks by last modified, alphabetical, pending reminders, priority<br>* Attach to-do&#39;s / checklists <br>* Tagging support<br>* Reminders / Alarms<br>* Abbreviations<br>* Dictionary<br>* Word etymology<br>* Example word usage<br>* Music Related references<br>* Postal Code Lookup for notepad<br>* Question and Answer for notepad<br>* Slang<br>* Spelling Suggestions for notepad<br>* Thesaurus<br>* Album Art for notepad<br>* Artist Information<br>* Artist Image<br>* Artists Similar to<br>* Track Information<br>* QR Code notes<br>* Stopwatch<br>* Sales tax / VAT calculator<br>* Discount calculator<br>* Tip calculator<br>* Image caption support<br>* Unit conversions<br>* Acceleration<br>* Area<br>* Bandwidth/Data Type<br>* Circular Measure<br>* Currency<br>* Energy<br>* Flow Rate<br>* Fuel Consumption<br>* Length/Distance<br>* Liquid Volume<br>* Planetary Age<br>* Planetary Weight<br>* Power<br>* Pressure<br>* Sound<br>* Time<br>* Temperature<br>* Weight/Mass<br>* Standard calculator<br>* Mortgage Calculator amortization table monthly payment, interest paid, total interest, principal paid, and balance<br>* Word of the day<br>* Rhyming words<br>* Phrases<br>* Wikipedia search<br>* Film/Cinema extras<br>* Actor/actress lookup<br>* Film lookup <br>* Weather<br>* Stock quotes<br>- Fitness related calculators<br>* Basal Metabolic Rate (BMR)<br>* Body Fat<br>* Body Mass Index (BMI)<br>* Daily Caloric Intake<br>* Max Heart Rate<br>* One Rep Max (1RM)<br>* Target Heart Rate<br>* Waist To Hip Ratio<br>* Water Intake<br>* Ohm&#39;s law, resistance, voltage, current<br>* Random password generator<br>* import csv into note<br>* System monitor in extras<br>- Battery level percentage, status, health<br>- SD card total size, available space<br>- Memory usage - total and available memory<br>- Processor/CPU information<br>- Network information ip address, wifi &amp; mobile state<br>- GPS status<br>* Holidays<br>* URL Shortener<br>* Bulleted lists<br>* Random number generator<br>* Days until countdown<br>* Timzone<br>* Decimal to roman numeral<br>* Wavelength to RGB<br>* WHOIS lookup<br>* Folder support<br>* Rotten Tomatoes<br>* Random Quote<br>* Import via Outlook<br>* Airport codes<br>* Area codes<br>* Countdown Timer<br>* Bi-gram phrases<br>* Comments &amp; sub-notes<br>* Recipes<br>* Flashlight / torch<br>* Base64 encode/decode, unique word, lexical density, word lengths<br>* Compare text<br>* Hotkeys</p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.flufflydelusions.app.enotesclassiclite" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.flufflydelusions.app.enotesclassiclite" tabindex="-1"> <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" style="width: 79.53254222869873%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.flufflydelusions.app.enotesclassiclite"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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"> <div class="card-content id-track-impression" data-docid="de.softxperience.android.noteeverything" data-server-cookie="CAIaMQovEi0KJ2RlLnNvZnR4cGVyaWVuY2UuYW5kcm9pZC5ub3RlZXZlcnl0aGluZxABGAM=" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaMQovEi0KJ2RlLnNvZnR4cGVyaWVuY2UuYW5kcm9pZC5ub3RlZXZlcnl0aGluZxABGAM=" 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 class="cover-image" alt="Note Everything" 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-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=de.softxperience.android.noteeverything" title="Note Everything"> Note Everything <span class="paragraph-end"></span> </a> </h2> <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" 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"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> A note (notepad) application where you can create text-, voice- and paint-notes. Your notes can be organized in folders. You can create shortcuts on home, send notes, use live folders &amp; much more!<p>Get the Pro-Add-On for more features!<p>Imports your Palm / Outlook Memos!<p>Contact me if you have problems!</p></p></p> <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" tabindex="-1"> <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" style="width: 88.44748497009277%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" 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"> <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"> <div class="card-content id-track-impression" data-docid="ru.andrey.notepad" data-server-cookie="CAIaGwoZEhcKEXJ1LmFuZHJleS5ub3RlcGFkEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaGwoZEhcKEXJ1LmFuZHJleS5ub3RlcGFkEAEYAw==" 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 class="cover-image" alt="Notepad" data-cover-large="https://lh6.ggpht.com/f7RQdXEYFqrkBIsvCOph4lEyee49b7MJfBP8ysnZsj-S5YkXC4CqPgGWu7uoknjwGSQ=w340" data-cover-small="https://lh6.ggpht.com/f7RQdXEYFqrkBIsvCOph4lEyee49b7MJfBP8ysnZsj-S5YkXC4CqPgGWu7uoknjwGSQ=w170" src="https://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-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=ru.andrey.notepad" title="Notepad"> Notepad <span class="paragraph-end"></span> </a> </h2> <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" 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"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> GO Notepad a new, comfortable and simple notepad right on your Android. Notepad is always at your hand, you just have to write down what you want to do or what you don&#39;t want to forget, you may even do not save it, it would do it for you.<br>Choose any color you want to write notes, also you do have a chance to share notes with friends or relatives. <br>If you like to leave a lot of articles and do not know where is the one you want? Your new notebook will find it easily<br>Notepad is fine for students in writing crib sheets.<p>Features:<br>- Search notes, drawings<br>- Automatically save notes<br>- Save images into SD in notepad folder<br>- Painting the choice of color and brush size<br>- The intensity of the brush saturation and color transparency<br>- Undo in painting<br>- Edit the name of the picture, or note<br>- Eraser is used to remove areas of color from the active layer or selection of this layer, leaving behind transparency.<br>- Supports plotting boards for sketching, like a graffiti in touch with choice of color, thickness, intensity<br>- The &quot;Add Bookmark&quot; will help you to put Desktop shortcut of your note or drawing as a reminder.<br>- Share notes Icq, Gmail, Bluetooth, Skype, Facebook, Vkontakte, Flickr, Twitter<br>- Drawing, Color picker<br>- Photo notes drawing<br>- Photo Editor<br>- Photoshop<br>- Photo notes text<br>- Voice note<br>- Reminders<br>- Shopping list<br>- Gallery notes<br>- Background color<br>- Backup/import/export to SD card<br>Automatic backup schedule daily / weekly /<br>- Video Notes<br>- Password Protection<p>Are you a creative person? You need to not only record your ideas but also do sketches as a picture, then this new notepad is for you!<br>With this feature, you can quickly and easily create notes as sketches, drawings, or make a note in the form of handwriting.<br>Bright palette and vibrant colors will help you to express all your feelings in the time of the drawing.<br>An excellent option for the manuscript is a device Samsung Galaxy Note with its pen, you can create a masterpiece.<br>Fast, easy, beautiful and accessible at any time. This is what you need</p></p> <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" tabindex="-1"> <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" style="width: 86.66200637817383%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" 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"> <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"> <div class="card-content id-track-impression" data-docid="com.microsoft.office.onenote" data-server-cookie="CAIaJgokEiIKHGNvbS5taWNyb3NvZnQub2ZmaWNlLm9uZW5vdGUQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaJgokEiIKHGNvbS5taWNyb3NvZnQub2ZmaWNlLm9uZW5vdGUQARgD" 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 class="cover-image" alt="OneNote" data-cover-large="https://lh6.ggpht.com/S3FZZS5Vp6eAAUxY3uzWsJR9ltF7JLWLXXV1IMx6_zq6jqv17XYyCSyvPNEeP8mNMg=w340" data-cover-small="https://lh6.ggpht.com/S3FZZS5Vp6eAAUxY3uzWsJR9ltF7JLWLXXV1IMx6_zq6jqv17XYyCSyvPNEeP8mNMg=w170" src="https://lh6.ggpht.com/S3FZZS5Vp6eAAUxY3uzWsJR9ltF7JLWLXXV1IMx6_zq6jqv17XYyCSyvPNEeP8mNMg=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.microsoft.office.onenote" aria-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=com.microsoft.office.onenote" title="OneNote"> OneNote <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Microsoft+Corporation" title="Microsoft Corporation">Microsoft Corporation</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" 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"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> All your notes—in one place and with you, anywhere. OneNote is a digital notebook for your to-do lists, lecture and meeting notes, vacation plans, or anything you want to organize or remember. <br>Type or jot down notes, record audio or snap a picture and OneNote saves it. Your notes sync across your devices so you can access them wherever you go. And you can easily share your notes with others.<br>OneNote has free apps for PC, Mac, Windows Phone, iPhone, iPad, and Android devices. And you can browse to onenote.com to get to your notes.<p>Key Features:<br>• Create and update notes and checklists.<br>• Bold, italicize, underline, highlight, indent - format notes like you do on a computer.<br>• Organize your notes using notebooks, sections and tags.<br>• Take handwritten notes or add handwriting and drawings to notes. <br>• Your notebooks sync across your computers and devices. <br>• View notes you created on your computer, including formatting, video, and attached files.<br>• Search your notes and files for anything you’ve captured – even text inside pictures. <br>• Home screen widgets let you quickly create picture, audio and text notes without opening the app. <br>• Get to your most recent notes right from your Home screen with the OneNote Recent widget. <br>• Add your favorite page, section, or notebook to the Home screen for quick access.<br>• Access your work notes stored on SharePoint Online sites from your tablet or phone.<br>Here are some ideas on how to use OneNote: <br>• Capture and format notes for classwork, meetings, or research. <br>• Take handwritten notes during lectures and have them available everywhere.<br>• Add audio and video to your notes. <br>• Snap a picture of the whiteboard and add it to your meeting notes. <br>• Share a shopping list with the family and mark items off when you’re in the store.<br>• Create an itinerary and keep track of your travel plans for your next big vacation.<br>• Take pictures of receipts and bills to get rid of paper clutter.<br>• Collaborate and share ideas with your team.<br>• Research products and prices to make the best purchasing decision.<p>You can find answers to Frequently Asked Questions about OneNote for Android at http://aka.ms/OnenoteAndroidFAQ <p>Requirements: <br>• Requires Android OS 4.1 or later. <br>• A free Microsoft account is required to use OneNote. <br>• OneNote opens existing notebooks created in Microsoft OneNote 2010 format or later.<br>• To sync your notes to OneDrive Pro, sign in with your organization&#39;s Office 365 or SharePoint account.<p>Like us on Facebook, follow us on Twitter, or visit the blog for the latest news: <br>http://facebook.com/MicrosoftOneNote<br>https://twitter.com/msonenote<br>https://plus.google.com/102199506601015331367/<br>http://blogs.office.com/b/microsoft-onenote<br>http://OneNote.com<br>https://plus.google.com/communities/113633281646135322395/<p>Keywords:<br>note, notes, one note, note taking, list, lists, todo, to-do, notebook, notebooks, task, tasks, GTD, handwriting, write, writing, stylus, pen, draw, drawing, sketch</p></p></p></p></p> <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" tabindex="-1"> <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" style="width: 81.16557121276855%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" 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"> <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.android.notes" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.bigtexapps.android.notes" data-server-cookie="CAIaJgokEiIKHGNvbS5iaWd0ZXhhcHBzLmFuZHJvaWQubm90ZXMQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaJgokEiIKHGNvbS5iaWd0ZXhhcHBzLmFuZHJvaWQubm90ZXMQARgD" data-uitype="500" href="/store/apps/details?id=com.bigtexapps.android.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 class="cover-image" alt="NOTES" data-cover-large="https://lh4.ggpht.com/uqsrDJ1F0q1alL4dE4Plknm5qVWn54ECnL5x7q85TvsY-R5YROHjfdu0J4MMB1z0PXQ=w340" data-cover-small="https://lh4.ggpht.com/uqsrDJ1F0q1alL4dE4Plknm5qVWn54ECnL5x7q85TvsY-R5YROHjfdu0J4MMB1z0PXQ=w170" src="https://lh4.ggpht.com/uqsrDJ1F0q1alL4dE4Plknm5qVWn54ECnL5x7q85TvsY-R5YROHjfdu0J4MMB1z0PXQ=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.bigtexapps.android.notes" aria-hidden="true" tabindex="-1"> <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.android.notes"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.bigtexapps.android.notes" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.bigtexapps.android.notes" title="NOTES"> NOTES <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=BIGTEXAPPS" title="BIGTEXAPPS">BIGTEXAPPS</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.bigtexapps.android.notes"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> NOTES is an intuitive, light weight notepad application that allows you to capture and organize your ideas. The main screen gives you a note pad look-and-feel.<p>(IF YOUR LEAVING 1 STAR PLEASE COMMENT WHY, SO I CAN FIX IT)<p>I will be adding new features as they are asked for, so please Email me with request.<p>(IF YOUR LEAVING 1 STAR PLEASE COMMENT WHY, SO I CAN FIX IT)<p>You can now remove Ads with the BUY ME button the the menu.<br>You can Now add NOTES by Voice (Rev. 10)<br>Menu Option to SHOW or HIDE the Microphone<p><br>Key Features:<br>- Add Note to your Google Calendar.<br>- Simple Navigation<br>- Share your Notes (SMS or E-Mail)<br>- Preview the note before opening. (Long Click)<br>- Press the microphone to VOICE input your NOTES<br>- Menu Option to HIDE or SHOW the microphone</p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.bigtexapps.android.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.android.notes" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.6 stars out of five stars "> <div class="current-rating" style="width: 72.66580104827881%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.bigtexapps.android.notes"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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.lucky.notewidget" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.lucky.notewidget" data-server-cookie="CAIaHgocEhoKFGNvbS5sdWNreS5ub3Rld2lkZ2V0EAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHgocEhoKFGNvbS5sdWNreS5ub3Rld2lkZ2V0EAEYAw==" data-uitype="500" href="/store/apps/details?id=com.lucky.notewidget" 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 class="cover-image" alt="Note To Do. Widget" data-cover-large="https://lh3.ggpht.com/vsA_p__O8xJhagfduPYksnh75JNw3qL4XOuwJP3yVO5Z07AedscZPf9uFEfqFJYxfg=w340" data-cover-small="https://lh3.ggpht.com/vsA_p__O8xJhagfduPYksnh75JNw3qL4XOuwJP3yVO5Z07AedscZPf9uFEfqFJYxfg=w170" src="https://lh3.ggpht.com/vsA_p__O8xJhagfduPYksnh75JNw3qL4XOuwJP3yVO5Z07AedscZPf9uFEfqFJYxfg=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.lucky.notewidget" aria-hidden="true" tabindex="-1"> <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.lucky.notewidget"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.lucky.notewidget" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.lucky.notewidget" title="Note To Do. Widget"> Note To Do. Widget <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Oleg+Tarashkevich" title="Oleg Tarashkevich">Oleg Tarashkevich</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.lucky.notewidget"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> With the widget &quot;Notes&quot; you can quickly write a note, make a list, note deeds done, sort your notes by topic, saving data. Widget is a simple and does not load the system. Lined beta version and it is currently under revision.<br>(Notepad, memo, note, sticker, notebook, notes pad) <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.lucky.notewidget" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.lucky.notewidget" tabindex="-1"> <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" style="width: 87.15391159057617%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.lucky.notewidget"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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.gs.stickit" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.gs.stickit" data-server-cookie="CAIaGAoWEhQKDmNvbS5ncy5zdGlja2l0EAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaGAoWEhQKDmNvbS5ncy5zdGlja2l0EAEYAw==" data-uitype="500" href="/store/apps/details?id=com.gs.stickit" 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 class="cover-image" alt="Sticky Notes !" data-cover-large="https://lh5.ggpht.com/dST7xt4JAW9BY08ZvVGKo51nbh0zH2oOozvu2uZjK81trY_WxS-1A6w1MPppdBx_-mbL=w340" data-cover-small="https://lh5.ggpht.com/dST7xt4JAW9BY08ZvVGKo51nbh0zH2oOozvu2uZjK81trY_WxS-1A6w1MPppdBx_-mbL=w170" src="https://lh5.ggpht.com/dST7xt4JAW9BY08ZvVGKo51nbh0zH2oOozvu2uZjK81trY_WxS-1A6w1MPppdBx_-mbL=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.gs.stickit" aria-hidden="true" tabindex="-1"> <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.gs.stickit"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.gs.stickit" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.gs.stickit" title="Sticky Notes !"> Sticky Notes ! <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=DroidVeda+LLP" title="DroidVeda LLP">DroidVeda LLP</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.gs.stickit"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Sticky Notes! is the ultimate application to create sticky notes and reminders on your Android device. <p>Designed to take notes and navigate with minimum clicks and taps, Sticky Notes beats every other note taking app in ease of use and speed. Multiple fonts and different text sizes make it even more friendly to use.<p>Put your witty thoughts on a sticky image and easily share it on social media from now on. You can swipe through the stickies for quick navigation. And with the new reminder feature, you will never forget a task.<p>Searching through your stickies is faster than ever using the search button. You can even search your stickies directly from your Home screen by including the search results in the Google Search widget.<p>It is complemented by two simple widgets so that you can always have a quick access to your stickies right from your Home screen.<p>Features:<p>* Elegant UI - quick access to create, edit, search and share sticky notes.<br>* Swipe between stickies for faster navigation.<br>* Set reminders with your preferred ring tone and custom volume.<br>* Multiple colors for stickies.<br>* Cool themes.<br>* Home screen &amp; Lock screen widgets.<br>* Easily sort and organize.<br>* Multiple fonts and different sizes.<br>* Tablet friendly.<br>* Easily share your stickies to Facebook, Twitter, Email or SMS<br>* Create cool sticky images and share easily. Integrated Facebook to enable posting without native Facebook app.<br>* Text to speech to read out your notes.<br>* Backup and Restore feature using Dropbox Account to create a backup of stickies and restore later to prevent data loss.<p>NOTE: Phone state permission is used only to reduce the alarm volume if a phone call is in progress.<p>Have a nice time using Stick Notes!</p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.gs.stickit" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.gs.stickit" tabindex="-1"> <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" style="width: 80.34905433654785%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.gs.stickit"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="my.handrite" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="my.handrite" data-server-cookie="CAIaFQoTEhEKC215LmhhbmRyaXRlEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaFQoTEhEKC215LmhhbmRyaXRlEAEYAw==" data-uitype="500" href="/store/apps/details?id=my.handrite" 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 class="cover-image" alt="Handrite Note Notepad Lite" data-cover-large="https://lh4.ggpht.com/EEpkqz5-0xnNcFxzgTF5e85ZL_CIXQ4Zygxn8ew9x7ATAfXZexSyRURjrbKhuC7R7MU=w340" data-cover-small="https://lh4.ggpht.com/EEpkqz5-0xnNcFxzgTF5e85ZL_CIXQ4Zygxn8ew9x7ATAfXZexSyRURjrbKhuC7R7MU=w170" src="https://lh4.ggpht.com/EEpkqz5-0xnNcFxzgTF5e85ZL_CIXQ4Zygxn8ew9x7ATAfXZexSyRURjrbKhuC7R7MU=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=my.handrite" aria-hidden="true" tabindex="-1"> <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="my.handrite"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=my.handrite" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=my.handrite" title="Handrite Note Notepad Lite"> Handrite Note Notepad Lite <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=NC+Corp." title="NC Corp.">NC Corp.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="my.handrite"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Handrite note is an intuitive handwriting note app that serves as your sticky note, to-do list, memo pad and journal - all at the touch of your finger. Never wade through crumpled pieces of paper, lose important flashes of inspiration or let an unreliable autocorrect impede your speed of thought again.<p>WHO USES HANDRITE NOTE?<br>People who have a need to capture thoughts and ideas quickly, clearly and accurately.<p>HOW HANDRITE NOTE WORKS<br>Write in the spacious &quot;zoomed area&quot; and watch your words appear in the body of your page. Handrite note does not try to “recognize” your handwriting. Instead, it simply captures your strokes exactly as you drew them. This avoids the tedious task of having to “train” the app to read your handwriting as well as the interpretation errors that still occur. It also means that you can sketch symbols, numbers, pictures, mathematical equations, etc in your notes.<p>Support us, buy Handrite note PRO<br>* Unlimited notebooks<br>* export your note as PDF<br>* Continuous writing, so you can write as fast as with pen and paper.<br>* More paper style options for your note page.<p>FEATURES<br>Copy &amp; Paste text and pictures (even from other apps)<br>Freely edit and format your handwritten page with spaces, carriage returns and backspace delete of entries<br>Organize notes by notebook, date, label and title<br>Desktop widget for instant access and for use as sticky note<br>Instantly switch between handwriting and the software keyboard whenever necessary<br>Make your notes and memos beautiful with professionally designed paper styles<br>Customizable pen styles, including a unique variable thickness line setting, makes your writing look as beautiful as from a fine fountain pen<br>Insert images in the body of your note page<br>Reliable auto-save so you never lose your note<p>Help us translate<br>We&#39;d appreciate if you would like to translate Handrite Note into your language. Here is the translating project you can start with: http://crowdin.net/project/handrite<p>KEYWORDS<br>notes, notepad, notebook, note, journal, diary, PDF, tab, tablet, memo, post it, sticky, write, editor, pad</p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=my.handrite" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=my.handrite" tabindex="-1"> <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" style="width: 81.25293731689453%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="my.handrite"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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"> <div class="card-content id-track-impression" data-docid="nl.jacobras.notes" data-server-cookie="CAIaGwoZEhcKEW5sLmphY29icmFzLm5vdGVzEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaGwoZEhcKEW5sLmphY29icmFzLm5vdGVzEAEYAw==" 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 class="cover-image" alt="Notes" data-cover-large="https://lh4.ggpht.com/oJ0NJs1vxi0g0ohTM23Po-wdOVIi_b04UL1WFvpslpduJq9fh_AL3wX7L34wD6HyNZ8=w340" data-cover-small="https://lh4.ggpht.com/oJ0NJs1vxi0g0ohTM23Po-wdOVIi_b04UL1WFvpslpduJq9fh_AL3wX7L34wD6HyNZ8=w170" src="https://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-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=nl.jacobras.notes" title="Notes"> Notes <span class="paragraph-end"></span> </a> </h2> <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" 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"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Notes is the easiest way to keep track of your thoughts and ideas. Organize your notes into notebooks, secure them with a password and synchronize them to all your devices (optionally). Whether you&#39;re using a 10-inch tablet, a 5-inch phone or a 2-inch smartwatch running Android Wear, your notes are always within reach.<br> <br>• Stay organized<br>Organize your notes into notebooks to keep track of all your thoughts and ideas.<br> <br>• Password protection<br>Keep your notes private by setting up a password. You can choose to use a text password or a PIN code, depending on your level of security.<br> <br>• Clean user interface<br>A beautiful design that is optimized for phones, tablets and smartwatches helps you stay focused on your notes.<br> <br>• Always up-to-date<br>Enable Dropbox synchronization and your notes will always be within reach on all your Android devices and online at http://www.notesforweb.com.<br> <br>Notes is available in English, French, German, Italian, Spanish, Dutch and Russian. Feel free to contact me if you have any questions or feedback. If you like Notes, please rate it. <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" tabindex="-1"> <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" style="width: 81.63866996765137%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" 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"> <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.timleg.egoTimerLight" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.timleg.egoTimerLight" data-server-cookie="CAIaIgogEh4KGGNvbS50aW1sZWcuZWdvVGltZXJMaWdodBABGAM=" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaIgogEh4KGGNvbS50aW1sZWcuZWdvVGltZXJMaWdodBABGAM=" data-uitype="500" href="/store/apps/details?id=com.timleg.egoTimerLight" 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 class="cover-image" alt="To-Do Calendar Planner" data-cover-large="https://lh4.ggpht.com/wEtMdASbDJB0P88oyZ-pXP_rwq2qmIwFZzCb-Iak5bd0J1Al-cavXJSQHHjo8_Djkdg=w340" data-cover-small="https://lh4.ggpht.com/wEtMdASbDJB0P88oyZ-pXP_rwq2qmIwFZzCb-Iak5bd0J1Al-cavXJSQHHjo8_Djkdg=w170" src="https://lh4.ggpht.com/wEtMdASbDJB0P88oyZ-pXP_rwq2qmIwFZzCb-Iak5bd0J1Al-cavXJSQHHjo8_Djkdg=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.timleg.egoTimerLight" aria-hidden="true" tabindex="-1"> <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.timleg.egoTimerLight"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.timleg.egoTimerLight" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.timleg.egoTimerLight" title="To-Do Calendar Planner"> To-Do Calendar Planner <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Timleg" title="Timleg">Timleg</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.timleg.egoTimerLight"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> The ultimate personal organizer!<p>- Use a powerful task list that supports batch operations<br>- Enjoy a fully scrollable calendar with daily, weekly and monthly view<br>- Define your personal goals and link them to tasks<br>- Draw your own notes and attach them to tasks and appointments<br>- Schedule your tasks directly on the calendar<br>- Set multiple reminders for tasks and appointments<br>- Divide your tasks into subtasks<br>- Get organized with a daily step-by-step routine<br>- Use resizable Widgets in 4 different formats<br>- Make an audio recording and attach it to your tasks and appointments<br>- Attach files and photos to your tasks and appointments<br>- Sync with your Google Calendar without effort<br>- Attach Google Maps locations to your tasks and appointments<br>- Use the Clean-Up feature to easily prioritize your task list<br>- Find suggestions for your goals to pursue<br>- Set repeating tasks and appointments<br>- Apply GTD principles to your daily life<br>- Convert your tasks, goals, notes and appointments into each other<p>Advanced features (Plus Version Upgrade):<br>- Synchronize your To-Do list with Google Tasks<br>- Create backups and restore them<br>- Time your tasks with a To-Do list Timer<br>- Have the option to reset all your tasks or appointments<br>- Protect your data with a password<br>- Export your data to CSV files<p><br>With isoTimer you can:<p>...orient yourself toward your goals<br>...prepare each day with care using a calendar and a to-do list<br>...balance your professional and your private life<br>...focus on the most important tasks<br>...never forget ideas or appointments<p>IsoTimer organizer is the ideal companion for planning all parts of your life!<br>The perfect ToDo Calendar Planner for personal and business use.</p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.timleg.egoTimerLight" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.timleg.egoTimerLight" tabindex="-1"> <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" style="width: 83.54595184326172%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.timleg.egoTimerLight"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="jp.co.johospace.jorte" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="jp.co.johospace.jorte" data-server-cookie="CAIaHwodEhsKFWpwLmNvLmpvaG9zcGFjZS5qb3J0ZRABGAM=" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHwodEhsKFWpwLmNvLmpvaG9zcGFjZS5qb3J0ZRABGAM=" data-uitype="500" href="/store/apps/details?id=jp.co.johospace.jorte" 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 class="cover-image" alt="Jorte Calendar &amp; Organizer" data-cover-large="https://lh4.ggpht.com/l1H4c1cDHgoz-YK5z7Ipnud5a5fllzteyA3MX74kyYO6OSF7Tuq80Z2PmV6G_mLrTqk=w340" data-cover-small="https://lh4.ggpht.com/l1H4c1cDHgoz-YK5z7Ipnud5a5fllzteyA3MX74kyYO6OSF7Tuq80Z2PmV6G_mLrTqk=w170" src="https://lh4.ggpht.com/l1H4c1cDHgoz-YK5z7Ipnud5a5fllzteyA3MX74kyYO6OSF7Tuq80Z2PmV6G_mLrTqk=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=jp.co.johospace.jorte" aria-hidden="true" tabindex="-1"> <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="jp.co.johospace.jorte"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=jp.co.johospace.jorte" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=jp.co.johospace.jorte" title="Jorte Calendar &amp; Organizer"> Jorte Calendar &amp; Organizer <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Jorte+Inc." title="Jorte Inc.">Jorte Inc.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="jp.co.johospace.jorte"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> NEW!:Introducing a [Premium Sevice] with even more convenient and secure functions to use in Jorte Calendar! Free for a limited period of time. (*http://jorte.com/pf/)<p>With over 23 million downloads Jorte is one of the most popular calendar&amp;organizer applications.<br>We have spent all of our time and effort into making the application look as close to a real personal organizer as possible. Enjoy this highly customizable app, you cannot find an application which has as many functions as Jorte.<br><p>For personal use or for business Jorte will assist you to manage your daily schedule thoroughly. <br>Features:<p>NEW!:Side Menu - Inside the Side Menu you can decide what to show like Today&#39;s Events, diary, tasks, etc.<br>NEW!:You can now edit or delete a single event of a recurring series in Jorte Calendar Mode.<br>NEW!:Count Down Feature - See how many days are left for an event on the calendar.<br>Now supporting a diary feature. We have also added a function to include photos in the events (diary).<br>o Jorte Cloud: feature for multi-device syncing and backup.<br>o Display Lunar Calendar.<br>o Various widgets are available.<br>o Monthly, Daily, and Weekly views are available.<br>o Important appointments are shown in red.<br>o See completed appointments at a glance.<br>o Adjust the first day of the week.<br>o Import and Export the contents to CSV format. <br>o It can synchronize with Google Calendar and Jorte Cloud on the PC.<br>* It can also synchronize your events in Yahoo! Calendar, Microsoft® Exchange, Facebook and more by using Jorte Sync (Free). <p>* Please check here for the latest information:<br>* http://facebook.com/jorte.net<br><p>= Event Calendars (Free) =<br>With this function, you can add many calendars containing events related to your interests like weather, news, sports, and much more.<p>- Some examples<br>o Weather Forecast (Global) (*http://goo.gl/Qv0zML) / News / Food Recipes.<br>o Professional Sports: Four major leagues in the USA available [MLB-NBA-NFL-NHL] / Soccer.<p>* There are many more event calendars available as well.<br><p>= Jorte Cloud (Free) =<br>Sync Jorte Calendar, entries, and Tasks to Jorte Cloud. * (It can also be used from your smartphonehttp://jorte.net/)<br>You can access Jorte Cloud from home, office, and anywhere else from a PC, smartphone or tablet with internet access. It even works as a backup of your schedules and task lists.<p>Sign-up to get a free Jorte Cloud Account and start taking advantage of the cloud experience!<br>* http://jorte.com/id/<br><p>= Jorte Store =<br>You can purchase icons and backgrounds images to use in Jorte Calendar. Download contents that are free or paid and start customizing your calendar!<br>Daily calendars are also available, with this function a new image will be updated daily for the current day.<p>- Daily Contents<br>o HJ-Story © HJ-Story<br>o THE DOG - Daily Calendar © artlist<p>- Character Contents<br>o Hello Kitty (*http://goo.gl/ySh6Ys)-My Melody-Little Twin Stars ©&#39;76,&#39;14 SANRIO APPR.NO.S550459<p>* There are many more contents available at the Jorte Store.<br><p> The screen display will automatically adjust to any screen size, whether on smartphone or on tablet, as well as portrait or landscape mode.</p></p></p></p></p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=jp.co.johospace.jorte" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=jp.co.johospace.jorte" tabindex="-1"> <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" style="width: 86.50006294250488%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="jp.co.johospace.jorte"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="yong.app.notes" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="yong.app.notes" data-server-cookie="CAIaGAoWEhQKDnlvbmcuYXBwLm5vdGVzEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaGAoWEhQKDnlvbmcuYXBwLm5vdGVzEAEYAw==" data-uitype="500" href="/store/apps/details?id=yong.app.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 class="cover-image" alt="Quick notes" data-cover-large="https://lh6.ggpht.com/TMrndFFgU9uPpldEf9UoxGFgK1i2LcQmmrXKGbQT7u_bo_ex4crg1hrBqseP8k61sg=w340" data-cover-small="https://lh6.ggpht.com/TMrndFFgU9uPpldEf9UoxGFgK1i2LcQmmrXKGbQT7u_bo_ex4crg1hrBqseP8k61sg=w170" src="https://lh6.ggpht.com/TMrndFFgU9uPpldEf9UoxGFgK1i2LcQmmrXKGbQT7u_bo_ex4crg1hrBqseP8k61sg=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=yong.app.notes" aria-hidden="true" tabindex="-1"> <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="yong.app.notes"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=yong.app.notes" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=yong.app.notes" title="Quick notes"> Quick notes <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=HALBERT" title="HALBERT">HALBERT</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="yong.app.notes"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> &quot;Quick notes&quot; is a simple notepad application.<p>When you write notes, memos, e-mail, information, shopping lists, to-do list, it can give you a quick and simple notepad editing experience.<p>You can set reminders for each important note, so that you will not miss important things.<p>You can place it on the phone&#39;s desktop, to record some easy to forget things. And there are two different specifications, each specification of five different colors of sticky notes can be selected.<p><br>*** Features ***<br>- Export as text to SD<br>- Share notes through facebook, twitter, and more.<br>- Multiple color desktop plug-in, let your desktop beautiful<br>- Supports online backup, sync to Google task, having the data safe forever.<br>- Sticky notes to remind function , so you never miss an important thing<br>- Create Home Screen shortcuts<br>- Todo, checklist, shopping list<br>- Customize font size and background color<br>- Provides list mode to facilitate your life<br>- Different notes in different folders to categorize, so your notes clear<br>- Use color classification notes<br>- Search for records<p>Disclaimer:<br>- &quot;Quick notes&quot; development based on open source MiCode Community. Adhering to Apache License 2.0 .</p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=yong.app.notes" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=yong.app.notes" tabindex="-1"> <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" style="width: 84.78963851928711%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="yong.app.notes"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="notepad.memocool.free" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="notepad.memocool.free" data-server-cookie="CAIaHwodEhsKFW5vdGVwYWQubWVtb2Nvb2wuZnJlZRABGAM=" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHwodEhsKFW5vdGVwYWQubWVtb2Nvb2wuZnJlZRABGAM=" data-uitype="500" href="/store/apps/details?id=notepad.memocool.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 class="cover-image" alt="Notes - MemoCool Free" data-cover-large="https://lh4.ggpht.com/kJyfCXGTGyBmA44gjUkeg0iGrFLxJv19J0P9opB2lce6T5DMpMshDZ_bN3pcrYlRbQ4=w340" data-cover-small="https://lh4.ggpht.com/kJyfCXGTGyBmA44gjUkeg0iGrFLxJv19J0P9opB2lce6T5DMpMshDZ_bN3pcrYlRbQ4=w170" src="https://lh4.ggpht.com/kJyfCXGTGyBmA44gjUkeg0iGrFLxJv19J0P9opB2lce6T5DMpMshDZ_bN3pcrYlRbQ4=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=notepad.memocool.free" aria-hidden="true" tabindex="-1"> <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="notepad.memocool.free"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=notepad.memocool.free" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=notepad.memocool.free" title="Notes - MemoCool Free"> Notes - MemoCool Free <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=NalaDex" title="NalaDex">NalaDex</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="notepad.memocool.free"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> From the creators of ListOn, MemoCool! The best application to personalise your notes.<br> <br>MemoCool is a simple and practical application which you can use to make rapid notes and personalise them by adding colours and entertaining magnet-like icons. MemoCool emulates the typical “Post-it” stuck with magnets on the fridge in your house, but now has the advantage that you can take it with you in your pocket. You can create, edit, archive or delete notes any number of times without limit.<br> <br>You also have at your disposal a widget which allows you to have your notes visible on your home screen allowing you to never forget your tasks.<p>✪✪✪✪✪ (NOTES IN HOMESCREEN) Or how to use the widget ✪✪✪✪✪<br>1. Open MemoCool and create a note.<br>2. Exit MemoCool.<br>3. Go to the Widget section of your device (you can find it in Widget Tab from your apps list or doing a long press from your homescreen).<br>4. Drag and drop the MemoCool widget to your homescreen.<br>5. Select the note you want to display using the top arrows from the note.<br>6. You can place as many notes as you want by repeating step 4.<br>7. If everything was fine, rate us with 5 stars ;)<br> <p>MemoCool features:<br>-Create and edit notes easily and simply<br>-Create reminders with calendar and notification<br>-Organise notes to ensure the most important notes are always visible<br>-The most visually, realistic and entertaining style in the Play Store<br>-18 colours to choose from to personalise your notes<br>-24 magnets to choose from to add a personal touch to every note<br>-Realistic sounds for every action<br>-Share your own note designs on Whatsapp, Line, email, etc<br>-The most entertaining notes widget you can find on your mobile<br>-Recycle-enabled trash bin so that you can never lose your notes; but also allowing you to keep your fridge door clutter free ;)<br>-Absolutely free and no restrictions. Paid version without adverts!<br> <br>Don’t forget to give MemoCool positive reviews which allows us to create more functions in the near future (synchronisation, task list, reminders, security lists, etc); as well as new magnets and improvements!</p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=notepad.memocool.free" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=notepad.memocool.free" tabindex="-1"> <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" style="width: 81.66295051574707%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="notepad.memocool.free"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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.calendar" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.google.android.calendar" data-server-cookie="CAIaJQojEiEKG2NvbS5nb29nbGUuYW5kcm9pZC5jYWxlbmRhchABGAM=" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaJQojEiEKG2NvbS5nb29nbGUuYW5kcm9pZC5jYWxlbmRhchABGAM=" data-uitype="500" href="/store/apps/details?id=com.google.android.calendar" 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 class="cover-image" alt="Google Calendar" data-cover-large="https://lh3.ggpht.com/oGR9I1X9No3SfFEXrq655tETtVVzI3jIphhmEVPGPEVuM5gfwh8lOGWHQFf6gjSTvw=w340" data-cover-small="https://lh3.ggpht.com/oGR9I1X9No3SfFEXrq655tETtVVzI3jIphhmEVPGPEVuM5gfwh8lOGWHQFf6gjSTvw=w170" src="https://lh3.ggpht.com/oGR9I1X9No3SfFEXrq655tETtVVzI3jIphhmEVPGPEVuM5gfwh8lOGWHQFf6gjSTvw=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.google.android.calendar" aria-hidden="true" tabindex="-1"> <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.calendar"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.google.android.calendar" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.google.android.calendar" title="Google Calendar"> Google Calendar <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Google+Inc." title="Google Inc.">Google Inc.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.google.android.calendar"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Get the official Google Calendar app for your Android phone and tablet to save time and make the most of every day.<br>• A new Schedule View - See your schedule at a glance with photos and maps of the places you’re going.<br>• Events from Gmail - Flight, hotel, concert, restaurant reservations and more are added to your calendar automatically.<br>• Assists to fill in your calendar - You can quickly create events with smart suggestions for event titles, places and people.<br>• Different ways to view your calendar - Speedily switch between viewing a single day to getting an overview of multiple days at once.<br>• All your calendars in one, easy place - Google Calendar works with all calendars on your phone, including Exchange. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.google.android.calendar" 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.calendar" tabindex="-1"> <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" style="width: 80.21773338317871%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.google.android.calendar"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> </div> </div> <div class="rec-cluster" data-server-cookie="CAMiHAgCEAMaFBISCgxjb20uZXZlcm5vdGUQARgDKAQ=" data-uitype="400"> <h1 class="heading">More from developer</h1> <div class="cards expandable"> <div class="card no-rationale square-cover apps small" data-docid="com.evernote.widget" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.evernote.widget" data-server-cookie="CAIaHQobEhkKE2NvbS5ldmVybm90ZS53aWRnZXQQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHQobEhkKE2NvbS5ldmVybm90ZS53aWRnZXQQARgD" data-uitype="500" href="/store/apps/details?id=com.evernote.widget" 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 class="cover-image" alt="Evernote Widget" data-cover-large="https://lh3.ggpht.com/3yGG15BuKMx__RWdoDZNBkSI0hg4NaJuXbPw1G23wjduMf49BULCJLgiJxmk9ogKd74=w340" data-cover-small="https://lh3.ggpht.com/3yGG15BuKMx__RWdoDZNBkSI0hg4NaJuXbPw1G23wjduMf49BULCJLgiJxmk9ogKd74=w170" src="https://lh3.ggpht.com/3yGG15BuKMx__RWdoDZNBkSI0hg4NaJuXbPw1G23wjduMf49BULCJLgiJxmk9ogKd74=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.evernote.widget" aria-hidden="true" tabindex="-1"> <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.widget"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.widget" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.evernote.widget" title="Evernote Widget"> Evernote Widget <span class="paragraph-end"></span> </a> </h2> <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" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.evernote.widget"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> **The latest version of Evernote is required in order to use the Evernote Widget app**<br>The Evernote Widget lets you go directly to core Evernote features right from your home screen.<p>3 widget options:<p>- List widget (Android 3.0+): Provides a scrollable list and display reminders. <br>- Large widget: Same as the small widget, plus snippets of recently viewed notes.<br>- Small widget: Create new text, snapshot and audio notes, and jump to the search screen.<p>How to install:<br>Once you install this app, tap and hold on the home screen, then select your preferred widget from the popup.<p>The story behind this widget:<br>We want every users to have the best Evernote experience possible. Unfortunately, if Evernote is installed on the SD card, then the widgets that comes with the app are unavailable. Thanks to this Evernote Widget application, anyone can take advantage of this time saving feature regardless of where Evernote is installed.<p>Learn more about the widget: <br>https://evernote.com/evernote/guide/android/#10</p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.evernote.widget" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.evernote.widget" tabindex="-1"> <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" style="width: 84.32699203491211%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.evernote.widget"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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.skitch" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.evernote.skitch" data-server-cookie="CAIaHQobEhkKE2NvbS5ldmVybm90ZS5za2l0Y2gQARgD" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHQobEhkKE2NvbS5ldmVybm90ZS5za2l0Y2gQARgD" data-uitype="500" href="/store/apps/details?id=com.evernote.skitch" 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 class="cover-image" alt="Skitch - Snap. Mark up. Send." data-cover-large="https://lh4.ggpht.com/kAuy9wZG3xzenfzMHzkkK6qTcyQNX45d_joxn3sowhZS4C2-JH3CUeBpiIfa-nLu2Q=w340" data-cover-small="https://lh4.ggpht.com/kAuy9wZG3xzenfzMHzkkK6qTcyQNX45d_joxn3sowhZS4C2-JH3CUeBpiIfa-nLu2Q=w170" src="https://lh4.ggpht.com/kAuy9wZG3xzenfzMHzkkK6qTcyQNX45d_joxn3sowhZS4C2-JH3CUeBpiIfa-nLu2Q=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.evernote.skitch" aria-hidden="true" tabindex="-1"> <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.skitch"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.skitch" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.evernote.skitch" title="Skitch - Snap. Mark up. Send."> Skitch - Snap. Mark up. Send. <span class="paragraph-end"></span> </a> </h2> <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" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.evernote.skitch"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> See something that sparks an idea? Use Skitch to snap it, mark it up with simple tools, and send it on in an instant. Your bold ideas stand out even brighter with Skitch.<p>————————————<p>People everywhere use Skitch to help them visually share their thoughts with others. Here are a few ways you can use it, too:<p>FOR FUN<br>Mark up photos of silly, cool, or inspiring things you see and share them via social, email, SMS, and more.<p>FOR HOME<br>Annotate photos of your backyard to plan out your vegetable garden.<p>FOR SCHOOL<br>Share a diagram of the earth’s layers and have students label it with you.<p>FOR EVENTS<br>Capture a map, mark it up, and share it with your friends to show them where you&#39;ll be.<p>FOR WORK<br>Open a PDF and highlight changes to skip the lengthy, confusing email chains and give clear feedback. Or annotate a screenshot to communicate a change. <p>————————————<br>PDF Markup requires either an in app purchase or an Evernote Premium account.<p>Skitch uses the contacts permissions in order to populate the email field when sending a PDF. This permission lets Skitch use your local address book so you can easily send an email by simply typing someone&#39;s name. <p>More information about permissions at:<br>http://s.evernote.com/skitchpermissions</p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.evernote.skitch" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.evernote.skitch" tabindex="-1"> <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" style="width: 84.26685333251953%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.evernote.skitch"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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.food" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.evernote.food" data-server-cookie="CAIaGwoZEhcKEWNvbS5ldmVybm90ZS5mb29kEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaGwoZEhcKEWNvbS5ldmVybm90ZS5mb29kEAEYAw==" data-uitype="500" href="/store/apps/details?id=com.evernote.food" 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 class="cover-image" alt="Evernote Food" data-cover-large="https://lh5.ggpht.com/9tPgMhRM9SxrJmnUT0lugvw_H50_jieQKaiyj5qKw0kSxEpWdw8vrw_FhF5KHj1Jj48=w340" data-cover-small="https://lh5.ggpht.com/9tPgMhRM9SxrJmnUT0lugvw_H50_jieQKaiyj5qKw0kSxEpWdw8vrw_FhF5KHj1Jj48=w170" src="https://lh5.ggpht.com/9tPgMhRM9SxrJmnUT0lugvw_H50_jieQKaiyj5qKw0kSxEpWdw8vrw_FhF5KHj1Jj48=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.evernote.food" aria-hidden="true" tabindex="-1"> <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.food"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.food" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.evernote.food" title="Evernote Food"> Evernote Food <span class="paragraph-end"></span> </a> </h2> <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" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.evernote.food"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Evernote Food 2.0 is now available on Android!<p>Evernote Food helps you remember the food you love. From discovering great recipes and restaurants to capturing your memorable food experiences, Evernote Food is the one app you need to remember your life in food.<p>• Explore the best recipes from across the web and save them to My Cookbook to try later<br>• Find great restaurants near you or anywhere in the world; add them to your wish list or book a reservation<br>• Document your food experiences through photos, notes, &amp; locations<br>• Share your meals with friends through e-mail, Twitter, Facebook, or links<p>Bonus: Since Evernote Food is part of Evernote, recipes you clip using Evernote Web Clipper on your desktop will also appear in the the My Cookbook section of the app. Use tags to organize them based on diet and ingredients.<br>Additionally, anything you save in Evernote Food will show up in Evernote on any device you use.<p>What&#39;s new in Evernote Food 2.0<p>• Explore Recipes - Thousands of recipes from the best food sites to browse, search, and save.<br>• My Cookbook - Recipes you save in the app, plus ones you&#39;ve clipped or saved in Evernote, show up here, making them easy to find from any device.<br>• Restaurants - A location-based list and map view of restaurants that lets you clip and save the ones you want to try and see all the spots you&#39;ve visited.<br>• My Meals - A photographic journey through all of your past meals and food adventures.<p>Here are just a few ways you can use Evernote Food:<br>• Build your own online cookbook using My Cookbook, where you can save favorite and new recipes you want to try. <br>• Document each step of recipe preparation with photos and captions, from new creations to family traditions you want to preserve.<br>• Discover restaurants by location or cuisine and create a list of ones to visit in your city and for travel destinations. Book your table within the app using OpenTable.<br>• Remember culinary journeys using My Meals. Add images and notes on the food, wine, people, and ambience that make trips memorable.<br>• Capture your food memories of special restaurant or home-cooked meals enjoyed with family and friends. Take note of dishes you love so you can order them again.<p>Learn more: http://evernote.com/food/<br>Follow Evernote Food on Twitter: twitter.com/evernote</p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.evernote.food" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.evernote.food" tabindex="-1"> <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" style="width: 84.66278076171875%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.evernote.food"> <div class="pon" style="display:none">1</div> <button class="price buy"> <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"> <div class="card-content id-track-impression" data-docid="com.evernote.wear" data-server-cookie="CAIaGwoZEhcKEWNvbS5ldmVybm90ZS53ZWFyEAEYAw==" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaGwoZEhcKEWNvbS5ldmVybm90ZS53ZWFyEAEYAw==" 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 class="cover-image" alt="Evernote for Android Wear" data-cover-large="https://lh4.ggpht.com/-LFDb4dqb4OuOWf_qHCw4AMLLn6_sEJRxcE8LfiE6RGGoMZDnkVHhOBKLCP2ZR9X3sM=w340" data-cover-small="https://lh4.ggpht.com/-LFDb4dqb4OuOWf_qHCw4AMLLn6_sEJRxcE8LfiE6RGGoMZDnkVHhOBKLCP2ZR9X3sM=w170" src="https://lh4.ggpht.com/-LFDb4dqb4OuOWf_qHCw4AMLLn6_sEJRxcE8LfiE6RGGoMZDnkVHhOBKLCP2ZR9X3sM=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.evernote.wear" aria-hidden="true" tabindex="-1"> <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> <h2> <a class="title" href="/store/apps/details?id=com.evernote.wear" title="Evernote for Android Wear"> Evernote for Android Wear <span class="paragraph-end"></span> </a> </h2> <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" 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"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> Evernote for Android Wear puts notes and checklists at your fingertips while your phone stays in your pocket.<p>Key Features:<br>- Create a note with simple voice commands.<br>- View a note on your phone, lock the screen and that note appears on your watch. <br>- Check off to-dos by tapping your watch, and add new to-dos by speaking the to-do name<br>- Find notes by speaking the text you are looking for<br>- Find notes you created nearby, and notes you looked at recently<br>- See relevant notes and content appear on your watch whenever you have a calendar event.<br>- For recurring meetings, see notes created during prior meeting.<p>Evernote for Android together with Evernote for Android Wear make your notes accessible at a glance whenever you need them.</p></p> <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" tabindex="-1"> <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" style="width: 85.00838279724121%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" 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"> <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.hello" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps tiny"> <div class="card-content id-track-impression" data-docid="com.evernote.hello" data-server-cookie="CAIaHAoaEhgKEmNvbS5ldmVybm90ZS5oZWxsbxABGAM=" data-uitype="500"> <a class="card-click-target id-track-click" data-server-cookie="CAIaHAoaEhgKEmNvbS5ldmVybm90ZS5oZWxsbxABGAM=" data-uitype="500" href="/store/apps/details?id=com.evernote.hello" 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 class="cover-image" alt="Evernote Hello" data-cover-large="https://lh3.ggpht.com/8IAdhSnCvlYoSVThLBHeoztN7xmF1RzjdYY3VbEIZHZHjznUu7l3OMNpWyS6_omTbPk=w340" data-cover-small="https://lh3.ggpht.com/8IAdhSnCvlYoSVThLBHeoztN7xmF1RzjdYY3VbEIZHZHjznUu7l3OMNpWyS6_omTbPk=w170" src="https://lh3.ggpht.com/8IAdhSnCvlYoSVThLBHeoztN7xmF1RzjdYY3VbEIZHZHjznUu7l3OMNpWyS6_omTbPk=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.evernote.hello" aria-hidden="true" tabindex="-1"> <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.hello"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.evernote.hello" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.evernote.hello" title="Evernote Hello"> Evernote Hello <span class="paragraph-end"></span> </a> </h2> <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" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.evernote.hello"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </div> <div class="description"> With Evernote Hello it’s easy to remember everything about everyone you meet.<p>Whether you&#39;re meeting someone for the first time, trying to remember important details about a person you’ve met before, or recalling important information about a previous meeting, Evernote Hello is here to help. Here&#39;s how:<p>- See everyone you’ve met and pictures of your activities in a beautiful mosaic layout<br>- View a history of all the meetings you&#39;ve had with individuals<br>- Remember all aspects of your meetings: location, notes, photos, and faces<br>- Connect with people through LinkedIn and now Facebook<br>- Get additional insights about contacts and meetings with Related Notes from your Evernote account<p>There are three easy ways to bring people you meet into Evernote Hello:<p>- Connect with nearby Evernote Hello users via Hello Connect<br>- Pull their information from your calendar appointments, texts, calls or your address book<br>- Create a quick profile and snap their photo manually<p>With Evernote Hello, you can easily remember everyone you meet.<p>Evernote Hello is part of the Evernote family of products, which are designed to help you remember everything.</p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.evernote.hello" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.evernote.hello" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.4 stars out of five stars "> <div class="current-rating" style="width: 68.83191108703613%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.evernote.hello"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span class="display-price">Free</span> </button> </span> </span> </span> </div> </div> </div> </div> </div> </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 id="footer-content"> <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">©2014 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="https://play.google.com/intl/en-US_us/about/device-terms.html" target="_blank"> Devices Terms of Sale</a> <a class="footer-link id-no-nav" href="https://support.google.com/googleplay/bin/answer.py?answer=1196018&amp;hl=en_US" 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> </div> </div></div><div class="loading" id="page-load-indicator"></div><div id="audio-player"><audio autoplay="autoplay" id="html5Player"></audio></div><script>(function(){window._sc='[[null,\42\42,\42/store\42,\42/store/account\42,\42/store/movies\42,\42/store/music\42,\42/store/books\42,\42/store/newsstand\42,\42/store/apps\42,\42/store/devices\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d0\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d4\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d1\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d6\42,null,\42https://encrypted.google.com/complete/search?client\\u003dpartner\\u0026partnerid\\u003dskyjam-store\\u0026ds\\u003dcse\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d3\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d5\42,null,\42/\42,\42/play/log?format\\u003djson\42,null,\42https://play.google.com/intl/en-US_us/about/play-terms.html\42,\42https://support.google.com/googleplay/bin/answer.py?topic\\u003d2450225\\u0026answer\\u003d2479637\\u0026hl\\u003den_US\42,\42/store/buy\42,\42/store/install\42,\42/store/getpurchaseoutcome\42,\42/wishlist\42,\42/movies\42,\42/music?authuser\42,\42/books\42,\42/newsstand\42,\42/apps\42,\42/store/xhr/enablegpr\42,\42/store/xhr/deletereview\42,\42/store/xhr/ructx\42,\42/store/xhr/getuseraddress\42,\42/store/submitreview\42,\42/store/addtocart\42,\42/store/xhr/updatecart\42,\42https://www.gstatic.com/play/store/web/swf/4musicplayer.swf\42,\42/store/xhr/rapcategories\42,\42/store/xhr/rapsubmit\42,\42/store/xhr/puc\42,\42/store/xhr/pulc\42,\42/store/xhr/getwatchembed\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d86400\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d0\42,null,\42/store/xhr/mul\42,\42/store/xhr/getdoc\42,\42http://support.google.com/mobile/?p\\u003dbooks_formats\42,\42http://support.google.com/mobile/?p\\u003dbooks_devices\42,\42http://support.google.com/mobile/?p\\u003dbooks_androidapp\42,\42http://support.google.com/mobile/?p\\u003dbooks_iosapp\42,\42http://support.google.com/googleplay/bin/answer.py?answer\\u003d1062502\\u0026topic\\u003d1187416\\u0026ctx\\u003dtopic\42,\42/store/apps/details?id\\u003dcom.google.android.apps.books\42,\42/store/apps/details?id\\u003dcom.google.android.music\42,\42/store/apps/details?id\\u003dcom.google.android.videos\42,\42/store/apps/details?id\\u003dcom.google.android.apps.magazines\42,\42/store/xhr/topupopts\42,\42/store/setuserdata\42,\42/store/xhr/buynoco\42,\42/store/apps/collection/editors_choice\42,\42/store/apps/category/GAME\42,\42/store/account\42,\42/redeem\42,\42/store/xhr/getnumcartitems\42,\42/store/cart?modTime\\u003d0\42,\42/store/xhr/cancelsub\42,\42/store/xhr/dfph\42,\42https://play.google.com/intl/en-US_us/about/giftcards\42,\42/store/movies/category/MOVIE\42,\42/store/movies/category/TV\42,\42/store/cancelpreorder\42,\42http://support.google.com/googleplay/devices\42,\42/settings\42,\42/store/ratereview\42,\42/store/getdevicepermissions\42,\42/store/xhr/hide\42,\42/store/getreviews\42,\42/store/movies/collection/promotion_collections_movie_studios\42,\42/store/movies/collection/promotion_collections_tv_networks\42,\42/store/xhr/canceldeviceorder\42,\42https://plus.google.com/\42,\42https://wallet.google.com/updateCreditCard\42,\42/store/books/collection/promotion_1000568_txb_product\42,\42/store/xhr/experimenttoggler\42,\42https://support.google.com/googleplay/bin/answer.py?answer\\u003d1141080\42,null,\42/store/onewayredeem\42,\42https://wallet.google.com/legaldocument?docId\\u003d0.buyertos/US/2/1/und\42,\42/store/xhr/getvariantrec\42,\42https://wallet.google.com/legaldocument?family\\u003d0.privacynotice\\u0026hl\\u003den_US\42,\42https://play.google.com/intl/en-US_us/about/redeem-terms.html\42,\42/store/xhr/prepur\42,\42/store/xhr/comppurch\42,\42/store/xhr/getsimilarcluster\42,\42/store/xhr/getreviewannotation\42,\42/store/xhr/dismisssug\42,\42/store/xhr/getartistalbums\42,\42/store/myplayactivity\42,\42/store/opensearch.xml\42,\42https://ageverification.google.co.kr/ageverification?cl\\u003d1\\u0026hl\\u003dko\\u0026authuser\42,\42https://support.google.com/websearch/answer/4358949?ref_topic\\u003d3285072\\u0026hl\\u003dko\42,\42https://support.google.com/googleplay/?p\\u003dreport_content\42,null,\42/store/order\42,\42https://play.google.com/intl/en-US_us/about/promo-terms.html\42,\42/store/xhr/gbp\42,\42/store/xhr/uninstall\42,\42/store/xhr/talentcontent\42,\42/store/approveitem\42,\42\42,\42/store/licenses/apps\42,\42/store/unapproveitem\42,\42/store/xhr/pglc\42,\42/store/xhr/assign\42]\n,1,1,[\42/store/search\42,\42Search\42]\n,\42UA-19995903-1\42,\42PROD\42,1,\42https://wallet.google.com/payments/widgets/instrument_creator.js\42,60000]\n';})();</script><script>(function(){window._uc='[null,\42\42,\42en\42,\42US\42,[[\42c14f90b0\42,null,1,\42enable_corpus_menu_removal_for_mobile\42]\n,[\042628aa86c\42,null,1,\42enable_gift_card_payments_integrator_tokens\42]\n,[\42b0eb6535\42,null,1,\42enable_movies_subtitle_warning\42]\n,[\42d661adf8\42,null,1,\42enable_enterprise_play_store\42]\n,[\429cd547a3\42,null,1,\42enable_enable_scs\42]\n,[\42cfc83a8f\42,null,1,\42enable_movie_device_setup_page\42]\n,[\04211cdcd88\42,null,1,\42enable_optimize_mobile\42]\n,[\4283a1c766\42,null,1,\42enable_grouping_app_permissions\42]\n,[\42c57733ed\42,null,1,\42enable_talent_pages\42]\n,[\0422b277ce0\42,null,1,\42enable_glass_discount\42]\n,[\429b884249\42,null,1,\42enable_strikethrough_price_in_book_cards\42]\n,[\42b744e4cb\42,null,1,\42enable_signout_options_for_logout\42]\n,[\0421e72ba8d\42,null,1,\42enable_flag_inappropriate\42]\n,[\04272b063b1\42,null,1,\42enable_movies_chrome_app_integration\42]\n,[\42fd0884cc\42,null,1,\42enable_inapp_purchase_text\42]\n,[\0423f8ce17a\42,null,1,\42enable_loonie\42]\n,[\42e38df948\42,null,1,\42enable_finsky_wishlist_icon_adjust\42]\n,[\042196894ff\42,null,1,\42enable_books_consumer_rights_directive\42]\n,[\04237ad289c\42,null,1,\42enable_hardware_cancel_redirect_on_success\42]\n,[\42f6caf8fb\42,null,1,\42enable_in_app_rap_fix\42]\n,[\42b023b0c4\42,null,1,\42enable_music_preview_rights\42]\n,[\4283f335b0\42,null,1,\42enable_logging_to_odyssey\42]\n,[\42cd9bd9ce\42,null,1,\42enable_mobile_video_trailer\42]\n]\n,0,null,0,null,null,[]\n,null,0,[\42nocache:laz\42,\42nocache:payments_flow_for_setup_stored_value\42,\42signed-out\42]\n,[5500117,5500112,5500098,5500079,5500111,5500120,5500118,5500123,5500128,5500047,5500101,5500125,5500133,5500138,5500143,5500149,5500028,5500084,5500146,5500011,5500130]\n,null,null,null,\42en-US\42]\n';})();</script><script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/3595310022-main_page_js_compiled_main_page_js.js"></script>
82
+ <script>window.pressPlayCalled = false;if (typeof window.gapi != 'undefined' && !window.pressPlayCalled){window.pressPlayCalled = true;pressPlay();}
83
+ </script><script type="text/javascript">(function(){var locale='en_US';window.___gcfg = {lang:locale,parsetags:'explicit'
84
+ };(function(){function onGapiLoad(){if (typeof window.gapi != 'undefined'){window.gapi.load('plus:plusone:card:gapi.iframes:gapi.iframes.style.common',function (){if (!window.pressPlayCalled){window.pressPlayCalled = true;pressPlay();}
85
+ window.gapi.plusone.go('body-content');window.gapi.plus.go();window.gapi.config.update('card/source','play.webstore');window.gapi.card.watch();window.gapi.iframes.getContext().restyleSelf({'show':'yes'});window.gapi.iframes.getContext().ready();});}
82
86
  }
83
- var po = document.createElement('script');po.type = 'text/javascript';po.async = true;po.src = 'https://apis.google.com/js/platform.js';if (!po.addEventListener){po.attachEvent('onload',doPlusOne);}else {po.addEventListener('load',doPlusOne,false);}
84
- var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(po,s);})();})();</script><script type="text/javascript">(function (){if (window.gapi && window.gapi.load){window.gapi.load('plus',function(){window.gapi.plus.go();});}
85
- })();</script><script type="text/javascript">(function (){if (window.gapi && window.gapi.load){window.gapi.load('card',function(){window.gapi.config.update('card/source','play.webstore');window.gapi.card.watch()});}
86
- })();</script><div class="loading" id="page-load-indicator"></div><div id="audio-player"><audio autoplay="autoplay" id="html5Player"></audio></div><script>(function(){window._sc='[[null,\42/\42,\42/store\42,\42/store/account\42,\42/store/movies\42,\42/store/music\42,\42/store/books\42,\42/store/newsstand\42,\42/store/apps\42,\42/store/devices\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d0\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d4\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d1\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d6\42,null,\42https://encrypted.google.com/complete/search?client\\u003dpartner\\u0026partnerid\\u003dskyjam-store\\u0026ds\\u003dcse\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d3\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d5\42,null,\42/\42,\42/log?format\\u003djson\42,null,\42https://play.google.com/intl/en-US_us/about/play-terms.html\42,\42https://support.google.com/googleplay/bin/answer.py?topic\\u003d2450225\\u0026answer\\u003d2479637\\u0026hl\\u003den_US\42,\42/store/buy\42,\42/store/install\42,\42/store/getpurchaseoutcome\42,\42/wishlist\42,\42/movies\42,\42/music?authuser\42,\42/books\42,\42/newsstand\42,\42/apps\42,\42/store/xhr/enablegpr\42,\42/store/xhr/deletereview\42,\42/store/xhr/ructx\42,\42/store/xhr/getuseraddress\42,\42/store/submitreview\42,\42/store/addtocart\42,\42/store/xhr/updatecart\42,\42https://www.gstatic.com/play/store/web/swf/4musicplayer.swf\42,\42/store/xhr/rapcategories\42,\42/store/xhr/rapsubmit\42,\42/store/xhr/puc\42,\42/store/xhr/pulc\42,\42/store/xhr/getwatchembed\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d86400\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d0\42,null,\42/store/xhr/mul\42,\42/store/xhr/getdoc\42,\42http://support.google.com/mobile/?p\\u003dbooks_formats\42,\42http://support.google.com/mobile/?p\\u003dbooks_devices\42,\42http://support.google.com/mobile/?p\\u003dbooks_androidapp\42,\42http://support.google.com/mobile/?p\\u003dbooks_iosapp\42,\42http://support.google.com/googleplay/bin/answer.py?answer\\u003d1062502\\u0026topic\\u003d1187416\\u0026ctx\\u003dtopic\42,\42/store/apps/details?id\\u003dcom.google.android.apps.books\42,\42/store/apps/details?id\\u003dcom.google.android.music\42,\42/store/apps/details?id\\u003dcom.google.android.videos\42,\42/store/apps/details?id\\u003dcom.google.android.apps.magazines\42,\42/store/xhr/topupopts\42,\42/store/setuserdata\42,\42/store/xhr/buynoco\42,\42/store/apps/collection/editors_choice\42,\42/store/apps/category/GAME\42,\42/store/account\42,\42/redeem\42,\42/store/xhr/getnumcartitems\42,\42/store/cart?modTime\\u003d0\42,\42/store/xhr/cancelsub\42,\42/store/xhr/dfph\42,\42https://play.google.com/intl/en-US_us/about/giftcards\42,\42/store/movies/category/MOVIE\42,\42/store/movies/category/TV\42,\42/store/cancelpreorder\42,\42http://support.google.com/googleplay/devices\42,\42/settings\42,\42/store/ratereview\42,\42/store/getdevicepermissions\42,\42/store/xhr/hide\42,\42/store/getreviews\42,\42/store/movies/collection/promotion_collections_movie_studios\42,\42/store/movies/collection/promotion_collections_tv_networks\42,\42/store/xhr/canceldeviceorder\42,\42https://plus.google.com/\42,\42https://wallet.google.com/updateCreditCard\42,\42/store/books/category/coll_1673\42,\42/store/xhr/experimenttoggler\42,\42https://support.google.com/googleplay/bin/answer.py?answer\\u003d1141080\42,null,\42/store/onewayredeem\42,\42https://wallet.google.com/legaldocument?docId\\u003d0.buyertos/US/2/1/und\42,\42/store/xhr/getvariantrec\42,\42https://wallet.google.com/legaldocument?family\\u003d0.privacynotice\\u0026hl\\u003den_US\42,\42https://play.google.com/intl/en-US_us/about/redeem-terms.html\42,\42/store/xhr/prepur\42,\42/store/xhr/comppurch\42,\42/store/xhr/getsimilarcluster\42,\42/store/xhr/getreviewannotation\42,\42/store/xhr/dismisssug\42,\42/store/xhr/getartistalbums\42,\42/store/myplayactivity\42,\42/store/opensearch.xml\42,\42https://ageverification.google.co.kr/ageverification?cl\\u003d1\\u0026hl\\u003dko\\u0026authuser\42,\42https://support.google.com/websearch/answer/4358949?ref_topic\\u003d3285072\\u0026hl\\u003dko\42,\42https://support.google.com/googleplay/?p\\u003dreport_content\42,null,\42/store/order\42]\n,1,1,[\42/store/search\42,\42Search\42]\n,\42UA-19995903-1\42,\42PROD\42]\n';})();</script><script>(function(){window._uc='[null,\42\42,\42en\42,\42US\42,[[\42f6caf8fb\42,null,1,\42enable_in_app_rap_fix\42]\n,[\04266aa7673\42,null,1,\42enable_tv_season_subtitle\42]\n,[\0422196d13b\42,null,1,\42enable_glass_soft_bundles\42]\n,[\04237ad289c\42,null,1,\42enable_hardware_cancel_redirect_on_success\42]\n,[\0421e72ba8d\42,null,1,\42enable_flag_inappropriate\42]\n,[\42e38df948\42,null,1,\42enable_finsky_wishlist_icon_adjust\42]\n,[\4283a1c766\42,null,1,\42enable_grouping_app_permissions\42]\n,[\42cd9bd9ce\42,null,1,\42enable_mobile_video_trailer\42]\n,[\04211cdcd88\42,null,1,\42enable_optimize_mobile\42]\n,[\0423f8ce17a\42,null,1,\42enable_loonie\42]\n,[\42b0eb6535\42,null,1,\42enable_movies_subtitle_warning\42]\n,[\42fd0884cc\42,null,1,\42enable_inapp_purchase_text\42]\n,[\42b023b0c4\42,null,1,\42enable_music_preview_rights\42]\n,[\0422b277ce0\42,null,1,\42enable_glass_discount\42]\n,[\42b744e4cb\42,null,1,\42enable_signout_options_for_logout\42]\n,[\429cd547a3\42,null,1,\42enable_enable_scs\42]\n,[\04272b063b1\42,null,1,\42enable_movies_chrome_app_integration\42]\n]\n,0,null,0,null,null,[]\n,null,0,[\42nocache:laz\42,\42signed-out\42]\n,[5500028,5500093,5500074,5500091,5500078,5500102,5500100,5500087,5500095,5500104,5500086,5500090,5500092]\n]\n';})();</script><script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/584612591-main_page_js_compiled_main_page_js.js"></script>
87
- <script>pressPlay();</script><script src="https://wallet.google.com/inapp/lib/buy.js"></script><script type="text/javascript">(function(){var locale='en';google.payments.inapp.preload({'locale' :locale
87
+ var po = document.createElement('script');po.type = 'text/javascript';po.async = true;po.src = 'https://apis.google.com/js/platform.js';if (!po.addEventListener){po.attachEvent('onload',onGapiLoad);}else {po.addEventListener('load',onGapiLoad,false);}
88
+ var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(po,s);})();})();</script><div id="instrument-manager-parent"></div><script src="https://wallet.google.com/inapp/lib/buy.js"></script><script type="text/javascript">(function(){var locale='en';google.payments.inapp.preload({'locale' :locale
88
89
  });})();</script><script type="text/javascript">(function(){var tracking_id='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)
89
- })(window,document,'script','//www.google-analytics.com/analytics.js','play_ga');play_ga('create',tracking_id);play_ga('send','pageview');})();</script></body></html><div> <script>(function(){var fu=true;var pt='';var ab='';var lmt='';var curl='https://play.google.com/store/apps/details?id\75com.evernote';var nbp='[]\n';var sc='CAESGAgFIhQSEgoMY29tLmV2ZXJub3RlEAEYAw\75\075';var pgj=false;var di='com.evernote';var du=2;if (fu){if (pt){upt(pt);}
90
+ })(window,document,'script','//www.google-analytics.com/analytics.js','play_ga');play_ga('create',tracking_id);play_ga('send','pageview');})();</script></body></html><div> <script>(function(){var fu=true;var pt='';var ab='';var lmt='';var curl='https://play.google.com/store/apps/details?id\75com.evernote';var nbp='[]\n';var sc='CAESGAgFIhQSEgoMY29tLmV2ZXJub3RlEAEYAw\75\075';var pgj=false;var di='com.evernote';var du=2;window.updateClient = function(){if (fu){if (pt){upt(pt);}
90
91
  if (ab){uab(ab);}
91
92
  if (lmt){ihc(lmt);}
92
- if (nbp){snbp(nbp);}
93
+ if (nbp && typeof snbp != 'undefined'){snbp(nbp);}
93
94
  if (curl){sglc(curl);}
94
95
  if (pgj){if (gapi && gapi.plus && gapi.plus.go){gapi.plus.go();}
95
96
  }
96
97
  upba(di,du);usc(sc);}
98
+ }
99
+ if (window.pressPlayCalled){window.updateClient();}
97
100
  })();</script> </div>