play_scrape 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0787dd4d682920d20ed04a52a220c4497617ffd0
4
+ data.tar.gz: 319bb4899cf0fc4ac371e89e19b46b77fca9db47
5
+ SHA512:
6
+ metadata.gz: 93ef5d8b3c7e242448bec8ea7eb50dd00370c59c8f67009141e1a594622ecc835ee0c53021021423713d428ae8cbdeeeadc8984d565805929b4ce88e93467d3f
7
+ data.tar.gz: 3b88a8858521f8703441b53fc632ca26be0627ddeb99356f78beee73f88e358f6f3c20e88d57e014aeab785c2fabdfffff031b0cf6738213de35ab8b8712bfba
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in play_scrape.gemspec
4
+ gemspec
5
+ gem 'nokogiri', '~> 1.6.0'
6
+ gem 'typhoeus', '~> 0.6.6'
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Michael Villena
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # PlayScrape
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'play_scrape'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install play_scrape
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require 'rake/testtask'
3
+
4
+ Rake::TestTask.new do |t|
5
+ t.libs << 'test'
6
+ t.test_files = FileList['test/*test.rb']
7
+ end
8
+
9
+ desc "Run tests"
10
+ task :test
@@ -0,0 +1,15 @@
1
+ module PlayScrape
2
+ class AppInfo
3
+ attr_accessor :package_name, :description, :rating, :num_ratings, :dev_url, :icon_url,
4
+ :min_installs, :max_installs
5
+
6
+ def initialize
7
+ end
8
+
9
+ def to_hash
10
+ hash = Hash.new
11
+ self.instance_variables.each { |var| hash[var.to_s.delete("@")] = self.instance_variable_get(var) }
12
+ end
13
+
14
+ end
15
+ end
@@ -0,0 +1,3 @@
1
+ module PlayScrape
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,51 @@
1
+ require "play_scrape/version"
2
+ require "play_scrape/app"
3
+
4
+ require 'typhoeus'
5
+ require 'nokogiri'
6
+
7
+ module PlayScrape
8
+
9
+ PLAY_URL = 'https://play.google.com/store/apps/details?id='
10
+
11
+ APP_DESC_CSS_PATH = 'html body div#wrapper.wrapper-with-footer div#body-content div.details-wrapper div.details-section div.details-section-contents div.show-more-content div.app-orig-desc'
12
+ APP_ICON_CSS_PATH = 'html body div#wrapper.wrapper-with-footer div#body-content div.details-wrapper div.details-info div.cover-container img.cover-image'
13
+ APP_RATING_CSS_PATH = 'div.score'
14
+ APP_NUM_RATINGS_CSS_PATH = 'span.reviews-num'
15
+ APP_DEV_URL_CSS_PATH = 'a.dev-link'
16
+ APP_INSTALL_CSS_PATH = 'div.details-section div.details-section-contents div.meta-info div.content'
17
+
18
+ def self.scrape_app_info(package_name)
19
+ res = Typhoeus.get(PLAY_URL + package_name)
20
+
21
+ if res.code == 200
22
+ app_info = PlayScrape::AppInfo.new
23
+ html = Nokogiri::HTML(res.body)
24
+ description = html.css(APP_DESC_CSS_PATH).first
25
+ app_rating = html.css(APP_RATING_CSS_PATH).first
26
+ num_ratings = html.css(APP_NUM_RATINGS_CSS_PATH).first
27
+ icon_url = html.css(APP_ICON_CSS_PATH).first
28
+
29
+ # A bit hacky below but it'll do
30
+ installs = html.css(APP_INSTALL_CSS_PATH)[2].text.gsub(",", "").split("-").map(&:to_i)
31
+
32
+ dev_links = html.css(APP_DEV_URL_CSS_PATH)
33
+ dev_url = String.new
34
+ if !dev_links.empty? && dev_links.first.text.match(/Visit Developer's Website/)
35
+ regex = /q=(https?:\/\/[\S]+?)&/
36
+ dev_url = dev_links.first.attributes['href'].value.match(regex)[1]
37
+ end
38
+
39
+ app_info.package_name = package_name
40
+ app_info.description = description.inner_html
41
+ app_info.rating = app_rating.text.to_f
42
+ app_info.num_ratings = num_ratings.text.gsub(",", "").to_i
43
+ app_info.icon_url = icon_url
44
+ app_info.dev_url = dev_url
45
+ app_info.min_installs = installs.first
46
+ app_info.max_installs = installs.last
47
+
48
+ app_info
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'play_scrape/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "play_scrape"
8
+ spec.version = PlayScrape::VERSION
9
+ spec.authors = ["Michael Villena"]
10
+ spec.email = ["mvillena@cmu.edu"]
11
+ spec.description = %q{Basic scraping of the Google PlayStore}
12
+ spec.summary = %q{It can scrape the play store}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ end
@@ -0,0 +1,17 @@
1
+ require 'test/unit'
2
+ require 'play_scrape'
3
+
4
+ class PlayScrapeTest < Test::Unit::TestCase
5
+ TEST_PACKAGE = 'com.ea.game.fifa14_na'
6
+ def test_scraping_app_information
7
+ app_info = PlayScrape.scrape_app_info(TEST_PACKAGE)
8
+
9
+ assert_equal 'com.ea.game.fifa14_na', app_info.package_name, "Package name does not match"
10
+ assert_equal 4.6, app_info.rating, "Play rating does not match"
11
+ assert_equal 500000, app_info.min_installs
12
+ assert_equal 1000000, app_info.max_installs
13
+ assert_operator 36514, :<=, app_info.num_ratings
14
+ assert_match 'REAL PLAYERS. REAL TEAMS. REAL LEAGUES.', app_info.description, "Description doesn't match"
15
+ assert_match 'http://help.ea.com', app_info.dev_url, "Developer url doesn't match"
16
+ end
17
+ end
@@ -0,0 +1,87 @@
1
+ <!doctype html>
2
+ <html><head><meta http-equiv="X-UA-Compatible" content="IE=edge"><style type="text/css">#gbar,#guser{font-size:13px;padding-top:0px !important;}#gbar{height:22px}#guser{padding-bottom:7px !important;text-align:right}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}@media all{.gb1{height:22px;margin-right:.5em;vertical-align:top}#gbar{float:left}}a.gb1,a.gb4{text-decoration:underline !important}a.gb1,a.gb4{color:#00c !important}.gbi .gb4{color:#dd8e27 !important}.gbf .gb4{color:#900 !important}</style><style type="text/css">@font-face {
3
+ font-family: 'Roboto';
4
+ font-style: normal;
5
+ font-weight: 100;
6
+ src: local('Roboto Thin'), local('Roboto-Thin'), url(//ssl.gstatic.com/fonts/roboto/v9/Jzo62I39jc0gQRrbndN6nfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
7
+ }
8
+ @font-face {
9
+ font-family: 'Roboto';
10
+ font-style: normal;
11
+ font-weight: 300;
12
+ src: local('Roboto Light'), local('Roboto-Light'), url(//ssl.gstatic.com/fonts/roboto/v9/Hgo13k-tfSpn0qi1SFdUfaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
13
+ }
14
+ @font-face {
15
+ font-family: 'Roboto';
16
+ font-style: normal;
17
+ font-weight: 400;
18
+ src: local('Roboto Regular'), local('Roboto-Regular'), url(//ssl.gstatic.com/fonts/roboto/v9/zN7GBFwfMP4uA6AR0HCoLQ.ttf) format('truetype');
19
+ }
20
+ @font-face {
21
+ font-family: 'Roboto';
22
+ font-style: normal;
23
+ font-weight: 500;
24
+ src: local('Roboto Medium'), local('Roboto-Medium'), url(//ssl.gstatic.com/fonts/roboto/v9/RxZJdnzeo3R5zSexge8UUaCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
25
+ }
26
+ @font-face {
27
+ font-family: 'Roboto';
28
+ font-style: normal;
29
+ font-weight: 700;
30
+ src: local('Roboto Bold'), local('Roboto-Bold'), url(//ssl.gstatic.com/fonts/roboto/v9/d-6IYplOFocCacKzxwXSOKCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
31
+ }
32
+ @font-face {
33
+ font-family: 'Roboto';
34
+ font-style: italic;
35
+ font-weight: 100;
36
+ src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(//ssl.gstatic.com/fonts/roboto/v9/12mE4jfMSBTmg-81EiS-YS3USBnSvpkopQaUR-2r7iU.ttf) format('truetype');
37
+ }
38
+ @font-face {
39
+ font-family: 'Roboto';
40
+ font-style: italic;
41
+ font-weight: 300;
42
+ src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url(//ssl.gstatic.com/fonts/roboto/v9/7m8l7TlFO-S3VkhHuR0at50EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
43
+ }
44
+ @font-face {
45
+ font-family: 'Roboto Slab';
46
+ font-style: normal;
47
+ font-weight: 100;
48
+ src: local('Roboto Slab Thin'), local('RobotoSlab-Thin'), url(//ssl.gstatic.com/fonts/robotoslab/v2/MEz38VLIFL-t46JUtkIEgH4UHu-c0cTZKOwO_f6u1Os.ttf) format('truetype');
49
+ }
50
+ @font-face {
51
+ font-family: 'Roboto Slab';
52
+ font-style: normal;
53
+ font-weight: 300;
54
+ src: local('Roboto Slab Light'), local('RobotoSlab-Light'), url(//ssl.gstatic.com/fonts/robotoslab/v2/dazS1PrQQuCxC3iOAJFEJbfB31yxOzP-czbf6AAKCVo.ttf) format('truetype');
55
+ }
56
+ @font-face {
57
+ font-family: 'Roboto Slab';
58
+ font-style: normal;
59
+ font-weight: 400;
60
+ src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(//ssl.gstatic.com/fonts/robotoslab/v2/y7lebkjgREBJK96VQi37Zp0EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
61
+ }
62
+ @font-face {
63
+ font-family: 'Roboto Slab';
64
+ font-style: normal;
65
+ font-weight: 700;
66
+ src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(//ssl.gstatic.com/fonts/robotoslab/v2/dazS1PrQQuCxC3iOAJFEJZ_TkvowlIOtbR7ePgFOpF4.ttf) format('truetype');
67
+ }
68
+ </style><link rel="stylesheet" href="/static/client/css/2447509832-lowlife_css_ltr.css">
69
+ <link href="//ssl.gstatic.com/android/market_images/web/favicon.ico" rel="shortcut icon"><script type="text/javascript"></script><title>Quran Android - Android Apps on Google Play</title><meta content="Quran Android is a free, open source Quran application for Android devices. There are many features under development. Please send us your feedback and feature reque..." name="Description"><link href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran" rel="canonical"><link hreflang="x-default" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran" rel="alternate"><link hreflang="af" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=af" rel="alternate"><link hreflang="ms" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=ms" rel="alternate"><link hreflang="ca" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=ca" rel="alternate"><link hreflang="cs" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=cs" rel="alternate"><link hreflang="da" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=da" rel="alternate"><link hreflang="de" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=de" rel="alternate"><link hreflang="et" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=et" rel="alternate"><link hreflang="en_GB" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=en_GB" rel="alternate"><link hreflang="en" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=en" rel="alternate"><link hreflang="es" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=es" rel="alternate"><link hreflang="es_419" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=es_419" rel="alternate"><link hreflang="tl" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=tl" rel="alternate"><link hreflang="fr" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=fr" rel="alternate"><link hreflang="hr" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=hr" rel="alternate"><link hreflang="zu" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=zu" rel="alternate"><link hreflang="it" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=it" rel="alternate"><link hreflang="sw" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=sw" rel="alternate"><link hreflang="lv" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=lv" rel="alternate"><link hreflang="lt" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=lt" rel="alternate"><link hreflang="hu" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=hu" rel="alternate"><link hreflang="nl" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=nl" rel="alternate"><link hreflang="no" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=no" rel="alternate"><link hreflang="pl" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=pl" rel="alternate"><link hreflang="pt_BR" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=pt_BR" rel="alternate"><link hreflang="pt_PT" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=pt_PT" rel="alternate"><link hreflang="ro" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=ro" rel="alternate"><link hreflang="sk" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=sk" rel="alternate"><link hreflang="sl" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=sl" rel="alternate"><link hreflang="fi" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=fi" rel="alternate"><link hreflang="sv" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=sv" rel="alternate"><link hreflang="vi" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=vi" rel="alternate"><link hreflang="tr" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=tr" rel="alternate"><link hreflang="el" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=el" rel="alternate"><link hreflang="be" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=be" rel="alternate"><link hreflang="bg" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=bg" rel="alternate"><link hreflang="ru" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=ru" rel="alternate"><link hreflang="sr" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=sr" rel="alternate"><link hreflang="uk" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=uk" rel="alternate"><link hreflang="am" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=am" rel="alternate"><link hreflang="hi" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=hi" rel="alternate"><link hreflang="th" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=th" rel="alternate"><link hreflang="ko" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=ko" rel="alternate"><link hreflang="ja" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=ja" rel="alternate"><link hreflang="zh_CN" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=zh_CN" rel="alternate"><link hreflang="zh_TW" href="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;hl=zh_TW" rel="alternate"></head><body data-page-server-cookie=""><div id=gbar><nobr><a class=gb1 href="http://www.google.com/webhp?hl=en&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 id="offscreen-renderer" style="position:fixed;top:-100000px;left:-100000px;opacity:0"></div><div class="wrapper-with-footer" id="wrapper"><div><div class="nav-container" style="visibility:hidden"> <span class="show-all-hover-zone"> <span class="hover-arrow"></span> </span> <ul class="nav"> <li class="nav-list-item apps" data-backend="3" style="display:none"> <a class="menu-link 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 track-click" data-uitype="103"> <a class="library-link no-menu-change" href="/apps"> My apps </a> </li> <li class="sub-nav-option"> <a class="shop-link 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 no-menu-change" href="/store/apps/category/GAME"> Games </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link 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 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 track-click" data-uitype="105"> <a class="library-link no-menu-change" href="/movies"> My movies & TV </a> </li> <li class="sub-nav-option"> <a class="shop-link 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 no-menu-change" href="/store/movies/category/MOVIE"> Movies </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link no-menu-change" href="/store/movies/category/TV"> TV </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link 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 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 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 track-click" data-uitype="104"> <a class="library-link no-menu-change no-nav" href="/music?authuser"> My music </a> </li> <li class="sub-nav-option"> <a class="shop-link 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 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 track-click" data-uitype="106"> <a class="library-link no-menu-change no-nav" href="/books"> My books </a> </li> <li class="sub-nav-option"> <a class="shop-link 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 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 no-menu-change default" href="/store/magazines"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Magazines </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="library-link no-menu-change track-click" href="/magazines" data-uitype="107"> My magazines </a> </li> <li class="sub-nav-option"> <a class="shop-link no-menu-change chosen" href="/store/magazines"> Shop </a> </li> </ul> </li> <li class="nav-list-item devices" data-backend="5" style="display:none"> <a class="menu-link 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 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 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> <ul class="sub-nav"> <li class="secondary-sub-nav-option track-click" data-uitype="108"> <a class="sub-nav-link no-menu-change" href="/wishlist"> My wishlist </a> </li> <li class="secondary-sub-nav-option cannot-set-chosen track-click" data-uitype="109"> <a class="sub-nav-link no-menu-change no-nav" href="/redeem"> Redeem </a> </li> <li class="secondary-sub-nav-option cannot-set-chosen"> <a class="sub-nav-link no-menu-change no-nav" href="https://play.google.com/intl/en-US_us/about/giftcards"> Buy gift card </a> </li> <li class="secondary-sub-nav-option cannot-set-chosen"> <span class="sub-nav-link no-menu-change topup-link"> Buy Google Play credit </span> </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="/static/client/js/825506042-jquery_js_compiled_jquery_js.js"></script>
70
+ <script type="text/javascript" src="/static/client/js/3295658021-initial_page_js_compiled_initial_page_js.js"></script>
71
+ <script>initializeApp();</script><div class="action-bar-container" jsl="$t;if _s(action_bar,1)&gt;0;" style="display:none"> <div class="action-bar-inner"> <div class="" jsl="$a class:'action-bar '+_f(action_bar,'',0);"> <div jsinstance="*0" jsl="for item:_f(action_bar,[],1);$ue bind(_f(item,0,0)!=8?bind('tk12611958653569823785',{item:item}):bind('tk2607108531747256101',{item:item}),{__dir:__dir,__tag:true,__markup_allowed:true});" style="display:none"></div> </div> </div> </div><div itemtype="http://schema.org/MobileApplication" itemscope="itemscope" id="body-content"><meta content="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran" itemprop="url"><meta itemprop="logoImageUrl" content="https://www.gstatic.com/android/market_images/plus/play_stream_logo.png"><meta itemprop="logoHrefUrl" content="https://play.google.com"><div class="details-wrapper apps square-cover" data-docid="com.quran.labs.androidquran"> <div class="details-info"> <div class="cover-container"> <img class="cover-image" src="https://lh3.ggpht.com/zoyAL6BWpiHrgyFEujQcEXhBqZn4SfX0JiIFqOecs2JoZYy39Yam8xiz7Vq6kP7S2w=w300" alt="Cover art" itemprop="image"> </div> <div class="info-container"> <div class="document-title" itemprop="name"> <div>Quran Android</div> </div> <div itemprop="author" itemscope="" itemtype="http://schema.org/Organization"> <meta content="/store/apps/developer?id=Quran+Android" itemprop="url"> <a class="document-subtitle primary" href="/store/apps/developer?id=Quran+Android" itemprop="name">Quran Android</a> <div class="document-subtitle">- November 3, 2013</div> </div> <div> <a class="document-subtitle category" href="/store/apps/category/BOOKS_AND_REFERENCE"> <span itemprop="genre">Books &amp; Reference</span> </a> </div> <div class="details-actions"> <span class="buy-button-container apps medium play-button" data-docid="com.quran.labs.androidquran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span> <span itemprop="offers" itemscope="" itemtype="http://schema.org/Offer"> <meta content="https://play.google.com/store/apps/details?id=com.quran.labs.androidquran&amp;rdid=com.quran.labs.androidquran&amp;rdot=1&amp;feature=md" itemprop="url"> <meta content="" itemprop="previewUrl"> <meta content="" itemprop="offerType"> <meta content="Free" itemprop="price"> <meta content="" itemprop="description"> <span itemprop="seller" itemscope="itemscope" itemtype="http://schema.org/Organization"> <meta itemprop="name" content="Android"> </span> </span> </span> <span>Install</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.quran.labs.androidquran" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> <div class="wishlist-container" data-uitype="203" data-server-cookie="CAIaJQojEiEKG2NvbS5xdXJhbi5sYWJzLmFuZHJvaWRxdXJhbhABGAM="> <div class="play-button wishlist-content wishlist-yet-to-add" data-docid="com.quran.labs.androidquran"> <div class="wishlist-icon"></div> <div class="wishlist-text"> <div class="wishlist-text-default wishlist-text-add track-click" data-uitype="204" data-server-cookie="CAIaJQojEiEKG2NvbS5xdXJhbi5sYWJzLmFuZHJvaWRxdXJhbhABGAM="> Add to Wishlist </div> <div class="wishlist-text-default wishlist-text-adding"> Adding... </div> <div class="wishlist-text-default wishlist-text-added track-impression"> Added to Wishlist </div> <div class="wishlist-text-default wishlist-text-remove track-click" data-uitype="205" data-server-cookie="CAIaJQojEiEKG2NvbS5xdXJhbi5sYWJzLmFuZHJvaWRxdXJhbhABGAM="> Remove </div> <div class="wishlist-text-default wishlist-text-removing"> Removing... </div> </div> </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="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"> <div class="current-rating" style="width: 97.2691822052002%;"></div> </div> </div> <div class="stars-count"> (<span class="reviewers-small"></span>85,242) </div> </div> <div class="details-sharing-section"> <div class="plusone-container"> <div class="g-plusone" data-href="https://market.android.com/details?id=com.quran.labs.androidquran" data-source="google:market" data-recommendations="false" data-annotation="inline" data-size="medium" data-width="240" data-align="right" data-ad="true"></div> <script type="text/javascript">if (gapi && gapi.plusone){gapi.plusone.go("body-content");}
72
+ </script> </div> </div> <script>(function(){var docid='com.quran.labs.androidquran';if (typeof fci !== 'undefined'){fci(docid);}else {jQuery(document).ready(function(){fci(docid);});}
73
+ })();</script> </div> </div> <div class="details-section screenshots"> <div class="details-section-contents"> <div class="details-section-body expandable"> <div class="thumbnails" data-expand-target="thumbnails"> <img class="screenshot" src="https://lh3.ggpht.com/o11uy7fB-yCfD5ROTndVzjAa1qofIJGaIWNkZ6iUKqIPmxV05hh8GIwVTY-P_WF0NkM=h310" alt="Quran Android - screenshot thumbnail" data-expand-to="full-screenshot-0" itemprop="screenshot"><img class="screenshot" src="https://lh5.ggpht.com/9hrTFCO6UoCEDqfZYou0HQmeMkf1cclKvxqDhcLZ8riJR_MhdAocIZhkRPV_TfTn59o6=h310" alt="Quran Android - screenshot thumbnail" data-expand-to="full-screenshot-1" itemprop="screenshot"><img class="screenshot" src="https://lh4.ggpht.com/VlJTi6gkOTq9NKln679JTa8M2yUq9SxcqrMBb0WUpOo0E70Arv2Eo82o4_EMaBNwnvp2=h310" alt="Quran Android - screenshot thumbnail" data-expand-to="full-screenshot-2" itemprop="screenshot"><img class="screenshot" src="https://lh3.ggpht.com/iw5wvnUdKdYe4fYn3-znK99BvCtr9htF8SGjE2T3RL_5BHvO3bXduEWV1qJl5YZ5VuI=h310" alt="Quran Android - screenshot thumbnail" data-expand-to="full-screenshot-3" itemprop="screenshot"><img class="screenshot" src="https://lh5.ggpht.com/MfoyYJ0SX2HozALqTKuHszNc3yJ3ni1t4z5XRMOiek7PDi5-5aLAiceYCNqQnBUulgw=h310" alt="Quran Android - screenshot thumbnail" data-expand-to="full-screenshot-4" itemprop="screenshot"><img class="screenshot" src="https://lh5.ggpht.com/n9oTsmaf9yRN068jthq4lXLraF7cuHgJXYQIzt0C6VwpiHJNl1AK22JEhyBiCxcMAIc=h310" alt="Quran Android - screenshot thumbnail" data-expand-to="full-screenshot-5" itemprop="screenshot"><img class="screenshot" src="https://lh3.ggpht.com/citKBUxDPkRH2ynZoFLTHE4NyZ4uM7dcvXWzdyT_Ak_SHXUuX36QzedKfbribDIg7ubP=h310" alt="Quran Android - screenshot thumbnail" data-expand-to="full-screenshot-6" itemprop="screenshot"><img class="screenshot" src="https://lh4.ggpht.com/13OzsPw7V9-k2jP7LmpmSXEwEMZphsDqa_ShIvJe3rOZEQLGOr3CQhQoy00lZQr0Tg=h310" alt="Quran Android - screenshot thumbnail" data-expand-to="full-screenshot-7" itemprop="screenshot"><img class="screenshot" src="https://lh5.ggpht.com/6WzUZSPMuKv5RnIO1hnQ-VE6AfoMMDRMrf-5Tp5XEXPe4qi2lRfamzNHNagejEP2PKQ=h310" alt="Quran Android - screenshot thumbnail" data-expand-to="full-screenshot-8" itemprop="screenshot"><img class="screenshot" src="https://lh6.ggpht.com/r_nhap0vbWbg-la4EuAfMIvtljpFuoAnZ9GHCGN2UfWTDe-5xxXiJgCdXRE-54uYkQ=h310" alt="Quran Android - screenshot thumbnail" data-expand-to="full-screenshot-9" itemprop="screenshot"><img class="screenshot" src="https://lh3.ggpht.com/astwqnO7BG96FDPsECp-J8qEGxQ93cZ29XBxObJ4Jm0LTsQOnXSTQsOKYo5O3nFj3g=h310" alt="Quran Android - screenshot thumbnail" data-expand-to="full-screenshot-10" itemprop="screenshot"> </div> <div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh3.ggpht.com/o11uy7fB-yCfD5ROTndVzjAa1qofIJGaIWNkZ6iUKqIPmxV05hh8GIwVTY-P_WF0NkM=h900" alt="Quran Android - screenshot" data-expand-target="full-screenshot-0" data-expand-to="full-screenshot-1" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh5.ggpht.com/9hrTFCO6UoCEDqfZYou0HQmeMkf1cclKvxqDhcLZ8riJR_MhdAocIZhkRPV_TfTn59o6=h900" alt="Quran Android - screenshot" data-expand-target="full-screenshot-1" data-expand-to="full-screenshot-2" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh4.ggpht.com/VlJTi6gkOTq9NKln679JTa8M2yUq9SxcqrMBb0WUpOo0E70Arv2Eo82o4_EMaBNwnvp2=h900" alt="Quran Android - screenshot" data-expand-target="full-screenshot-2" data-expand-to="full-screenshot-3" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh3.ggpht.com/iw5wvnUdKdYe4fYn3-znK99BvCtr9htF8SGjE2T3RL_5BHvO3bXduEWV1qJl5YZ5VuI=h900" alt="Quran Android - screenshot" data-expand-target="full-screenshot-3" data-expand-to="full-screenshot-4" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh5.ggpht.com/MfoyYJ0SX2HozALqTKuHszNc3yJ3ni1t4z5XRMOiek7PDi5-5aLAiceYCNqQnBUulgw=h900" alt="Quran Android - screenshot" data-expand-target="full-screenshot-4" data-expand-to="full-screenshot-5" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh5.ggpht.com/n9oTsmaf9yRN068jthq4lXLraF7cuHgJXYQIzt0C6VwpiHJNl1AK22JEhyBiCxcMAIc=h900" alt="Quran Android - screenshot" data-expand-target="full-screenshot-5" data-expand-to="full-screenshot-6" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh3.ggpht.com/citKBUxDPkRH2ynZoFLTHE4NyZ4uM7dcvXWzdyT_Ak_SHXUuX36QzedKfbribDIg7ubP=h900" alt="Quran Android - screenshot" data-expand-target="full-screenshot-6" data-expand-to="full-screenshot-7" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh4.ggpht.com/13OzsPw7V9-k2jP7LmpmSXEwEMZphsDqa_ShIvJe3rOZEQLGOr3CQhQoy00lZQr0Tg=h900" alt="Quran Android - screenshot" data-expand-target="full-screenshot-7" data-expand-to="full-screenshot-8" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh5.ggpht.com/6WzUZSPMuKv5RnIO1hnQ-VE6AfoMMDRMrf-5Tp5XEXPe4qi2lRfamzNHNagejEP2PKQ=h900" alt="Quran Android - screenshot" data-expand-target="full-screenshot-8" data-expand-to="full-screenshot-9" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh6.ggpht.com/r_nhap0vbWbg-la4EuAfMIvtljpFuoAnZ9GHCGN2UfWTDe-5xxXiJgCdXRE-54uYkQ=h900" alt="Quran Android - screenshot" data-expand-target="full-screenshot-9" data-expand-to="full-screenshot-10" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh3.ggpht.com/astwqnO7BG96FDPsECp-J8qEGxQ93cZ29XBxObJ4Jm0LTsQOnXSTQsOKYo5O3nFj3g=h900" alt="Quran Android - screenshot" data-expand-target="full-screenshot-10" data-expand-to="thumbnails" data-expand-fit-screen="true" data-expand-scroll="true"> </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="app-orig-desc">Quran Android is a free, open source Quran application for Android devices. There are many features under development. Please send us your feedback and feature requests and keep us in your prayers!<p>Quran Android provides the following features:<br>- Updated Index<br>- Gapless audio playback<br>- Ayah bookmarking<br>- Ayah share<br>- Ibn Katheer and Saady Tafsir<br>- Audio recitations are available for streaming and downloading with highlighting support (tap the screen for to get the audio toolbar).<br>- search<br>- beta: night mode<br>- beta: audio repeat<br>- crystal clear Madani compliant images.<br>- translations in many different languages (currently, Arabic Tafseer, English Sahih International Translation, French, German, Indonesian, Malay, Spanish, Turkish, Transliteration, Bosnian, Russian, Bengali, Kurdish, Somali, Dutch, Swahili, Malayalam, Azerbaijani, Tamil, and Urdu) with more coming soon.<p>*Please Note* - we need phone state permissions so we can stop the audio playback when a phone call comes in (otherwise, it would continue playing). also, we need internet to download data due to the limitation on non-sdcard memory on most android phones.<p>Because Quran Android is an open source project, it makes it easy for anyone to contribute and help improve the project. we are also open to hearing your suggestions to make Quran Android the best Quran application on the market.<p>Recitations available:<br>Abd El Basit - Abdul Basit Mujawwad - Abdullah Basfar - Abdurrahmaan As-Sudais - Abu Bakr Ash-Shaatree - Alafasy - Ghamadi - Hani Rifai - Husary - Husary Mujawwad - Hudhaify - Maher Al Muaiqly - Minshawy - Minshawy Mujawwad - Mohammad al Tablaway - Muhammad Ayyoub - Muhammad Jibreel - Saood Ash-Shuraym - Ibrahim Walk (English)<p>Tags: Quran, Qur&#39;an, Koran, Coran, Islam, Quran.com</div> <div class="show-more-end"></div> </div> <div> <div class="play-button show-more small"> Read more </div> <div class="play-button expand-close"> <div class="close-image"> </div> </div> </div> </div> <div class="details-section-divider"></div> </div> </div><div data-docid="com.quran.labs.androidquran" class="details-wrapper apps"> <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.quran.labs.androidquran"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> <span class="unallowed-app-review 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 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 href="https://plus.google.com/up/accounts/upgrade?gpsrc=gpwr0&amp;continue=https://play.google.com/store/apps/details?id%3Dcom.quran.labs.androidquran" class="play-button no-nav apps"> Sign up for Google+ </a> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="review-help 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"> <div class="play-button enable-gpr apps"> Continue </div> </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="write-star-rating-container neutral"> <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"> <div class="current-rating" style="width: 0.0%;"></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"> <div class="submit-review play-button apps disabled"> Submit Review </div> </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"> <div class="current-rating" style="width: 0.0%;"></div> </div> </div> <div class="review-action-button-container"> <div class="play-button icon-button small review-action-button-gap"> <div class="review-trash-button-icon"></div> </div> </div> </div> <div class="review-row"> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="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"> <div class="current-rating" style="width: 0.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"> <div class="heading"> Reviews </div> <div class="review-actions track-click" data-uitype="206"> <div class="review-filters" data-expanded-only="true" style="display:none"> <div class="dropdown-menu-container review-filter 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 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="0">Latest Version</div> </div> </div> </div> <div class="write-button play-button"> <span class="write-review-button-icon"></span> <span> Write a Review </span> </div> </div> </div> <div class="details-section-body expandable" data-more-reviews-docid="com.quran.labs.androidquran"> <div class="preview-panel"> <div class="preview-reviews multicol" data-multicol-width="auto" data-multicol-fixed-height="true"> <div class="rating-box"> <div class="score-container" itemscope="itemscope" itemprop="aggregateRating" itemtype="http://schema.org/AggregateRating"> <meta content="4.863459" itemprop="ratingValue"> <meta content="85242" itemprop="ratingCount"> <div class="score">4.9</div> <div class="score-container-star-rating"> <div class="small-star star-rating-non-editable-container"> <div class="current-rating" style="width: 97.2691822052002%;"></div> </div> </div> <div class="reviews-stats"> <span class="reviewers-small"></span> <span class="reviews-num">85,242</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">77,933</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:6%"></span> <span class="bar-number">4,794</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:1%"></span> <span class="bar-number">1,395</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:0"></span> <span class="bar-number">425</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">695</span> </div> </div> </div> <div class="featured-review" data-reviewid="lg:AOqpTOF-1Yn2mwjuQ3EYeU4HsGeviWtSZegRTSMTkT8J9oR_geoLCSfAHIKSvjDuYIKMKgMBu6QxKxZVEbK9Rcg" data-expand-to="user-0"> <div class="author"> <span> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48" alt="A Google User avatar image"> </span> </div> <div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Problem with galaxy grand I9082</span> Black bar on top of pages same size as taskbar, prevent full display of pages. Should indicate which sourat audio was downloaded. Add small calligraphy arround pages. GALAXY GRAND DUOS </div> <div class="paragraph-end details-light"></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"> <div class="current-rating" style="width: 40.0%;"></div> </div> </div> </div> </div> <div class="featured-review" data-reviewid="gp:AOqpTOET6Gl-ctr4WqJI7aKa_WwlRFSZW-zKDEWx7p7li3mrZYC14CdkzsijA4OMuunBOVYYkSJpvu8Idqg9zr4" data-expand-to="user-1"> <div class="author"> <a class="no-nav g-hovercard" href="https://plus.google.com/108326663439855204708" data-userid="108326663439855204708" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48" alt="Muhyi J Jeilan avatar image"> </a> </div> <div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">The Best App......Mashallah</span> The best Quran App. Alhamdulillah may Allah reward the developers for their endeavour. Best feature is the translation. To be able to highlight and copy. ..and share the verses. ..Mashallah. .. </div> <div class="paragraph-end details-light"></div> </div> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/108326663439855204708" data-userid="108326663439855204708" target="_blank">Muhyi J Jeilan</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 100.0%;"></div> </div> </div> </div> </div> <div class="featured-review" data-reviewid="lg:AOqpTOHTk8dvlbXk7XgAY5KOoRKrhiA6ry2zZkBTnF9ACe8Lb4dGEEiUVPaxkmAJ7hMfnH-rzWS6lPqlI3QEiYI" data-expand-to="user-2"> <div class="author"> <span> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48" alt="A Google User avatar image"> </span> </div> <div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Now It's the App</span> Ma sha Allah well done. Suggestion: Improve scrolling sensitivity - fixed in 1.4! Update: now it has everything, very smooth, you can tell if a Page is on the right or left side of the mus7af. Ramadan mubarak </div> <div class="paragraph-end details-light"></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"> <div class="current-rating" style="width: 100.0%;"></div> </div> </div> </div> </div> <div class="featured-review" data-reviewid="gp:AOqpTOFg-qbwvIHI2LfoALp5FhOhuTY3qNpBSYwU23t9UrUH2U745hAyoBYZUpDHcdxbxGK933Wh3e5HJrUG1Ac" data-expand-to="user-3"> <div class="author"> <a class="no-nav g-hovercard" href="https://plus.google.com/110388943428275885090" data-userid="110388943428275885090" target="_blank"> <img class="author-image" src="https://lh4.googleusercontent.com/-WkkK8yoe0Lo/AAAAAAAAAAI/AAAAAAAAAhg/fnqrX9WA-w8/w48-c-h48/photo.jpg" alt="Ahmad Salah Abd El-Motagaly avatar image"> </a> </div> <div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">High Quality Software</span> Jazakom Allah Khayran for this effort, keep the good work and contact me if you need assistance </div> <div class="paragraph-end details-light"></div> </div> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/110388943428275885090" data-userid="110388943428275885090" target="_blank">Ahmad Salah Abd El-Motagaly</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 80.0%;"></div> </div> </div> </div> </div> <div class="featured-review" data-reviewid="gp:AOqpTOEZm1xbdu6i4z6h1iovI6wpids-BN3hbyeqgUdii3Pa3cNcDVUcVKh4jL7YYzHAxTU34CR9khBhXDlsSnQ" data-expand-to="user-4"> <div class="author"> <a class="no-nav g-hovercard" href="https://plus.google.com/101928635635180211165" data-userid="101928635635180211165" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48" alt="Shahid Ali avatar image"> </a> </div> <div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Great</span> Great app with many nice features (the translations in particular) that help deepen your understanding of the great knowledge and guidance within the Quran. </div> <div class="paragraph-end details-light"></div> </div> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/101928635635180211165" data-userid="101928635635180211165" target="_blank">Shahid Ali</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 100.0%;"></div> </div> </div> </div> </div> <div class="featured-review" data-reviewid="gp:AOqpTOEsRtbaFoWG2X6vCiN_s5pxAH4gbya4t1i6cKI_AhULSKdvY6v3Q-HSlq9Otjeb2HfH6NrTaCN7xtoZ9kU" data-expand-to="user-5"> <div class="author"> <a class="no-nav g-hovercard" href="https://plus.google.com/100007618740854430722" data-userid="100007618740854430722" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48" alt="Fidan Shallci avatar image"> </a> </div> <div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Important</span> Could you add an option to download all sure recitation by a recitator for example download Alafasis all Qur'an recitation. I mean, downloading all of recitation with one click, not one by one sure download </div> <div class="paragraph-end details-light"></div> </div> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/100007618740854430722" data-userid="100007618740854430722" target="_blank">Fidan Shallci</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 100.0%;"></div> </div> </div> </div> </div> </div> </div> <div style="display:none" class="all-reviews multicol" data-multicol-fixed-height="true" data-expand-scroll="true"> <div> <div class="reviews-heading"> User reviews </div> <div class="single-review"> <span> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48" alt="A Google User avatar image"> </span> <div class="review-header" data-reviewid="lg:AOqpTOF-1Yn2mwjuQ3EYeU4HsGeviWtSZegRTSMTkT8J9oR_geoLCSfAHIKSvjDuYIKMKgMBu6QxKxZVEbK9Rcg" data-expand-target="user-0"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 4, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=bGc6QU9xcFRPRi0xWW4ybXdqdVEzRVllVTRIc0dldmlXdFNaZWdSVFNNVGtUOEo5b1JfZ2VvTENTZkFISUtTdmpEdVlJS01LZ01CdTZReEt4WlZFYks5UmNn" 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"> <div class="current-rating" style="width: 40.0%;"></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">Problem with galaxy grand I9082</span> Black bar on top of pages same size as taskbar, prevent full display of pages. Should indicate which sourat audio was downloaded. Add small calligraphy arround pages. GALAXY GRAND DUOS <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/108326663439855204708" data-userid="108326663439855204708" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48" alt="Muhyi J Jeilan avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOET6Gl-ctr4WqJI7aKa_WwlRFSZW-zKDEWx7p7li3mrZYC14CdkzsijA4OMuunBOVYYkSJpvu8Idqg9zr4" data-expand-target="user-1"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/108326663439855204708" data-userid="108326663439855204708" title="Muhyi J Jeilan" target="_blank">Muhyi J Jeilan</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 5, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPRVQ2R2wtY3RyNFdxSkk3YUthX1d3bFJGU1pXLXpLREVXeDdwN2xpM21yWllDMTRDZGt6c2lqQTRPTXV1bkJPVllZa1NKcHZ1OElkcWc5enI0" 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"> <div class="current-rating" style="width: 100.0%;"></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 App......Mashallah</span> The best Quran App. Alhamdulillah may Allah reward the developers for their endeavour. Best feature is the translation. To be able to highlight and copy. ..and share the verses. ..Mashallah. .. <div class="review-link" style="display:none"> <a class="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" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48" alt="A Google User avatar image"> </span> <div class="review-header" data-reviewid="lg:AOqpTOHTk8dvlbXk7XgAY5KOoRKrhiA6ry2zZkBTnF9ACe8Lb4dGEEiUVPaxkmAJ7hMfnH-rzWS6lPqlI3QEiYI" data-expand-target="user-2"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 3, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=bGc6QU9xcFRPSFRrOGR2bGJYazdYZ0FZNUtPb1JLcmhpQTZyeTJ6WmtCVG5GOUFDZThMYjRkR0VFaVVWUGF4a21BSjdoTWZuSC1yeldTNmxQcWxJM1FFaVlJ" 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"> <div class="current-rating" style="width: 100.0%;"></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">Now It's the App</span> Ma sha Allah well done. Suggestion: Improve scrolling sensitivity - fixed in 1.4! Update: now it has everything, very smooth, you can tell if a Page is on the right or left side of the mus7af. Ramadan mubarak <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/110388943428275885090" data-userid="110388943428275885090" target="_blank"> <img class="author-image" src="https://lh4.googleusercontent.com/-WkkK8yoe0Lo/AAAAAAAAAAI/AAAAAAAAAhg/fnqrX9WA-w8/w48-c-h48/photo.jpg" alt="Ahmad Salah Abd El-Motagaly avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOFg-qbwvIHI2LfoALp5FhOhuTY3qNpBSYwU23t9UrUH2U745hAyoBYZUpDHcdxbxGK933Wh3e5HJrUG1Ac" data-expand-target="user-3"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/110388943428275885090" data-userid="110388943428275885090" title="Ahmad Salah Abd El-Motagaly" target="_blank">Ahmad Salah Abd El-Motagaly</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 3, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPRmctcWJ3dklISTJMZm9BTHA1RmhPaHVUWTNxTnBCU1l3VTIzdDlVclVIMlU3NDVoQXlvQllaVXBESGNkeGJ4R0s5MzNXaDNlNUhKclVHMUFj" 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"> <div class="current-rating" style="width: 80.0%;"></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">High Quality Software</span> Jazakom Allah Khayran for this effort, keep the good work and contact me if you need assistance <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/101928635635180211165" data-userid="101928635635180211165" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48" alt="Shahid Ali avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOEZm1xbdu6i4z6h1iovI6wpids-BN3hbyeqgUdii3Pa3cNcDVUcVKh4jL7YYzHAxTU34CR9khBhXDlsSnQ" data-expand-target="user-4"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/101928635635180211165" data-userid="101928635635180211165" title="Shahid Ali" target="_blank">Shahid Ali</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 4, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPRVptMXhiZHU2aTR6NmgxaW92STZ3cGlkcy1CTjNoYnllcWdVZGlpM1BhM2NOY0RWVWNWS2g0akw3WVl6SEF4VFUzNENSOWtoQmhYRGxzU25R" 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"> <div class="current-rating" style="width: 100.0%;"></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> Great app with many nice features (the translations in particular) that help deepen your understanding of the great knowledge and guidance within the Quran. <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/100007618740854430722" data-userid="100007618740854430722" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48" alt="Fidan Shallci avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOEsRtbaFoWG2X6vCiN_s5pxAH4gbya4t1i6cKI_AhULSKdvY6v3Q-HSlq9Otjeb2HfH6NrTaCN7xtoZ9kU" data-expand-target="user-5"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/100007618740854430722" data-userid="100007618740854430722" title="Fidan Shallci" target="_blank">Fidan Shallci</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 4, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPRXNSdGJhRm9XRzJYNnZDaU5fczVweEFINGdieWE0dDFpNmNLSV9BaFVMU0tkdlk2djNRLUhTbHE5T3RqZWIySGZINk5yVGFDTjd4dG9aOWtV" 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"> <div class="current-rating" style="width: 100.0%;"></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">Important</span> Could you add an option to download all sure recitation by a recitator for example download Alafasis all Qur'an recitation. I mean, downloading all of recitation with one click, not one by one sure download <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/109258125753513763577" data-userid="109258125753513763577" target="_blank"> <img class="author-image" src="https://lh6.googleusercontent.com/-0jSek1cMlW8/AAAAAAAAAAI/AAAAAAAAAAA/6OocX4K2EhM/w48-c-h48/photo.jpg" alt="Rashid Qureshi avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOGAaURnZphUJsNUYqDIgvf30JLsg0L-3nFpTwCkJuilkBG15LnyOV1Cn7lysmGJf9Y_8i63BJHIyRH8s6c" data-expand-target="user-6"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/109258125753513763577" data-userid="109258125753513763577" title="Rashid Qureshi" target="_blank">Rashid Qureshi</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 3, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPR0FhVVJuWnBoVUpzTlVZcURJZ3ZmMzBKTHNnMEwtM25GcFR3Q2tKdWlsa0JHMTVMbnlPVjFDbjdseXNtR0pmOVlfOGk2M0JKSEl5Ukg4czZj" 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"> <div class="current-rating" style="width: 100.0%;"></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" dir="rtl">جزاک اللہ Excellent Application</span> An excellent application. May Allah Bless you. <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/112275087126943810741" data-userid="112275087126943810741" target="_blank"> <img class="author-image" src="https://lh3.googleusercontent.com/-7Ymzm9KvxvU/AAAAAAAAAAI/AAAAAAAAGxc/219J1zz3YdA/w48-c-h48/photo.jpg" alt="Magdi Abdullah avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOHUMSxAfbVy0YWEb6nk1uyLrlIhSFeHhRuiUede6j0O2xwjPkYK7avKbcVBdhiJNxGK0q-oJLOCGJLvjk8" data-expand-target="user-7"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/112275087126943810741" data-userid="112275087126943810741" title="Magdi Abdullah" target="_blank">Magdi Abdullah</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 5, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPSFVNU3hBZmJWeTBZV0ViNm5rMXV5THJsSWhTRmVIaFJ1aVVlZGU2ajBPMnh3alBrWUs3YXZLYmNWQmRoaUpOeEdLMHEtb0pMT0NHSkx2ams4" 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"> <div class="current-rating" style="width: 100.0%;"></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">It is the best</span> It has every thin ng one needs to read Quran regularly. <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/103119094692019697728" data-userid="103119094692019697728" target="_blank"> <img class="author-image" src="https://lh4.googleusercontent.com/-ucJb-81Pdow/AAAAAAAAAAI/AAAAAAAACMo/iY1LS5225Pk/w48-c-h48/photo.jpg" alt="Nuzul Nurwahyuddin avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOFxq3rEJrkD-gd8e6sZ--9zckteiWsxAs4kI4ttcbJqjOZR1CYsAmQAdM7TcxNN41rF_WFxIe6Y4xH8X8E" data-expand-target="user-8"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/103119094692019697728" data-userid="103119094692019697728" title="Nuzul Nurwahyuddin" target="_blank">Nuzul Nurwahyuddin</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 4, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPRnhxM3JFSnJrRC1nZDhlNnNaLS05emNrdGVpV3N4QXM0a0k0dHRjYkpxak9aUjFDWXNBbVFBZE03VGN4Tk40MXJGX1dGeEllNlk0eEg4WDhF" 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"> <div class="current-rating" style="width: 100.0%;"></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">Galaxy note 8.0</span> Assalamu'alaikum, I've update my android version to 4.2.2. Unfortunately, there's a problem with displaying page. Pages can't be full screen, always blank area in the status bar when I open the Qur'an. Kindly please fix these error... <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/102265763513800608877" data-userid="102265763513800608877" target="_blank"> <img class="author-image" src="https://lh5.googleusercontent.com/-6Q2g6ZowEBs/AAAAAAAAAAI/AAAAAAAABSw/qoFfoxmWnRc/w48-c-h48/photo.jpg" alt="Ali Firdaus avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOHLW3f0Q2a49ClGeFXTlvfJTTZy9H46VJQYQhqsFOzPEg61Z_tHbN4ilClT5pZJLhYD7fzi-NQ-otFRBOE" data-expand-target="user-9"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/102265763513800608877" data-userid="102265763513800608877" title="Ali Firdaus" target="_blank">Ali Firdaus</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 6, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPSExXM2YwUTJhNDlDbEdlRlhUbHZmSlRUWnk5SDQ2VkpRWVFocXNGT3pQRWc2MVpfdEhiTjRpbENsVDVwWkpMaFlEN2Z6aS1OUS1vdEZSQk9F" 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"> <div class="current-rating" style="width: 100.0%;"></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 Quran in android</span> I am very thank for developers for this application. And the real applications is free. <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/118138313527034991820" data-userid="118138313527034991820" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48" alt="Badrol Haizat avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOFYLTk0aRxzOavu4TczwGDf_uSGUKbtXNq1Sam3cEnPA-21pUNp3sJyK3RGbdwdX4NtmIBbcE3prjY_ViM" data-expand-target="user-10"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/118138313527034991820" data-userid="118138313527034991820" title="Badrol Haizat" target="_blank">Badrol Haizat</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 6, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPRllMVGswYVJ4ek9hdnU0VGN6d0dEZl91U0dVS2J0WE5xMVNhbTNjRW5QQS0yMXBVTnAzc0p5SzNSR2Jkd2RYNE50bUlCYmNFM3ByallfVmlN" 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"> <div class="current-rating" style="width: 60.0%;"></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">Problem with galaxy note 8.0</span> Black bar on top of pages same size as task bar prevent full dispkay of pages. This happened after upgrading software 4.2.2 <div class="review-link" style="display:none"> <a class="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" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48" alt="A Google User avatar image"> </span> <div class="review-header" data-reviewid="lg:AOqpTOEx9kU1NGh3EUjwRy5tYmK9Q_MvnzyfMhNvnCp3QMgs5_dHfqrcWC-kxqtd5Gkl6nNWZA6k_xA3NT6DJjA" data-expand-target="user-11"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 4, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=bGc6QU9xcFRPRXg5a1UxTkdoM0VVandSeTV0WW1LOVFfTXZuenlmTWhOdm5DcDNRTWdzNV9kSGZxcmNXQy1reHF0ZDVHa2w2bk5XWkE2a194QTNOVDZESmpB" 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"> <div class="current-rating" style="width: 80.0%;"></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> Great work. Two comment 1st, There is no recitation option as mentioned. 2nd, night reading would be great. Inverting the current layout (black backgr <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/106142176510623575184" data-userid="106142176510623575184" target="_blank"> <img class="author-image" src="https://lh5.googleusercontent.com/-drdveD35Ui4/AAAAAAAAAAI/AAAAAAAACJE/mOyD0b2PJWs/w48-c-h48/photo.jpg" alt="Mahmoud Sabha avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOHdoeBz-HV5IlhM_Vrzv6Xa6iPx5PA4ZwuOiFTN-tAPOFSnr0bgsMjO7eP50p_x1RAJ-iAeaeOMXPHBU34" data-expand-target="user-12"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/106142176510623575184" data-userid="106142176510623575184" title="Mahmoud Sabha" target="_blank">Mahmoud Sabha</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 3, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPSGRvZUJ6LUhWNUlsaE1fVnJ6djZYYTZpUHg1UEE0Wnd1T2lGVE4tdEFQT0ZTbnIwYmdzTWpPN2VQNTBwX3gxUkFKLWlBZWFlT01YUEhCVTM0" 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"> <div class="current-rating" style="width: 100.0%;"></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> I got an android superficially for this app, its awesome MashaAllah <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/100039099476919910826" data-userid="100039099476919910826" target="_blank"> <img class="author-image" src="https://lh6.googleusercontent.com/-Amm9DExAe00/AAAAAAAAAAI/AAAAAAAAAEs/-KyoWn6SpLk/w48-c-h48/photo.jpg" alt="AMMAR KHURSHID avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOGdzaR5se_l9EPA19MJK3ak57rq5Z9unVo0F2IpTu3W38Fhgmnw8lv-KxEClDA27qOBcGMhrLXii1aIgxo" data-expand-target="user-13"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/100039099476919910826" data-userid="100039099476919910826" title="AMMAR KHURSHID" target="_blank">AMMAR KHURSHID</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 4, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPR2R6YVI1c2VfbDlFUEExOU1KSzNhazU3cnE1Wjl1blZvMEYySXBUdTNXMzhGaGdtbnc4bHYtS3hFQ2xEQTI3cU9CY0dNaHJMWGlpMWFJZ3hv" 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"> <div class="current-rating" style="width: 40.0%;"></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">Not bad</span> Application is good for prayer times but I bought premium and got to know that words are missing from Quran Pak and font is not very good. <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/113631359241844791886" data-userid="113631359241844791886" target="_blank"> <img class="author-image" src="https://lh5.googleusercontent.com/-tluVg_B1tuo/AAAAAAAAAAI/AAAAAAAAAB8/F51R_EwW6bs/w48-c-h48/photo.jpg" alt="Saurabh Dutt avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOFq-P11iEk_CzO-R3Qc3QMag7qUzyEqOMhwucaMjgKLUAC4_PQPT266PfAbK85DzkNd5sKAfWRkso75CQY" data-expand-target="user-14"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/113631359241844791886" data-userid="113631359241844791886" title="Saurabh Dutt" target="_blank">Saurabh Dutt</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 3, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPRnEtUDExaUVrX0N6Ty1SM1FjM1FNYWc3cVV6eUVxT01od3VjYU1qZ0tMVUFDNF9QUVBUMjY2UGZBYks4NUR6a05kNXNLQWZXUmtzbzc1Q1FZ" 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"> <div class="current-rating" style="width: 100.0%;"></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> Allah aapko jaza de.Aapke khaandaan ki maghfirat kare. <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/117338754303316033710" data-userid="117338754303316033710" target="_blank"> <img class="author-image" src="https://lh3.googleusercontent.com/-tnmmZ_3Utfk/AAAAAAAAAAI/AAAAAAAAAHE/6y4Iuk8tFUk/w48-c-h48/photo.jpg" alt="Khaled Ali avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOGewu2VexgUHbCp80xq3VpFqr6_6_K7bNFRpChjb5NU5lZ4a7vUnYLTAK8Drgj16tyWB2dY8m5J-x5S088" data-expand-target="user-15"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/117338754303316033710" data-userid="117338754303316033710" title="Khaled Ali" target="_blank">Khaled Ali</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 5, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPR2V3dTJWZXhnVUhiQ3A4MHhxM1ZwRnFyNl82X0s3Yk5GUnBDaGpiNU5VNWxaNGE3dlVuWUxUQUs4RHJnajE2dHlXQjJkWThtNUoteDVTMDg4" 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"> <div class="current-rating" style="width: 100.0%;"></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 Quran app for android</span> You wont find an app that has better features than this one. Nuff said. <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/114291003367990549969" data-userid="114291003367990549969" target="_blank"> <img class="author-image" src="https://lh3.googleusercontent.com/-E-KJtXWh8qQ/AAAAAAAAAAI/AAAAAAAAADg/AY3O4FB80tA/w48-c-h48/photo.jpg" alt="David Hutchinson avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOEIEu-tOrNJIhurzrLiGbZnE0WlK5S30_AOwtjlASSenJ5bMO1bgt4FQ8KrRIT__p-AdlK8noYOCZAfRTQ" data-expand-target="user-16"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/114291003367990549969" data-userid="114291003367990549969" title="David Hutchinson" target="_blank">David Hutchinson</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 4, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPRUlFdS10T3JOSklodXJ6ckxpR2JabkUwV2xLNVMzMF9BT3d0amxBU1Nlbko1Yk1PMWJndDRGUThLclJJVF9fcC1BZGxLOG5vWU9DWkFmUlRR" 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"> <div class="current-rating" style="width: 100.0%;"></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 Quran app on the market</span> Hands down. The Arabic text is clear and easy to read, free downloads for many reciters, and dozens of free translations in various languages, and so much more <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/115840725771565745949" data-userid="115840725771565745949" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48" alt="Yussuf Ibrow avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOE-F5076eqefowIZmtJ1QWm_tK6EFboc2KyJk8NzqEX07SusUiJ6DDASxTFRpeCIe4dx8NlznMb34y7gnE" data-expand-target="user-17"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/115840725771565745949" data-userid="115840725771565745949" title="Yussuf Ibrow" target="_blank">Yussuf Ibrow</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 6, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPRS1GNTA3NmVxZWZvd0labXRKMVFXbV90SzZFRmJvYzJLeUprOE56cUVYMDdTdXNVaUo2RERBU3hURlJwZUNJZTRkeDhObHpuTWIzNHk3Z25F" 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"> <div class="current-rating" style="width: 100.0%;"></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 it</span> May God grant you paradise developers and community behind it, may God grant us paradise too <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/104495105345202125169" data-userid="104495105345202125169" target="_blank"> <img class="author-image" src="https://lh4.googleusercontent.com/-LyWVqvHGwjw/AAAAAAAAAAI/AAAAAAAAAFc/sH2OzKdTHsU/w48-c-h48/photo.jpg" alt="zaiem akmal avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOGvuENTRfYBCixZnQ_Z3gpEdOUlRsQu7NmpNKa-vBd9_TVz2SfllosY0TTd30badKlSxsFsqd-5_aOY5Cc" data-expand-target="user-18"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/104495105345202125169" data-userid="104495105345202125169" title="zaiem akmal" target="_blank">zaiem akmal</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 4, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPR3Z1RU5UUmZZQkNpeFpuUV9aM2dwRWRPVWxSc1F1N05tcE5LYS12QmQ5X1RWejJTZmxsb3NZMFRUZDMwYmFkS2xTeHNGc3FkLTVfYU9ZNUNj" 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"> <div class="current-rating" style="width: 100.0%;"></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">Barakallah</span> May Allah bless all the team behind it and the sponsor of this app. Truly great and almost perfect <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/105539971666902689616" data-userid="105539971666902689616" target="_blank"> <img class="author-image" src="https://lh4.googleusercontent.com/-w59jF4-Gl3M/AAAAAAAAAAI/AAAAAAAABNI/zu5CzRLJY4Q/w48-c-h48/photo.jpg" alt="Omair Amanat avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOHAE-ECdQsX5Et-UnrH6ACszj7tTGGEHMK_BjIQM6nyQo_UH1KjICeZu9vnLjzGl0iUtuagjssjKCqVRUo" data-expand-target="user-19"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/105539971666902689616" data-userid="105539971666902689616" title="Omair Amanat" target="_blank">Omair Amanat</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">November 5, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.quran.labs.androidquran&amp;reviewId=Z3A6QU9xcFRPSEFFLUVDZFFzWDVFdC1VbnJINkFDc3pqN3RUR0dFSE1LX0JqSVFNNm55UW9fVUgxS2pJQ2VadTl2bkxqekdsMGlVdHVhZ2pzc2pLQ3FWUlVv" 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"> <div class="current-rating" style="width: 100.0%;"></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</span> My dream to put Quran kareem by the side of my pillow came into reality. May Allah bestow His Eternal Blessings upon you always. <div class="review-link" style="display:none"> <a class="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();}
74
+ </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">2.4.8</div><div class="recent-change">- fix many crashes</div><div class="recent-change">- updated icon for nexus 5</div><div class="recent-change">- updated german translation</div><div class="recent-change">2.4.7</div><div class="recent-change">- fix crash while playing audio at the end of the Quran</div><div class="recent-change">- other misc fixes</div><div class="recent-change">2.4.6</div><div class="recent-change">- added sheikh Nasser al Qatami</div><div class="recent-change">- app is now translated in Turkish and Indonesian</div><div class="recent-change">- improve highlighting of search results</div><div class="recent-change">- changing page and translation settings now takes effect right away</div><div class="recent-change">- fix bug where audio was sometimes not playing</div><div class="recent-change">- improvements to the jump dialog</div><div class="recent-change">- many other bugfixes and improvements</div> <div class="show-more-end"></div> <div> <div class="play-button show-more small"> Read more </div> <div class="play-button expand-close"> <div class="close-image"> </div> </div> </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 3, 2013</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"> 10,000,000 - 50,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"> 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://android.quran.com/&amp;sa=D&amp;usg=AFQjCNFobIsrN6P5XdOlB2vUWK5jLH2_EA" target="_blank" rel="nofollow"> Visit Developer's Website </a> <a class="dev-link" href="mailto:quran.android@gmail.com" target="_blank" rel="nofollow"> Email Developer </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"> <div class="heading">Similar</div> <div class="cards expandable"> <div data-docid="com.guidedways.iQuranPro" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaIgogEh4KGGNvbS5ndWlkZWR3YXlzLmlRdXJhblBybxABGAM="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.guidedways.iQuranPro"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh3.ggpht.com/uMRkXJPDV9S9oJtLXP8elE6_j9YDsuyyzc6AZZEwOFoSojg3JXnETUUyT_5qsdpX7os=w170" alt="iQuran" data-cover-small="https://lh3.ggpht.com/uMRkXJPDV9S9oJtLXP8elE6_j9YDsuyyzc6AZZEwOFoSojg3JXnETUUyT_5qsdpX7os=w170" data-cover-large="https://lh3.ggpht.com/uMRkXJPDV9S9oJtLXP8elE6_j9YDsuyyzc6AZZEwOFoSojg3JXnETUUyT_5qsdpX7os=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.guidedways.iQuranPro"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.guidedways.iQuranPro"></a> <a class="title" href="/store/apps/details?id=com.guidedways.iQuranPro" title="iQuran"> iQuran <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Guided+Ways+Technologies+Ltd." title="Guided Ways Technologies Ltd.">Guided Ways Technologies Ltd.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.guidedways.iQuranPro"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>$1.99</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.guidedways.iQuranPro" data-uitype="218"> Watch </span> <span class="price buy 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"> ********************************************<br>** NEWS<br>** <br>** iQuran will now be sold for a fraction of its original price, down to $1.99 from $6.99. InshAllah<br>** the new price effectively makes iQuran &#39;free&#39; as it now reflect only some of the costs we need to cover for <br>** the fast and excellent audio download service we provide. We thank you for your support all these years. <br>** BarakAllahufikum and Ramadan Kareem.<br>********************************************<p>Read the Holy Quran in Arabic alongside its translation. Provides verse by verse audio playback, color coded Tajweed, repeat functions, unlimited bookmarks, search, excellent navigational controls, several translations and reciters and much more.<p>NOTE: Permission to &quot;read phone state&quot; is only required in order to pause recitation in case the phone rings or in case you place a call while recitation is playing in the background.<p>With iQuran you enjoy:<p>* Color coded Tajweed (Pronunciation) Rules, the first and only Qur&#39;an software to offer live rendered Tajweed rules.<br>* Zoom-in feature to enlarge Arabic script<br>* Full landscape support<br>* Unlimited bookmarks and tags with notes<br>* Several translations<br>* Quranic Supplications<br>* A powerful full-text search engine<br>* Several downloadable recitations for verse by verse recital (supports gapless/continuous recitation for all reciters except Husary)<br>* Powerful audio controls with an option to group playback of verses to aid in memorization<p>iQuran provides the following translations:<br>* English &amp; Transliteration<br>* German<br>* French<br>* Indonesian<br>* Urdu (requires OS 3.0+)<br>* Farsi (requires OS 3.0+)<br>* Melayu<br>* Spanish<br>* Turkish<br>* Russian<br>* Bosnian<br>* Dutch<br>* Italian<br>* Albanian<br>* Romanian<br>* Japanese<p>Included reciters are:<br>* Sheikh Husary<br>* Mishary Al-Afasy<br>* Saood &amp; Shuraim<br>* Abu Bakr Ash-Shatree<br>* Abdul Basit<br>* Ghamdi<br>* Mahir Al-Muayqali<p>iQuran has been designed to work on all Android devices.<p><br>Keywords: Quran, Islam, Islamic, Koran, Qur&#39;an, Muslim, Digital Quran <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.guidedways.iQuranPro"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.guidedways.iQuranPro"></a> <a href="/store/apps/details?id=com.guidedways.iQuranPro"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.guidedways.iQuranPro"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 96.19479179382324%;"></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.guidedways.iQuranPro"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>$1.99</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.guidedways.iQuranPro" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="com.martinvillar.android.quranindonesia" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaMQovEi0KJ2NvbS5tYXJ0aW52aWxsYXIuYW5kcm9pZC5xdXJhbmluZG9uZXNpYRABGAM="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.martinvillar.android.quranindonesia"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh5.ggpht.com/KBam1Cqy7kt_Zsc9EHWXVHNMF5xq_qfU-aCFXjwopjLGqb0-0oC5F28vj8vm_7Y6j8k=w170" alt="Al'Quran Bahasa Indonesia" data-cover-small="https://lh5.ggpht.com/KBam1Cqy7kt_Zsc9EHWXVHNMF5xq_qfU-aCFXjwopjLGqb0-0oC5F28vj8vm_7Y6j8k=w170" data-cover-large="https://lh5.ggpht.com/KBam1Cqy7kt_Zsc9EHWXVHNMF5xq_qfU-aCFXjwopjLGqb0-0oC5F28vj8vm_7Y6j8k=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.martinvillar.android.quranindonesia"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.martinvillar.android.quranindonesia"></a> <a class="title" href="/store/apps/details?id=com.martinvillar.android.quranindonesia" title="Al'Quran Bahasa Indonesia"> Al'Quran Bahasa Indonesia <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=MartinVillar.com" title="MartinVillar.com">MartinVillar.com</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.martinvillar.android.quranindonesia"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.martinvillar.android.quranindonesia" data-uitype="218"> Watch </span> <span class="price buy 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"> Al&#39;Quran Bahasa Indonesia<p>- Read the Quran in Bahasa Indonesia<br>- (NEW) New design with ActionBar!<br>- (NEW) Copy ayat to clipboard<br>- Browse suras, Ajiza&#39; and ayat.<br>- Search by clicking on search icon. You can search in the whole Quran, in a Juz or in any sura.<br>- A long click over a verse will add it to bookmarks, share it on social media or messaging apps, or attach notes to it.<br>- Listen to the arab recitation inside each sura.<br>- You can buy the premium version, which has more features, click the button &quot;Menu&quot; in the homepage screen.<p>Limitations of the free version<br>* The search function displays the first 50 results.<br>* You can add up to 5 favorites.<br>* Non-intrusive ads.<p>Functionality of the professional version (Al&#39;Quran Bahasa Indonesia PRO)<br>* (NEW) Read Quran in portrait or landscape modes.<br>* The search returns all matches.<br>* Unlimited favorites.<br>* No ads.<br>* Improved speed.<p>Keywords: Quran, Islam, Islamic, Koran, Muslim, Qur&#39;an. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.martinvillar.android.quranindonesia"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.martinvillar.android.quranindonesia"></a> <a href="/store/apps/details?id=com.martinvillar.android.quranindonesia"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.martinvillar.android.quranindonesia"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 94.88420486450195%;"></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.martinvillar.android.quranindonesia"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.martinvillar.android.quranindonesia" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="com.guidedways.iQuran" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaHwodEhsKFWNvbS5ndWlkZWR3YXlzLmlRdXJhbhABGAM="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.guidedways.iQuran"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh6.ggpht.com/hwhtsACU29Zv7NNKpLqH4k0NgCrdc6xU-B5PMx06PxH29PMz_PuBEFcmtvp37qZHhqGI=w170" alt="iQuran Lite" data-cover-small="https://lh6.ggpht.com/hwhtsACU29Zv7NNKpLqH4k0NgCrdc6xU-B5PMx06PxH29PMz_PuBEFcmtvp37qZHhqGI=w170" data-cover-large="https://lh6.ggpht.com/hwhtsACU29Zv7NNKpLqH4k0NgCrdc6xU-B5PMx06PxH29PMz_PuBEFcmtvp37qZHhqGI=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.guidedways.iQuran"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.guidedways.iQuran"></a> <a class="title" href="/store/apps/details?id=com.guidedways.iQuran" title="iQuran Lite"> iQuran Lite <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Guided+Ways+Technologies+Ltd." title="Guided Ways Technologies Ltd.">Guided Ways Technologies Ltd.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.guidedways.iQuran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.guidedways.iQuran" data-uitype="218"> Watch </span> <span class="price buy 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"> ********************************************<br>** NEWS<br>** <br>** Full version of iQuran will now be sold for a fraction of its original price, down to $1.99 from $6.99. InshAllah<br>** the new price will reflect only the costs we need to cover for the fast and excellent audio download service<br>** we provide. BarakAllahufikum and Ramadan Kareem.<br>********************************************<p>Read the Holy Quran in Arabic alongside its translation. This app provides you with the full Qur&#39;an as well as its full english translation along with a full set of audio recitation files. iQuran offers you verse by verse audio playback, color coded Tajweed (pronunciation) rules, repeat functions, bookmarks, tags, search, excellent navigational controls, a side by side english translation, audio recitation and much more.<p>NOTE: Permission to &quot;read phone state&quot; is only required in order to pause recitation in case the phone rings or in case you place a call while recitation is playing in the background.<p>Apart from offering an immersed user experience, the free version of iQuran includes the following limitations only:<p>* Full Landscape supported<br>* Color coded Tajweed (Pronunciation) rules for the last Juz / Para<br>* Bookmark and Tags. A maximum of 5 bookmarks and 3 Tags.<br>* One english translation: Shakir<br>* Search results limited to 20 per search<br>* One recitation: Sheikh Husary<br>* Powerful audio controls with an option to group playback of verses to aid in memorization<p>All other features are fully enabled and there is no expiration date on this app.<p>iQuran has been designed to work on all Android devices.<p><br>Keywords: Quran, Islam, Islamic, Koran, Qur&#39;an, Muslim, Digital Quran, Mushaf, Quran Majeed <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.guidedways.iQuran"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.guidedways.iQuran"></a> <a href="/store/apps/details?id=com.guidedways.iQuran"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.guidedways.iQuran"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 96.75817489624023%;"></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.guidedways.iQuran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.guidedways.iQuran" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="com.aliftek.quran_Indonesian" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaJgokEiIKHGNvbS5hbGlmdGVrLnF1cmFuX0luZG9uZXNpYW4QARgD"> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.aliftek.quran_Indonesian"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh4.ggpht.com/3FnUWnOjCec8QVwlYnrjT-G9wOLa9adz1BgM0LAHUuZdZqkUIMeEDgWC652OvWN8wO8=w170" alt="Al Quran Indonesian Plus Audio" data-cover-small="https://lh4.ggpht.com/3FnUWnOjCec8QVwlYnrjT-G9wOLa9adz1BgM0LAHUuZdZqkUIMeEDgWC652OvWN8wO8=w170" data-cover-large="https://lh4.ggpht.com/3FnUWnOjCec8QVwlYnrjT-G9wOLa9adz1BgM0LAHUuZdZqkUIMeEDgWC652OvWN8wO8=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.aliftek.quran_Indonesian"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.aliftek.quran_Indonesian"></a> <a class="title" href="/store/apps/details?id=com.aliftek.quran_Indonesian" title="Al Quran Indonesian Plus Audio"> Al Quran Indonesian Plus Audio <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=aliftek" title="aliftek">aliftek</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.aliftek.quran_Indonesian"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.aliftek.quran_Indonesian" data-uitype="218"> Watch </span> <span class="price buy 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 Ultimate FREE Quran App for android with 3 Indonesian translations of Quran, recitation of world top 20 reciters and audio translation of Quran.<br>The app has been re-designed based on user feedback; with new intuitive user interfaces, excellent user experience and unlimited user options such as audio playback (Recitation + Translation), Search from Quran as well as from Indonesian language translation, sharing on facebook, taking notes, unlimited bookmarks and customization of the app.<br>-Complete Surah download added.<br>-Repeat Surah or continue listen complete Quran by app automatically. <br>-One New Reciter Al-Ghamdi Added. <br>-Blank Surah List issue is fixed.<br>-Crash on full surah download crash is fixed on pre ICS devices.<br>-App will keep Screen ON while Quran Surah is opened.<p>Having downloaded this FREE Quran App; you will not need to even think of any other Quran App.<br>Translation of Quran by following Islamic scholars:<br>1. Muhammad Quraish Shihab et al.<br>2. Jalal ad-Din al-Mahalli and Jalal ad-Din as-Suyuti Complete Tafseer<br>3. Indonesian Ministry of Religious Affairs (Bahasa Indonesia)<br>Recitation of Quran by world top reciters (Alphabetically-sorted) such as:<br>1. Abdul Basit Mujawwad<br>2. Abdul Basit Murattal<br>3. Abdullaah awwaad Al-Juhaynee<br>4. Abdullah Basfar<br>5. Abdullah Matroud<br>6. AbdulSamad<br>7. Abu Bakr Ash-Shaatree<br>8. Ahmed ibn Ali al-Ajamy<br>9. Ahmed Neana<br>10. Alafasy<br>11. Budair<br>12. Hani Rifai<br>13. Hudhaify<br>14. Husary<br>15. Husary Mujawwad<br>16. Ibrahim Akhdar<br>17. Perhaizgar<br>18. Salal Abdur Rehman Bukhatir<br>19. Saud al Shuraim<br>20. Sheikh Abdurrehman Al Sudais<br>21. Al Ghamdi<p>If you like the app, then please (add review and) DONATE.<p>:::::::::::::::::::::::::::::::::::::::<br>Quran and Ramadan<br>:::::::::::::::::::::::::::::::::::::::<br>The Quran (Arabic: القرآن‎ literally meaning &quot;the recitation&quot;, also transliterated Qurʼan or Koran) is the central religious text of Islam, which Muslims believe to be the verbatim word of God (Arabic: الله‎, Allah). It is widely regarded as the finest piece of literature in the Arabic language. <br>Quran was revealed in Ramadan to Prophet of Islam Muhammad (P.B.U.H.). Ramadan (Arabic: رمضان‎ , Persian: ‎ Ramazan, Urdu: ‎ Ramzan; Turkish: Ramazan) is the ninth month of the Islamic calendar; Muslims worldwide observe this as a month of fasting. This annual observance is regarded as one of the Five Pillars of Islam. Holy month of Ramadan lasts 29–30 days based on the visual sightings of the crescent moon, according to numerous biographical accounts compiled in hadiths. The word Ramadan comes from the Arabic root ramida or ar-ramad, which means scorching heat or dryness. Fasting is fardh (obligatory) for adult Muslims during Ramadan, except those who are ill, travelling, pregnant, diabetic or going through menstrual bleeding.<br>Muslims are always waiting for Holy Month of Ramadan (Arabic: رمضان), to spend their days and nights in worshiping Allah, reading Quran e Majeed ( قرآن ) and supplications/prayers/duas (اذکار), in order to get rewarded in this world and on the day of Judgment. Holy Ramadan (Arabic: رمضان) is the month when Allah chains the devil and rewards for good deeds is increased. Mosques are full of Muslims, and everyone is busy in praying to Allah and in supplications/prayers/duas ( اذکار ), to get more and more rewards. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.aliftek.quran_Indonesian"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.aliftek.quran_Indonesian"></a> <a href="/store/apps/details?id=com.aliftek.quran_Indonesian"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.aliftek.quran_Indonesian"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 91.66327476501465%;"></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.aliftek.quran_Indonesian"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.aliftek.quran_Indonesian" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="com.isysway.free.alquran" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaIgogEh4KGGNvbS5pc3lzd2F5LmZyZWUuYWxxdXJhbhABGAM="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.isysway.free.alquran"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh5.ggpht.com/8s6h3OW1xSEghokWabjAvT4zuYjsJG5vi30SGhZLpgLfqsvIqXzPSy-5lECyfcUOi58=w170" alt="Al-Quran (Free)" data-cover-small="https://lh5.ggpht.com/8s6h3OW1xSEghokWabjAvT4zuYjsJG5vi30SGhZLpgLfqsvIqXzPSy-5lECyfcUOi58=w170" data-cover-large="https://lh5.ggpht.com/8s6h3OW1xSEghokWabjAvT4zuYjsJG5vi30SGhZLpgLfqsvIqXzPSy-5lECyfcUOi58=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.isysway.free.alquran"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.isysway.free.alquran"></a> <a class="title" href="/store/apps/details?id=com.isysway.free.alquran" title="Al-Quran (Free)"> Al-Quran (Free) <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=ISYSWAY+Ltd." title="ISYSWAY Ltd.">ISYSWAY Ltd.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.isysway.free.alquran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.isysway.free.alquran" data-uitype="218"> Watch </span> <span class="price buy 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"> **Audio has been added to the new release<p>- the best and easiest way to browse The holy Quran <br>- displays the Holy text with Othmanic (Othmani) font<br>- the first Quran application with fully textwithout download.<br>- contains wrap and justify engines.<br>- less than 2 Mb, However, it includes all Quran suras<br>- supporting portrait&amp; landscape in all its screens.<br>- change font size &amp; color of the quranic text<br>- provided with screen transitions and effects.<br>- user can do it by touch the screen or by track ball.<br>- supports word-search in all quranic Suras.<br>- highlights the searched word with different color.<br>- Supports saving &amp; retrieve Bookmarks.<br>- application supports Madina Quran marks.<br>- Quran automatically saves and retrieves the last reading position.<br>supports audio reciting (word by word) and download more reciters<br>supports word meanings by clicking on the colored word <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.isysway.free.alquran"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.isysway.free.alquran"></a> <a href="/store/apps/details?id=com.isysway.free.alquran"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.isysway.free.alquran"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 93.63045692443848%;"></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.isysway.free.alquran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.isysway.free.alquran" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="com.amir.coran" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaGAoWEhQKDmNvbS5hbWlyLmNvcmFuEAEYAw=="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.amir.coran"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh5.ggpht.com/Pg3MkJN-LTg5flPRPDX4hfRulgdAn58OYfHvH1rm-x_JoeFN2d-Vtc2oShhQagYCiso=w170" alt="Quran" data-cover-small="https://lh5.ggpht.com/Pg3MkJN-LTg5flPRPDX4hfRulgdAn58OYfHvH1rm-x_JoeFN2d-Vtc2oShhQagYCiso=w170" data-cover-large="https://lh5.ggpht.com/Pg3MkJN-LTg5flPRPDX4hfRulgdAn58OYfHvH1rm-x_JoeFN2d-Vtc2oShhQagYCiso=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.amir.coran"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.amir.coran"></a> <a class="title" href="/store/apps/details?id=com.amir.coran" title="Quran"> Quran <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=AmirQuran" title="AmirQuran">AmirQuran</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.amir.coran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.amir.coran" data-uitype="218"> Watch </span> <span class="price buy 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 entire Quran for free, English, Arabic + transcript + audio recitation in Arabic.<br>Sahih international translation.<p>DUE TO THE SUCCESS OF THE APPLICATION, THE MP3 DOWNLOADING IS OVERLOAD, I&#39;M LOOKING FOR A SOLUTION<p>!Follow me on Twitter :<br><a href="https://www.google.com/url?q=http://twitter.com/Amir_Quran&amp;sa=D&amp;usg=AFQjCNFaYPEPhaf3QJ6lNtVR2GzAqlf7xg" target="_blank">http://twitter.com/Amir_Quran</a><p>/!\ If you want to thank me, make doas for relative, he will overcome illness insha&#39;Allah /!\<p><br>Advanced features:<p>* Texts<br>- English and Arabic texts<br>- Arabic transcription<br>- Consultation Manzil, Juz &#39;and Hizb&#39;<br>- Changing the size and style of each text<br>- Search<br>- 99 Names of God<p>* Audio<br>- Recitation in Arabic<br>(Sheikh Sa&#39;ad Al-Ghamdi, Sheikh Abdul Rahman Al-Sudais, Sheikh Sa&#39;ud Ash-Shuraim, Sheikh Ali Al-Hudhaifa, Qari Abdul Basit)<p>* Various<br>- Widgets<br>- Integration with the phone quick search<br>- favorites<br>- comments<br>- tags<br>- Export / import data<br>- Bookmark<br>- Fast access<br>- Sharing documents via email, sms, etc ...<p>Use the volume of sound to easily scroll through the verses.<p>Instead of paying for this application, which will remain free, please donate to those in need.<p>Tags: Coran, Quran, Islam, Muslim, Musulmans, quoran, Ramadan <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.amir.coran"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.amir.coran"></a> <a href="/store/apps/details?id=com.amir.coran"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.amir.coran"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 94.4477367401123%;"></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.amir.coran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.amir.coran" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="com.chaks.quran" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaGQoXEhUKD2NvbS5jaGFrcy5xdXJhbhABGAM="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.chaks.quran"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh3.ggpht.com/saUVZ2cTnuS7yRW-h6C1_Q1C7lnvkGN7Li5yGTsHkyi05L26SQ07tLVWv74VrsTScg=w170" alt="Islam: The Quran" data-cover-small="https://lh3.ggpht.com/saUVZ2cTnuS7yRW-h6C1_Q1C7lnvkGN7Li5yGTsHkyi05L26SQ07tLVWv74VrsTScg=w170" data-cover-large="https://lh3.ggpht.com/saUVZ2cTnuS7yRW-h6C1_Q1C7lnvkGN7Li5yGTsHkyi05L26SQ07tLVWv74VrsTScg=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.chaks.quran"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.chaks.quran"></a> <a class="title" href="/store/apps/details?id=com.chaks.quran" title="Islam: The Quran"> Islam: The Quran <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=dimach.cassiope" title="dimach.cassiope">dimach.cassiope</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.chaks.quran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.chaks.quran" data-uitype="218"> Watch </span> <span class="price buy 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 application contains all the chapters of the Quran (القرآن) translated into many languages ​​and chanted by various reciters.<p>For ease of reading non-Arabic speakers, each verse (or Ayat) is accompanied by a transcript. Many options are available to facilitate learning suras. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.chaks.quran"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.chaks.quran"></a> <a href="/store/apps/details?id=com.chaks.quran"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.chaks.quran"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 96.80424690246582%;"></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.chaks.quran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.chaks.quran" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="com.aliftek.quran_Malay" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaIQofEh0KF2NvbS5hbGlmdGVrLnF1cmFuX01hbGF5EAEYAw=="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.aliftek.quran_Malay"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh6.ggpht.com/g53eIePv5zbZxukpKbmgAvu5FuvJICSFLM-df4cUuSd1JbJ7y3wZn-BLW9cFHhXzNA=w170" alt="Al Quran Malay Plus Audio" data-cover-small="https://lh6.ggpht.com/g53eIePv5zbZxukpKbmgAvu5FuvJICSFLM-df4cUuSd1JbJ7y3wZn-BLW9cFHhXzNA=w170" data-cover-large="https://lh6.ggpht.com/g53eIePv5zbZxukpKbmgAvu5FuvJICSFLM-df4cUuSd1JbJ7y3wZn-BLW9cFHhXzNA=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.aliftek.quran_Malay"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.aliftek.quran_Malay"></a> <a class="title" href="/store/apps/details?id=com.aliftek.quran_Malay" title="Al Quran Malay Plus Audio"> Al Quran Malay Plus Audio <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=aliftek" title="aliftek">aliftek</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.aliftek.quran_Malay"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.aliftek.quran_Malay" data-uitype="218"> Watch </span> <span class="price buy 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 Ultimate FREE Quran App for android with malay translations of Quran, recitation of world top 20 reciters and audio translation of Quran.<br>The app has been re-designed based on user feedback; with new intuitive user interfaces, excellent user experience and unlimited user options such as audio playback (Recitation + Translation), Search from Quran as well as from malay language translation, sharing on facebook, taking notes, unlimited bookmarks and customization of the app.<br>-One New Reciter Al-Ghamdi Added. <br>-Blank Surah List issue is fixed.<br>-Crash on full surah download crash is fixed on pre ICS devices.<br>-App will keep Screen ON while Quran Surah is opened.<br>-Complete Surah download added.<br>-Repeat Surah or continue listen complete Quran by app automatically. <p>Having downloaded this FREE Quran App; you will not need to even think of any other Quran App.<br>Recitation of Quran by world top reciters (Alphabetically-sorted) such as:<br>1. Abdul Basit Mujawwad<br>2. Abdul Basit Murattal<br>3. Abdullaah awwaad Al-Juhaynee<br>4. Abdullah Basfar<br>5. Abdullah Matroud<br>6. AbdulSamad<br>7. Abu Bakr Ash-Shaatree<br>8. Ahmed ibn Ali al-Ajamy<br>9. Ahmed Neana<br>10. Alafasy<br>11. Budair<br>12. Hani Rifai<br>13. Hudhaify<br>14. Husary<br>15. Husary Mujawwad<br>16. Ibrahim Akhdar<br>17. Perhaizgar<br>18. Salal Abdur Rehman Bukhatir<br>19. Saud al Shuraim<br>20. Sheikh Abdurrehman Al Sudais<br>21. Al Ghamdi<p>If you like the app, then please (add review and) DONATE.<p>:::::::::::::::::::::::::::::::::::::::<br>Quran and Ramadan<br>:::::::::::::::::::::::::::::::::::::::<br>The Quran (Arabic: القرآن‎ literally meaning &quot;the recitation&quot;, also transliterated Qurʼan or Koran) is the central religious text of Islam, which Muslims believe to be the verbatim word of God (Arabic: الله‎, Allah). It is widely regarded as the finest piece of literature in the Arabic language. <br>Quran was revealed in Ramadan to Prophet of Islam Muhammad (P.B.U.H.). Ramadan (Arabic: رمضان‎ , Persian: ‎ Ramazan, Urdu: ‎ Ramzan; Turkish: Ramazan) is the ninth month of the Islamic calendar; Muslims worldwide observe this as a month of fasting. This annual observance is regarded as one of the Five Pillars of Islam. Holy month of Ramadan lasts 29–30 days based on the visual sightings of the crescent moon, according to numerous biographical accounts compiled in hadiths. The word Ramadan comes from the Arabic root ramida or ar-ramad, which means scorching heat or dryness. Fasting is fardh (obligatory) for adult Muslims during Ramadan, except those who are ill, travelling, pregnant, diabetic or going through menstrual bleeding.<br>Muslims are always waiting for Holy Month of Ramadan (Arabic: رمضان), to spend their days and nights in worshiping Allah, reading Quran e Majeed ( قرآن ) and supplications/prayers/duas (اذکار), in order to get rewarded in this world and on the day of Judgment. Holy Ramadan (Arabic: رمضان) is the month when Allah chains the devil and rewards for good deeds is increased. Mosques are full of Muslims, and everyone is busy in praying to Allah and in supplications/prayers/duas ( اذکار ), to get more and more rewards. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.aliftek.quran_Malay"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.aliftek.quran_Malay"></a> <a href="/store/apps/details?id=com.aliftek.quran_Malay"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.aliftek.quran_Malay"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 93.28364372253418%;"></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.aliftek.quran_Malay"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.aliftek.quran_Malay" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="com.wailbusaied.alquranalkareem" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaKQonEiUKH2NvbS53YWlsYnVzYWllZC5hbHF1cmFuYWxrYXJlZW0QARgD"> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.wailbusaied.alquranalkareem"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh5.ggpht.com/qtHLGeJ8BVmi2peqYgkNH-q6czyYC9Rrqqbp6YBd49Ufdw6KFNdpfQMOxs6LaMqzPQ=w170" alt="Mushaf - Quran Kareem" data-cover-small="https://lh5.ggpht.com/qtHLGeJ8BVmi2peqYgkNH-q6czyYC9Rrqqbp6YBd49Ufdw6KFNdpfQMOxs6LaMqzPQ=w170" data-cover-large="https://lh5.ggpht.com/qtHLGeJ8BVmi2peqYgkNH-q6czyYC9Rrqqbp6YBd49Ufdw6KFNdpfQMOxs6LaMqzPQ=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.wailbusaied.alquranalkareem"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.wailbusaied.alquranalkareem"></a> <a class="title" href="/store/apps/details?id=com.wailbusaied.alquranalkareem" title="Mushaf - Quran Kareem"> Mushaf - Quran Kareem <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Wail+Busaied" title="Wail Busaied">Wail Busaied</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.wailbusaied.alquranalkareem"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.wailbusaied.alquranalkareem" data-uitype="218"> Watch </span> <span class="price buy 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 intent of developing this program is to create a comprehensive and free Quran application that serves all Muslims.<p>***You will need to download the pages and sounds separately***<p>This program features:<br>* 100% correct Quran based on images of Madinah Mos&#39;haf by King Fahad Complex for printing Quran<br>* Six types of images: with borders and without, Mujawwad, blue, green and brown pages<br>* Flip pages by slide or buttons<br>* Reading in Lanscape or Portrait<br>* Night reading option<br>* Zoom in capability with ability to change pages inside zoom mode<br>* Settings Language: Arabic/English<br>* 13 audio Quran reciters<br>* option to repeat audio by Aya, Sura, page, or continuous audio recitation<br>* option to add a timer in seconds between each Aya (to help with recitation)<br>* 10 audio tracks for prayers (Dou&#39;a)<br>* 3 books of Tafseer: Al-Saadi, Al-Muyassar, and Al-Jalalayn (Arabic Only)<br>* English translation based on Sahih International<br>* Search by words in arabic or english<br>* Copy Ayas from search page and pasting them in any program by long pressing on the selected Aya<br>* Copy sections of the books by long press<br>* Add notes to each page with the possibility of hide/unhide through settings<br>* Bookmarks: static (reference location for future reading) and dynamic (saves the last page read)<br>* Go to by page, Sura, Hezb, Robo or Juz&#39;<br>* Option of keeping the screen On<br>* Short cut to menu by long press on the page directly without the need to click on menues<br>* Hide/unhide header, buttons, and notes from Settings<br>* Header bar disappear automatically after a few seconds<br>* Display two pages at the same time in landscape mode (good for tablets)<br>* Option to make the index page as main page (through settings then restart application)<p>If you have any issues, please don&#39;t hesitate to contact me before down rating the application. Giving high rating will assist in spreading the program to more Muslims through the use of featured programs. Any suggestions to improve the application are welcomed.<p>The website for the program is:<br><a href="https://www.google.com/url?q=http://www.facebook.com/QuranKareemAndroidApp&amp;sa=D&amp;usg=AFQjCNES4s221G7AgOTTzyCiftwM0VAEpQ" target="_blank">http://www.facebook.com/QuranKareemAndroidApp</a><p>Please do include me, my parents and my family in your prayers.<p>Tags: Quran, Qur&#39;an, Koran, Coran, Islam, Qoran , Kareem , kuran , audio, karim , muslim, holy, book, religion, recitation, tafseer, tafsir, Saadi, Muyassar, Jalalayn, notes, Ajmi, Muaqli, Shaatri, Hudhafi, Abdulbasit, Sudais, Basfar, Husari, Menshawi, Afasy, Ghamdi, Shuraim, Rafai, Bookmarks <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.wailbusaied.alquranalkareem"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.wailbusaied.alquranalkareem"></a> <a href="/store/apps/details?id=com.wailbusaied.alquranalkareem"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.wailbusaied.alquranalkareem"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 96.05138778686523%;"></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.wailbusaied.alquranalkareem"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.wailbusaied.alquranalkareem" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="com.mobizfun.holyquranlite" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaJAoiEiAKGmNvbS5tb2JpemZ1bi5ob2x5cXVyYW5saXRlEAEYAw=="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.mobizfun.holyquranlite"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh4.ggpht.com/GRPbS2fC9-C5ZF3x33udL9I4p2eqSfXaVLMGimmW3Lgl8NNXxmxjG_IJi15Mtcesrpo=w170" alt="Holy Quran Lite القرآن الكريم" data-cover-small="https://lh4.ggpht.com/GRPbS2fC9-C5ZF3x33udL9I4p2eqSfXaVLMGimmW3Lgl8NNXxmxjG_IJi15Mtcesrpo=w170" data-cover-large="https://lh4.ggpht.com/GRPbS2fC9-C5ZF3x33udL9I4p2eqSfXaVLMGimmW3Lgl8NNXxmxjG_IJi15Mtcesrpo=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.mobizfun.holyquranlite"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.mobizfun.holyquranlite"></a> <a class="title" href="/store/apps/details?id=com.mobizfun.holyquranlite" title="Holy Quran Lite القرآن الكريم"> Holy Quran Lite القرآن الكريم <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Quarter+Pi" title="Quarter Pi">Quarter Pi</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.mobizfun.holyquranlite"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.mobizfun.holyquranlite" data-uitype="218"> Watch </span> <span class="price buy 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"> Keep the most beautiful book Holy Quran (القرآن الكريم) in your pocket. Read it anywhere any time on your android phone or tablet. Use rich featured Holy Quran application to read or memorize Al-Quran. Freely download and listen audio recitation of complete Quran in the voices of International reciters, while each verse (Aaya) is highlighted as its been read. Choose the script (With or Without Tashkeel) you are comfortable reading with. Adjust the font size to an easily readable size. Use powerful search capabilities of the application to search in the translation of whole Quran or a selected surah. Jump to any verse of any surah. Bookmark any verse or add custom notes with each verse. Different translations are available and more to come.<p>Key features:<p>• Script with tashkeel and without tashkeel.<br>• Select two translations at the same time (In Pro).<br>• Adjustable font size for both Arabic script and translation.<br>• Powerful search feature. (In Pro)<br>• Unlimited bookmarks and notes. (Lite Version is limited to 5 bookmarks)<br>• Easy to use playback navigation controls.<br>• Repeat verse or surah infinite time to help you memorize any surah or verse.<br>• Jump to any verse of Quran. <br>• Quranic Supplications<br>• Friday reminder for reading Surah Al-Kahf<br>• Daily reminder for reading Surah Al-Waqia<br>• Different colorful themes, more to be added in free updates. <br>• Resume download from last downloaded verse.<br>• Download statistics screen, showing downloaded surahs and ability to remove any surah. <br>• Download audio for whole Quran.<br>• Different translations and still to come more in free updates.<br>• Support for both portrait and landscape view.<br>• Resume app from where you left.<br>• Share Translation<p>Supported Reciters<p>• Abdul Basit (Murattal) - المرتل) عبد الباسط)<br>• Hudhaify (In Pro) - الحذيفي<br>• Sheikh Husary (In Pro) - الشيخ الحصري<br>• Al-Afasy (In Pro) - العفاسي<br>• Saood &amp; Shuraim (In Pro) - سعود الشريم<br>• Abu Bakr Ash-Shatree (In Pro) - أبو بكر الشاطري<br>• Abdullah Basfar (In Pro) - عبد الله بصفر<br>• Ghamdi (In Pro) - الغامدي‎<br>• Mahir Al-Muayqali (In Pro) - الشيخ ماهر بن حمد المعيقلي<br>• Minshawi (In Pro) - المنشاوي‎<br>• Muhammad Jibreel (In Pro) - محمد جبريل<br>• Muhammad Ayyoub (In Pro) - محمد أيوب<br>• Muhammad al Tablaway (In Pro) - محمد الطبلاوي<br>• Abdur Rahman As Sudais (In Pro) - عبد الرحمن السديس<br>• Suggest more at our support email address.<p>Supported Translations<p>• Sahih International<br>• Shakir (English) (In Pro)<br>• Mohsin Khan (English) (In Pro)<br>• Yusuf Ali (English) (In Pro)<br>• Pickthall (English) (In Pro)<br>• Dr. Ghali (English) (In Pro)<br>• Transliteration (In Pro)<br>• Tafsir al-Jalalayn - تفسير الجلالين<br>• Malay (In Pro) - ملايو<br>• Indonesian (In Pro) - Indonesia<br>• Urdu for OS version 3.0+ - اردو<br>• Farsi for OS version 3.0+ (In Pro) - فارسی<br>• French (In Pro) - français<br>• German (In Pro) - Deutsch<br>• Italian (In Pro) - italiano<br>• Spanish (In Pro) - español<br>• Turkish (In Pro) - Türk<br>• Suggest more at our support email address.<p>For any suggestion, feedback, query or a bug report, please email us at our support email address as comments don&#39;t allow to start a thread.<p>Your rating and comments are most welcome to keep us motivated :)<p>=================<br>Facebook page: <a href="https://www.google.com/url?q=http://www.facebook.com/HolyQuranForAndroid&amp;sa=D&amp;usg=AFQjCNEHxM5gt6I5l266NzmWNwS-kSUESg" target="_blank">http://www.facebook.com/HolyQuranForAndroid</a><p>Follow us on Twitter: <a href="https://www.google.com/url?q=https://twitter.com/HolyQuranMobile&amp;sa=D&amp;usg=AFQjCNF352Mqp3ViEKPMYIWw5xtZlCBq_w" target="_blank">https://twitter.com/HolyQuranMobile</a><br>=================<p>Keywords: Holy Quran, Al-Quran, Koran. Islam, Qur&#39;an, Coran, Mobile Quran, Al Kareem, Al Hakeem, Islamic app, al-jalalain <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.mobizfun.holyquranlite"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.mobizfun.holyquranlite"></a> <a href="/store/apps/details?id=com.mobizfun.holyquranlite"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.mobizfun.holyquranlite"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 94.38660621643066%;"></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.mobizfun.holyquranlite"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.mobizfun.holyquranlite" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="com.martinvillar.android.quraninrussian" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaMQovEi0KJ2NvbS5tYXJ0aW52aWxsYXIuYW5kcm9pZC5xdXJhbmlucnVzc2lhbhABGAM="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.martinvillar.android.quraninrussian"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh6.ggpht.com/UObEYuF8gOeomX6j3q_r2b-8C7Rvhsn_u60EfLgWfzosplAmekxTB6sw6rzY5QO0LU2h=w170" alt="Коран на русском языке" data-cover-small="https://lh6.ggpht.com/UObEYuF8gOeomX6j3q_r2b-8C7Rvhsn_u60EfLgWfzosplAmekxTB6sw6rzY5QO0LU2h=w170" data-cover-large="https://lh6.ggpht.com/UObEYuF8gOeomX6j3q_r2b-8C7Rvhsn_u60EfLgWfzosplAmekxTB6sw6rzY5QO0LU2h=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.martinvillar.android.quraninrussian"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.martinvillar.android.quraninrussian"></a> <a class="title" href="/store/apps/details?id=com.martinvillar.android.quraninrussian" title="Коран на русском языке"> Коран на русском языке <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=MartinVillar.com" title="MartinVillar.com">MartinVillar.com</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.martinvillar.android.quraninrussian"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.martinvillar.android.quraninrussian" data-uitype="218"> Watch </span> <span class="price buy 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"> Коран на русском языке<p>- Читайте Коран.<br>- Новый дизайн с ActionBar!<br>- Скопировать в буфер аятов.<br>- (NEW) Возобновление воспроизведения звука из любого стиха<br>- Функция поиска: можно искать внутри весь Коран или любую суру.<br>- Продолжительное нажатие на стихи будет добавить его в закладки или поделиться в социальных сетях и обмена сообщениями программы. Вы даже можете добавить заметки.<br>- Слушать чтение каждой главы.<br>- Скопировать текст в буфер обмена.<p>Функциональные возможности профессиональной версии (Коран на русском языке PRO)<br>* (NEW) для комфортного чтения, выбрать один из трех режимов контрастности: стандартный, зеленый или черный и белый.<br>* Читать Коран в портретном или ландшафтном режиме.<br>* Поиск возвращает все матчи.<br>* Нет предела избранные.<br>* Нет рекламы.<br>* Улучшена скорость.<p><br>Keywords: Ислам, исламский, Коран, мусульмане <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.martinvillar.android.quraninrussian"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.martinvillar.android.quraninrussian"></a> <a href="/store/apps/details?id=com.martinvillar.android.quraninrussian"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.martinvillar.android.quraninrussian"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 98.0964469909668%;"></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.martinvillar.android.quraninrussian"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.martinvillar.android.quraninrussian" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="com.verypositive.Quran" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaIAoeEhwKFmNvbS52ZXJ5cG9zaXRpdmUuUXVyYW4QARgD"> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.verypositive.Quran"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh5.ggpht.com/Ml0BXRH3u4s7NqhQiyvZlhmstlaJOynN8nYm1nx681JdLzy1W1qRot8xy6lJFZ_trps=w170" alt="The Holy Quran - English" data-cover-small="https://lh5.ggpht.com/Ml0BXRH3u4s7NqhQiyvZlhmstlaJOynN8nYm1nx681JdLzy1W1qRot8xy6lJFZ_trps=w170" data-cover-large="https://lh5.ggpht.com/Ml0BXRH3u4s7NqhQiyvZlhmstlaJOynN8nYm1nx681JdLzy1W1qRot8xy6lJFZ_trps=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.verypositive.Quran"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.verypositive.Quran"></a> <a class="title" href="/store/apps/details?id=com.verypositive.Quran" title="The Holy Quran - English"> The Holy Quran - English <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Peace+Through+Understanding" title="Peace Through Understanding">Peace Through Understanding</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.verypositive.Quran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.verypositive.Quran" data-uitype="218"> Watch </span> <span class="price buy 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"> Read and listen to the Holy Qur&#39;an on the go with the most user-friendly Holy Qur&#39;an app available for Android.<br> <br>Features:<br>* The complete English translation<br>* Stream or download 5 different Arabic recitations <br> (by great reciters like Maher Al-Muaiqly or Said Al G <br> Ghamdi)<br>* Full-text search<br>* Unlimited bookmarks<br>* Glossary/Index with thousands of topics and the direct link to the corresponding passage in the Holy Qur&#39;an<br>* Three font sizes <br>* Different backgrounds/themes<br>* Introduction to the Holy Qur&#39;an with many topics for the <br> Muslim and non-Muslim reader<br>* Landscape Mode<br>* Move app to memory card<br>* Share Surahs through email, text or social media<br>* And many more features<p>This app is intended for the English reader, it does not include the original Arabic text, but it contains the Arabic audio / recitation of the Holy Quran (Koran). <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.verypositive.Quran"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.verypositive.Quran"></a> <a href="/store/apps/details?id=com.verypositive.Quran"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.verypositive.Quran"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 94.12481307983398%;"></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.verypositive.Quran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.verypositive.Quran" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="com.aboYazn.Quran" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaGwoZEhcKEWNvbS5hYm9ZYXpuLlF1cmFuEAEYAw=="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.aboYazn.Quran"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh6.ggpht.com/whKHpy7yoAa8WkHPxWx5j7ij9djWUKtjNxnmW0MsXW8PVNQ9QA7qIVjeONTkaS0ohw=w170" alt="Quran - القرآن الكريم" data-cover-small="https://lh6.ggpht.com/whKHpy7yoAa8WkHPxWx5j7ij9djWUKtjNxnmW0MsXW8PVNQ9QA7qIVjeONTkaS0ohw=w170" data-cover-large="https://lh6.ggpht.com/whKHpy7yoAa8WkHPxWx5j7ij9djWUKtjNxnmW0MsXW8PVNQ9QA7qIVjeONTkaS0ohw=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.aboYazn.Quran"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.aboYazn.Quran"></a> <a class="title" href="/store/apps/details?id=com.aboYazn.Quran" title="Quran - القرآن الكريم"> <span dir="rtl">Quran - القرآن الكريم</span> <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Abo+Yazn" title="Abo Yazn">Abo Yazn</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.aboYazn.Quran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.aboYazn.Quran" data-uitype="218"> Watch </span> <span class="price buy 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"> بسم الله الرحمن الرحيم<p>والصلاة والسلام على معلم البشرية سيدنا ونبينا<br>محمد وعلى آله وصحبه وسلم.<p>تم بحمد الله تعالى إعداد برنامج القرآن الكريم . <p>لكل من واجهته مشكلة الرجاء مراسلتي لحل المشكلة وهذا يعتبر دعماً لهذا البرنامج وليظهر بدون اخطاء ليستفيد منه الجميع. <p>أسأل الله العظيم أن يكتب أجر هذا البرنامج<br>لكل من ساهم في نشره. وأسأل الله أن ينفع به الأمة.<p>كماأهدي هذا البرنامج لجميع المسلمين . <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.aboYazn.Quran"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.aboYazn.Quran"></a> <a href="/store/apps/details?id=com.aboYazn.Quran"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.aboYazn.Quran"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 97.46086120605469%;"></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.aboYazn.Quran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.aboYazn.Quran" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="sa.edu.ksu.Ayat" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaGQoXEhUKD3NhLmVkdS5rc3UuQXlhdBABGAM="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=sa.edu.ksu.Ayat"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh4.ggpht.com/3581Gzk32tdzz0dXEeIY2jjLIDDKp5ptYweYi2AMy0U9nDuJe3LFTnB71DX2yTgU9WC3=w170" alt="Ayat: Holy Quran" data-cover-small="https://lh4.ggpht.com/3581Gzk32tdzz0dXEeIY2jjLIDDKp5ptYweYi2AMy0U9nDuJe3LFTnB71DX2yTgU9WC3=w170" data-cover-large="https://lh4.ggpht.com/3581Gzk32tdzz0dXEeIY2jjLIDDKp5ptYweYi2AMy0U9nDuJe3LFTnB71DX2yTgU9WC3=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=sa.edu.ksu.Ayat"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=sa.edu.ksu.Ayat"></a> <a class="title" href="/store/apps/details?id=sa.edu.ksu.Ayat" title="Ayat: Holy Quran"> Ayat: Holy Quran <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=ETC+KSU" title="ETC KSU">ETC KSU</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="sa.edu.ksu.Ayat"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="sa.edu.ksu.Ayat" data-uitype="218"> Watch </span> <span class="price buy 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"> Ayat : Holy Quran : KSU-Electronic Mosshaf project.<p>Features :<p>Viewing scanned(soft) copy of real printed Mosshaf.<p>Providing copy of Mosshaf Al-Madina, copy of Mosshaf Al-Tajweed (colored according to Tajweed rules) and copy of Mosshaf Warsh (Rewayat Warsh An-Nafei&#39;).<p>Holy Quran recitations by many famous reciters (two of them are by Rewayat Warsh an-Nafei&#39;).<p>Repeating each Aya as many times as desired with time interval in between.<p>Search through Holy Quran text.<p>Direct browsing the Mosshaf by Sura/Aya(Chapter/Verse) , Juz(Part) or Page number.<p>Six Arabic Tafsir(Commentary) &quot;Al-Saa&#39;di, Ibn-Katheer, Al-Baghawy, Al-Qortoby, Al-Tabary and Al-Waseet&quot;.<p>One English Tafsir(Commentary) &quot;Tafheem Al-Quran by Al-Maududi&quot;.<p>E&#39;rab(Grammar) Al-Quran by Qasim Da&#39;aas.<p>Text Translation of the Holy Quran meanings for more than 20 languages.<p>Voice Translation of the Holy Quran meanings for two languages (English and Urdu).<p>Sync between recitaion and Aya position in the Page (highlighting Aya while recited).<p>Sync between recitaion and voice translation (repeat the translation after the recitation).<p>Program Interface in both Arabic and English.<p>live preview (example) : <a href="https://www.google.com/url?q=http://quran.ksu.edu.sa&amp;sa=D&amp;usg=AFQjCNHXxAsb2mLiblJx9JzmZJl-f_HZFA" target="_blank">http://quran.ksu.edu.sa</a> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=sa.edu.ksu.Ayat"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=sa.edu.ksu.Ayat"></a> <a href="/store/apps/details?id=sa.edu.ksu.Ayat"> </a> <span class="stars-container"> <a href="/store/apps/details?id=sa.edu.ksu.Ayat"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 97.93624877929688%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="sa.edu.ksu.Ayat"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="sa.edu.ksu.Ayat" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="orangebd.holy.quran" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaHQobEhkKE29yYW5nZWJkLmhvbHkucXVyYW4QARgD"> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=orangebd.holy.quran"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh3.ggpht.com/guszxntMBN9WQOzWtVnRGC22qdZUUnvGSd1vO1xTLbSlPAXjCrIERDIDg4x8JmSpsxI=w170" alt="Al-Quran (Bangla)" data-cover-small="https://lh3.ggpht.com/guszxntMBN9WQOzWtVnRGC22qdZUUnvGSd1vO1xTLbSlPAXjCrIERDIDg4x8JmSpsxI=w170" data-cover-large="https://lh3.ggpht.com/guszxntMBN9WQOzWtVnRGC22qdZUUnvGSd1vO1xTLbSlPAXjCrIERDIDg4x8JmSpsxI=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=orangebd.holy.quran"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=orangebd.holy.quran"></a> <a class="title" href="/store/apps/details?id=orangebd.holy.quran" title="Al-Quran (Bangla)"> Al-Quran (Bangla) <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=orangebd.com" title="orangebd.com">orangebd.com</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="orangebd.holy.quran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="orangebd.holy.quran" data-uitype="218"> Watch </span> <span class="price buy 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"> بسم الله الرحمن الرحيم<p>We start expressing our heartfelt gratitude to Allah, Almighty and Exalted to grant us such opportunity to develop an Android Apps of The Holy Al-Quran in Bangla. We tried our best to serve one of the largest communities in the world who are more comfortable with Bangla than any other language through this Apps for the Android users. <p>Features:<p>• List of all sura name in bangla.<br>• Sura information.<br>• Bookmark is available.<br>• All Shajda versa is colored.<p><br>We wish the application to be user –friendly and expect everyone to recite as well as understand The Al-Quran (Bangla) every day to keep our heart refresh.<p><br>If you have any comments, suggestions or error please do not hesitate to contact us and we will make those changes as soon as possible.<p>Thanks to everyone for your complement and using this apps. Your suggestion and advises let us go ahead. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=orangebd.holy.quran"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=orangebd.holy.quran"></a> <a href="/store/apps/details?id=orangebd.holy.quran"> </a> <span class="stars-container"> <a href="/store/apps/details?id=orangebd.holy.quran"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 96.07382774353027%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="orangebd.holy.quran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="orangebd.holy.quran" data-uitype="218"> Watch </span> <span class="price buy 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 data-docid="com.yallasoft.quran" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaHQobEhkKE2NvbS55YWxsYXNvZnQucXVyYW4QARgD"> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.yallasoft.quran"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh3.ggpht.com/YC9pacdIthsZyZ6Mu2bvbS0VA8WnlpxljF-ARr2Wue72ijbVKEsejiRUNnN2C9AQjJ8=w170" alt="Al Quran Al karim" data-cover-small="https://lh3.ggpht.com/YC9pacdIthsZyZ6Mu2bvbS0VA8WnlpxljF-ARr2Wue72ijbVKEsejiRUNnN2C9AQjJ8=w170" data-cover-large="https://lh3.ggpht.com/YC9pacdIthsZyZ6Mu2bvbS0VA8WnlpxljF-ARr2Wue72ijbVKEsejiRUNnN2C9AQjJ8=w340"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.yallasoft.quran"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.yallasoft.quran"></a> <a class="title" href="/store/apps/details?id=com.yallasoft.quran" title="Al Quran Al karim"> Al Quran Al karim <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Mohamed+Dahroug" title="Mohamed Dahroug">Mohamed Dahroug</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.yallasoft.quran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.yallasoft.quran" data-uitype="218"> Watch </span> <span class="price buy 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"> Browse Quran like printed copy.<p>The pages are got from <a href="https://www.google.com/url?q=http://www.pdfquran.com/download/arabic/standard1-quran.zip&amp;sa=D&amp;usg=AFQjCNHVdN1cN2fm_Yq102T_0Pvm1IGSYw" target="_blank">http://www.pdfquran.com/download/arabic/standard1-quran.zip</a> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.yallasoft.quran"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.yallasoft.quran"></a> <a href="/store/apps/details?id=com.yallasoft.quran"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.yallasoft.quran"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 96.8144416809082%;"></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.yallasoft.quran"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="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> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.yallasoft.quran" data-uitype="218"> Watch </span> <span class="price buy 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 cluster"> <div class="footer-links-container card-list"> <span class="copyright">©2013 Google</span> <a class="footer-link 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 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 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 no-nav" href="http://developer.android.com/index.html" target="_blank"> Developers</a> <a class="footer-link 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'
75
+ };(function(){function doPlusOne(){if (gapi && gapi.plusone){gapi.plusone.go('body-content');}
76
+ }
77
+ 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);}
78
+ var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(po,s);})();})();</script><script type="text/javascript">if (gapi && gapi.load){gapi.load('card',function(){gapi.config.update('card/source','play.webstore');gapi.card.watch()});}
79
+ </script><div class="loading" id="page-load-indicator"></div><div id="audio-player"><audio id="html5Player" autoplay="autoplay"></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/magazines\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/magazines\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,\42/static/client/swf/musicplayer.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://play.google.com/intl/en-US_us/about/redeem-terms.html\42,\42/store/xhr/getvariantrec\42]\n,1,1]\n';})();</script><script>(function(){window._uc='[null,\42\42,\42en\42,\42US\42,[[\04276773414\42,null,1,\42enable_hardware_variant_selector\42]\n,[\0426595622\42,null,1,\42enable_new_shipping_messages\42]\n,[\42e2664cff\42,null,1,\42enable_movie_buy_rent_buttons\42]\n,[\428690ec72\42,null,1,\42enable_enhanced_movies_and_tv_details_metadata\42]\n]\n,0,0,0,null,null,[]\n,null,0,[\42nocache:mixer:use_windsearch\42,\42signed-out\42,\42vca:enable_onetree_search\42]\n]\n';})();</script><script type="text/javascript" src="/static/client/js/4063762060-main_page_js_compiled_main_page_js.js"></script>
80
+ <script>pressPlay();</script><script src="https://wallet.google.com/inapp/lib/buy.js"></script></body></html><div> <script>(function(){var pt='';var ab='';var lmt='';var curl='https://play.google.com/store/apps/details?id\75com.quran.labs.androidquran';var nbp='[]\n';var sc='CAESJwgFIiMSIQobY29tLnF1cmFuLmxhYnMuYW5kcm9pZHF1cmFuEAEYAw\75\075';var pgj=false;if (pt){upt(pt);}
81
+ if (ab){uab(ab);}
82
+ if (lmt){ihc(lmt);}
83
+ if (nbp){snbp(nbp);}
84
+ if (curl){sglc(curl);}
85
+ if (pgj){if (gapi && gapi.plus && gapi.plus.go){gapi.plus.go();}
86
+ }
87
+ usc(sc);})();</script> </div>
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: play_scrape
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Michael Villena
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Basic scraping of the Google PlayStore
42
+ email:
43
+ - mvillena@cmu.edu
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - lib/play_scrape.rb
54
+ - lib/play_scrape/app.rb
55
+ - lib/play_scrape/version.rb
56
+ - play_scrape.gemspec
57
+ - test/play_scrape_test.rb
58
+ - test/support_files/text.txt
59
+ homepage: ''
60
+ licenses:
61
+ - MIT
62
+ metadata: {}
63
+ post_install_message:
64
+ rdoc_options: []
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - '>='
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - '>='
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubyforge_project:
79
+ rubygems_version: 2.0.3
80
+ signing_key:
81
+ specification_version: 4
82
+ summary: It can scrape the play store
83
+ test_files:
84
+ - test/play_scrape_test.rb
85
+ - test/support_files/text.txt