market_bot 0.12.0 → 0.12.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f2d8f2fb0e5c926ec1464d3278f72c182376519b
4
- data.tar.gz: 82d2906d015c7cea01676a8ae14922fba912a7f6
3
+ metadata.gz: bdae72a2e0a5ed4595bdf9a41992d87ea6bf890b
4
+ data.tar.gz: f19f9401ceeff35ed5524c5d2cf035fe28bc7116
5
5
  SHA512:
6
- metadata.gz: 0701c2f3a9af7902cfd12985988b0fee466dd3e26e6a344592d42ef16d89575f79500537be00d535381767ffd87a539688eebd815ba616417c7361bbd50753b2
7
- data.tar.gz: 0eba7c4aaad09fa68108a8176468ac0d3b33274d7009ac78e44947a3cd946fdc120f565071523dfb1409e2e994ef859c0db452194c7cf7053e3a6dd5a0dcd3b1
6
+ metadata.gz: 2988f42556864583d80d3dbe4fc68bd2143fbd8c2d049e37e9e75b3138305438e86b3380492e21ac3b12f8a6607d30a135062cc9702e23f907844ad3fd3e8527
7
+ data.tar.gz: c93c3ae9934c8b7ce0c2792eb950c046af3db3d73b4a08f804720181cb9a2e5448ca563cf8b2f1fd68ea654563ade3ac867ca4886a2f3cbb137d7a3d748e8f10
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- market_bot (0.11.0)
4
+ market_bot (0.12.1)
5
5
  nokogiri
6
6
  typhoeus (>= 0.6.0)
7
7
 
@@ -9,14 +9,12 @@ GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
11
  diff-lcs (1.1.3)
12
- ethon (0.6.1)
12
+ ethon (0.7.1)
13
13
  ffi (>= 1.3.0)
14
- mime-types (~> 1.18)
15
- ffi (1.9.3)
16
- mime-types (1.25.1)
17
- mini_portile (0.5.2)
18
- nokogiri (1.6.0)
19
- mini_portile (~> 0.5.0)
14
+ ffi (1.9.6)
15
+ mini_portile (0.6.0)
16
+ nokogiri (1.6.3.1)
17
+ mini_portile (= 0.6.0)
20
18
  rspec (2.8.0)
21
19
  rspec-core (~> 2.8.0)
22
20
  rspec-expectations (~> 2.8.0)
@@ -25,8 +23,8 @@ GEM
25
23
  rspec-expectations (2.8.0)
26
24
  diff-lcs (~> 1.1.2)
27
25
  rspec-mocks (2.8.0)
28
- typhoeus (0.6.6)
29
- ethon (~> 0.6.1)
26
+ typhoeus (0.6.9)
27
+ ethon (>= 0.7.1)
30
28
 
31
29
  PLATFORMS
32
30
  ruby
data/Rakefile CHANGED
@@ -57,6 +57,9 @@ namespace :spec do
57
57
 
58
58
  download('https://play.google.com/store/apps/collection/editors_choice',
59
59
  File.join(File.dirname(__FILE__), 'spec', 'market_bot', 'android', 'data', 'leaderboard-apps_editors_choice.txt'))
60
+
61
+ download('https://play.google.com/store/apps/developer?id=Zynga',
62
+ File.join(File.dirname(__FILE__), 'spec', 'market_bot', 'android', 'data', 'developer-zynga.txt'))
60
63
  end
61
64
  end
62
65
  end
@@ -3,29 +3,25 @@ module MarketBot
3
3
 
4
4
  # Developer pages are extremely similar to leaderboard pages.
5
5
  # Amazingly, this inheritence hack works!
6
+ #
7
+ # BUG: This code only retrieves the first page of results.
8
+ # This means you will only get the first 24 apps for a developer.
9
+ # Some developers have hundreds of apps so this needs fixed!!!
6
10
  class Developer < MarketBot::Android::Leaderboard
7
- def initialze(developer, options={})
8
- super(query, nil, options)
11
+ def initialize(developer, options={})
12
+ super(developer, nil, options)
9
13
  end
10
14
 
11
15
  def market_urls(options={})
12
16
  results = []
13
17
 
14
- min_page = options[:min_page] || 1
15
- max_page = options[:max_page] || 25
18
+ url = "https://play.google.com/store/apps/developer?"
19
+ url << "id=#{URI.escape(identifier)}&"
20
+ url << "hl=en"
16
21
 
17
- (min_page..max_page).each do |page|
18
- start_val = (page - 1) * 12
22
+ results << url
19
23
 
20
- url = "https://play.google.com/store/apps/developer?"
21
- url << "id=#{URI.escape(identifier)}&"
22
- url << "start=#{start_val}&"
23
- url << "num=12&hl=en"
24
-
25
- results << url
26
- end
27
-
28
- results
24
+ return results
29
25
  end
30
26
  end
31
27
 
@@ -71,6 +71,66 @@ module MarketBot
71
71
  results
72
72
  end
73
73
 
74
+ # This is the initializer method for the Leaderboard class.
75
+ #
76
+ # Leaderboard gets initialized by default with a specified identifier, an optional app category, along with optional
77
+ # request options.
78
+ #
79
+ # * *Args* :
80
+ # - +identifier+ -> The identifier is used to get the results for distinct leaderboards.
81
+ # Valid identifiers include:
82
+ # :topselling_paid
83
+ # :topselling_free
84
+ # :topselling_new_free
85
+ # :topselling_new_paid
86
+ # :editors_choice
87
+ # :topselling_paid_game
88
+ # :movers_shakers
89
+ # :featured
90
+ # :tablet_featured
91
+ # :topgrossing
92
+ # - +category+ -> The category switches between the actual categories, or genres, of apps within a given leaderboard.
93
+ # Valid categories include:
94
+ # :game
95
+ # :arcade
96
+ # :brain
97
+ # :cards
98
+ # :casual
99
+ # :game_wallpaper
100
+ # :racing
101
+ # :sports_games
102
+ # :game_widgets
103
+ # :application
104
+ # :books_and_reference
105
+ # :business
106
+ # :comics
107
+ # :communication
108
+ # :education
109
+ # :entertainment
110
+ # :finance
111
+ # :health_and_fitness
112
+ # :libraries_and_demo
113
+ # :lifestyle
114
+ # :app_wallpaper
115
+ # :media_and_video
116
+ # :medical
117
+ # :music_and_audio
118
+ # :news_and_magazines
119
+ # :personalization
120
+ # :photography
121
+ # :productivity
122
+ # :shopping
123
+ # :social
124
+ # :sports
125
+ # :tools
126
+ # :transportation
127
+ # :travel_and_local
128
+ # :weather
129
+ # :app_widgets
130
+ # - +options+ -> The optional options Hash contains keys :hydra and :request_opts. :hydra can be used to specify
131
+ # a custom Hydra instance, while :request_opts is a Hash containing further options for the Play
132
+ # Store HTTP request.
133
+ #
74
134
  def initialize(identifier, category=nil, options={})
75
135
  @identifier = identifier
76
136
  @category = category
@@ -1,3 +1,3 @@
1
1
  module MarketBot
2
- VERSION = '0.12.0'
2
+ VERSION = '0.12.1'
3
3
  end
@@ -0,0 +1,94 @@
1
+ <!doctype html>
2
+ <html lang="en_US"><head><meta content="IE=10" http-equiv="X-UA-Compatible"><link href="/store/opensearch.xml?hl=en_US" rel="search" title="Google Play" type="application/opensearchdescription+xml"><meta content="PJKdyVFC5jlu_l8Wo_hirJkhs1cmitmn44fgpOc3zFc" name="google-site-verification"><style type="text/css">#gbar,#guser{font-size:13px;padding-top:0px !important;}#gbar{height:22px}#guser{padding-bottom:7px !important;text-align:right}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}@media all{.gb1{height:22px;margin-right:.5em;vertical-align:top}#gbar{float:left}}a.gb1,a.gb4{text-decoration:underline !important}a.gb1,a.gb4{color:#00c !important}.gbi .gb4{color:#dd8e27 !important}.gbf .gb4{color:#900 !important}</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(//fonts.gstatic.com/s/roboto/v13/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(//fonts.gstatic.com/s/roboto/v13/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(//fonts.gstatic.com/s/roboto/v13/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(//fonts.gstatic.com/s/roboto/v13/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(//fonts.gstatic.com/s/roboto/v13/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(//fonts.gstatic.com/s/roboto/v13/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(//fonts.gstatic.com/s/roboto/v13/7m8l7TlFO-S3VkhHuR0at50EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
43
+ }
44
+ @font-face {
45
+ font-family: 'Roboto';
46
+ font-style: italic;
47
+ font-weight: 400;
48
+ src: local('Roboto Italic'), local('Roboto-Italic'), url(//fonts.gstatic.com/s/roboto/v13/W4wDsBUluyw0tK3tykhXEfesZW2xOQ-xsNqO47m55DA.ttf) format('truetype');
49
+ }
50
+ @font-face {
51
+ font-family: 'Roboto Slab';
52
+ font-style: normal;
53
+ font-weight: 100;
54
+ src: local('Roboto Slab Thin'), local('RobotoSlab-Thin'), url(//fonts.gstatic.com/s/robotoslab/v5/MEz38VLIFL-t46JUtkIEgH4UHu-c0cTZKOwO_f6u1Os.ttf) format('truetype');
55
+ }
56
+ @font-face {
57
+ font-family: 'Roboto Slab';
58
+ font-style: normal;
59
+ font-weight: 300;
60
+ src: local('Roboto Slab Light'), local('RobotoSlab-Light'), url(//fonts.gstatic.com/s/robotoslab/v5/dazS1PrQQuCxC3iOAJFEJbfB31yxOzP-czbf6AAKCVo.ttf) format('truetype');
61
+ }
62
+ @font-face {
63
+ font-family: 'Roboto Slab';
64
+ font-style: normal;
65
+ font-weight: 400;
66
+ src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url(//fonts.gstatic.com/s/robotoslab/v5/y7lebkjgREBJK96VQi37Zp0EAVxt0G0biEntp43Qt6E.ttf) format('truetype');
67
+ }
68
+ @font-face {
69
+ font-family: 'Roboto Slab';
70
+ font-style: normal;
71
+ font-weight: 700;
72
+ src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(//fonts.gstatic.com/s/robotoslab/v5/dazS1PrQQuCxC3iOAJFEJZ_TkvowlIOtbR7ePgFOpF4.ttf) format('truetype');
73
+ }
74
+ </style><link rel="stylesheet" href="https://www.gstatic.com/play/store/web/css/3569472873-lowlife_css_ltr.css">
75
+ <link href="//ssl.gstatic.com/android/market_images/web/favicon.ico" rel="shortcut icon"><script type="text/javascript"></script><title id="main-title">Zynga - Android Apps on Google Play</title><meta content="Shop Google Play on the web. Purchase and enjoy instantly on your Android phone or tablet without the hassle of syncing." name="Description"><link href="https://play.google.com/store/apps/developer?id=Zynga" rel="canonical"><link href="https://play.google.com/store/apps/developer?id=Zynga" hreflang="x-default" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=af" hreflang="af" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=in" hreflang="in" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=ms" hreflang="ms" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=ca" hreflang="ca" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=cs" hreflang="cs" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=da" hreflang="da" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=de" hreflang="de" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=et" hreflang="et" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=en_GB" hreflang="en_GB" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=en" hreflang="en" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=es" hreflang="es" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=es_419" hreflang="es_419" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=fil" hreflang="fil" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=fr" hreflang="fr" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=fr_BE" hreflang="fr_BE" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=fr_CA" hreflang="fr_CA" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=fr_FR" hreflang="fr_FR" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=hr" hreflang="hr" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=zu" hreflang="zu" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=it" hreflang="it" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=sw" hreflang="sw" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=lv" hreflang="lv" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=lt" hreflang="lt" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=hu" hreflang="hu" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=nl" hreflang="nl" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=nl_BE" hreflang="nl_BE" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=nl_NL" hreflang="nl_NL" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=no" hreflang="no" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=pl" hreflang="pl" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=pt_BR" hreflang="pt_BR" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=pt_PT" hreflang="pt_PT" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=ro" hreflang="ro" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=sk" hreflang="sk" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=sl" hreflang="sl" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=fi" hreflang="fi" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=sv" hreflang="sv" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=vi" hreflang="vi" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=tr" hreflang="tr" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=el" hreflang="el" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=be" hreflang="be" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=bg" hreflang="bg" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=ru" hreflang="ru" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=sr" hreflang="sr" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=uk" hreflang="uk" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=am" hreflang="am" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=hi" hreflang="hi" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=th" hreflang="th" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=ko" hreflang="ko" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=zh_HK" hreflang="zh_HK" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=ja" hreflang="ja" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=zh_CN" hreflang="zh_CN" rel="alternate"><link href="https://play.google.com/store/apps/developer?id=Zynga&amp;hl=zh_TW" hreflang="zh_TW" rel="alternate"></head><body class="no-focus-outline" data-page-server-cookie=""><div id=gbar><nobr><a class=gb1 href="https://www.google.com/webhp?tab=8w">Search</a> <a class=gb1 href="http://www.google.com/imghp?hl=en&tab=8i">Images</a> <a class=gb1 href="https://maps.google.com/maps?hl=en&tab=8l">Maps</a> <b class=gb1>Play</b> <a class=gb1 href="https://www.youtube.com/?tab=81">YouTube</a> <a class=gb1 href="https://news.google.com/nwshp?hl=en&tab=8n">News</a> <a class=gb1 href="https://mail.google.com/mail/?tab=8m">Gmail</a> <a class=gb1 href="https://drive.google.com/?tab=8o">Drive</a> <a class=gb1 style="text-decoration:none" href="http://www.google.com/intl/en/options/"><u>More</u> &raquo;</a></nobr></div><div style="position:fixed;top:-100000px;left:-100000px;opacity:0" id="offscreen-renderer"></div><div class="wrapper-with-footer" id="wrapper"><div style="display:block"> <div class="nav-container" style="visibility:hidden"> <span class="show-all-hover-zone"> <span class="hover-arrow"></span> </span> <ul class="nav" role="navigation"> <li class="nav-list-item apps" data-backend="3" style="display:none"> <a class="menu-link id-no-menu-change selected" href="/store/apps"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Apps </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="103"> <a class="library-link id-no-menu-change" href="/apps"> My apps </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/apps"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/apps/category/GAME"> Games </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/apps/collection/editors_choice"> Editors' Choice </a> </li> </ul> </li> <li class="nav-list-item movies-tv" data-backend="4" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/movies"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Movies & TV </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="105"> <a class="library-link id-no-menu-change" href="/movies"> My movies & TV </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/movies"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/category/MOVIE"> Movies </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/category/TV"> TV </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/collection/promotion_collections_movie_studios"> Studios </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/movies/collection/promotion_collections_tv_networks"> Networks </a> </li> </ul> </li> <li class="nav-list-item music" data-backend="2" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/music"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Music </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="104"> <a class="library-link id-no-menu-change id-no-nav" href="/music?authuser"> My music </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/music"> Shop </a> </li> </ul> </li> <li class="nav-list-item books" data-backend="1" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/books"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Books </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option id-track-click" data-uitype="106"> <a class="library-link id-no-menu-change id-no-nav" href="/books"> My books </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/books"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link id-no-menu-change" href="/store/books/collection/promotion_1000568_txb_product"> Textbooks </a> </li> </ul> </li> <li class="nav-list-item magazines" data-backend="6" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/newsstand"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Newsstand </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="library-link id-no-menu-change id-track-click" data-uitype="121" href="/newsstand"> My newsstand </a> </li> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/newsstand"> Shop </a> </li> </ul> </li> <li class="nav-list-item devices" data-backend="5" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store/devices"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Devices </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="shop-link id-no-menu-change chosen" href="/store/devices"> Shop </a> </li> </ul> </li> <li class="nav-list-item store" data-backend="0" style="display:none"> <a class="menu-link id-no-menu-change default" href="/store"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Store </span> </span> </a> </li> <li class="store"> <ul class="sub-nav id-sub-nav-store"> <li class="secondary-sub-nav-option id-track-click" data-uitype="123"> <a class="sub-nav-link id-no-menu-change" href="/store/myplayactivity"> My Play activity </a> </li> <li class="secondary-sub-nav-option id-track-click" data-uitype="108"> <a class="sub-nav-link id-no-menu-change" href="/wishlist"> My wishlist </a> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen redeem-option id-track-click" data-uitype="109"> <button class="sub-nav-link id-no-menu-change id-no-nav"> Redeem </button> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen" data-uitype="125"> <a class="sub-nav-link id-no-menu-change id-no-nav" href="https://play.google.com/intl/en-US_us/about/giftcards"> Buy gift card </a> </li> <li class="secondary-sub-nav-option id-cannot-set-chosen"> <button class="sub-nav-link id-no-menu-change topup-link"> Buy Google Play credit </button> </li> </ul> </li> </ul> </div> </div><div class="butterbar-container"><span id="butterbar"></span></div><div class="body-content-loading-overlay" style="display:none"><div class="body-content-loading-spinner"></div></div><script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/4021730603-jquery_js_compiled_jquery_js.js"></script>
76
+ <script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/2008441260-initial_page_js_compiled_initial_page_js.js"></script>
77
+ <script>initializeAppMenu();</script><div class="action-bar-container" role="navigation" jsl="$t t-NjQXl_7dol8;$x 0;"> <div class="action-bar-inner"> <div class="action-bar apps" jsl="$x 1;" jsan="7.action-bar,7.apps"> <div jsinstance="0" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <div jsl="$x 4;$t t-pZpp18oHJ6M;$x 0;" class="action-bar-dropdown-container"> <div class="action-bar-dropdown"> <button class="action-bar-dropdown-top" aria-controls="action-dropdown-children-Categories" aria-owns="action-dropdown-children-Categories" id="action-dropdown-parent-Categories" aria-expanded="false" aria-haspopup="true" jsl="$x 1;" jsan="7.action-bar-dropdown-top,0.aria-controls,0.aria-owns,0.id,0.aria-expanded,0.aria-haspopup"> <span class="title" jsl="$x 2;" jsan="7.title">Categories</span> <span class="dropdown-icon"></span> </button> </div> <div class="name-edit-toggle" style="display:none"> <input class="edit-field-text" value="Categories" maxlength="50" size="18" type="text" jsl="$x 3;"> </div> <div class="action-bar-dropdown-children-container" aria-labelledby="action-dropdown-parent-Categories" id="action-dropdown-children-Categories" jsl="$x 4;" style="display:none"> <div class="dropdown-submenu" jsl="$x 5;" jsan="7.dropdown-submenu"> <ul jsl="$x 6;"> <li jsinstance="0" class="action-dropdown-outer-list-item" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item"> <ul jsl="$x 8;$t t-ufnLPd03FBo;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;" style="display:none"> <a target="_blank" jsl="$x 2;" jsan="0.target"></a> </li> <li class="submenu-divider" jsl="$x 3;" style="display:none"></li> <li jsinstance="0" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/BOOKS_AND_REFERENCE" title="Books &amp; Reference" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Books &amp; Reference</a> </li><li jsinstance="1" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/BUSINESS" title="Business" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Business</a> </li><li jsinstance="2" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/COMICS" title="Comics" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Comics</a> </li><li jsinstance="3" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/COMMUNICATION" title="Communication" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Communication</a> </li><li jsinstance="4" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/EDUCATION" title="Education" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Education</a> </li><li jsinstance="5" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/ENTERTAINMENT" title="Entertainment" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Entertainment</a> </li><li jsinstance="6" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/FINANCE" title="Finance" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Finance</a> </li><li jsinstance="7" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/HEALTH_AND_FITNESS" title="Health &amp; Fitness" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Health &amp; Fitness</a> </li><li jsinstance="8" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/LIBRARIES_AND_DEMO" title="Libraries &amp; Demo" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Libraries &amp; Demo</a> </li><li jsinstance="9" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/LIFESTYLE" title="Lifestyle" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Lifestyle</a> </li><li jsinstance="10" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/APP_WALLPAPER" title="Live Wallpaper" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Live Wallpaper</a> </li><li jsinstance="11" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MEDIA_AND_VIDEO" title="Media &amp; Video" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Media &amp; Video</a> </li><li jsinstance="12" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MEDICAL" title="Medical" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Medical</a> </li><li jsinstance="13" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/MUSIC_AND_AUDIO" title="Music &amp; Audio" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Music &amp; Audio</a> </li><li jsinstance="14" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/NEWS_AND_MAGAZINES" title="News &amp; Magazines" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">News &amp; Magazines</a> </li><li jsinstance="15" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PERSONALIZATION" title="Personalization" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Personalization</a> </li><li jsinstance="16" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PHOTOGRAPHY" title="Photography" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Photography</a> </li><li jsinstance="17" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/PRODUCTIVITY" title="Productivity" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Productivity</a> </li><li jsinstance="18" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SHOPPING" title="Shopping" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Shopping</a> </li><li jsinstance="19" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SOCIAL" title="Social" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Social</a> </li><li jsinstance="20" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/SPORTS" title="Sports" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Sports</a> </li><li jsinstance="21" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TOOLS" title="Tools" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Tools</a> </li><li jsinstance="22" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TRANSPORTATION" title="Transportation" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Transportation</a> </li><li jsinstance="23" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/TRAVEL_AND_LOCAL" title="Travel &amp; Local" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Travel &amp; Local</a> </li><li jsinstance="24" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/WEATHER" title="Weather" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Weather</a> </li><li jsinstance="*25" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/APP_WIDGETS" title="Widgets" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Widgets</a> </li> </ul> <div jsl="$x 9;" style="display:none"></div> </li><li jsinstance="*1" class="action-dropdown-outer-list-item" jsl="$x 7;" jsan="7.action-dropdown-outer-list-item"> <ul jsl="$x 8;$t t-ufnLPd03FBo;$x 0;" class="submenu-item-wrapper"> <li class="parent-submenu-link-wrapper" jsl="$x 1;"> <a class="parent-submenu-link" href="/store/apps/category/GAME" title="Games" jsl="$x 2;" jsan="7.parent-submenu-link,8.href,0.title">Games</a> </li> <li class="submenu-divider" jsl="$x 3;"></li> <li jsinstance="0" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ACTION" title="Action" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Action</a> </li><li jsinstance="1" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ADVENTURE" title="Adventure" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Adventure</a> </li><li jsinstance="2" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ARCADE" title="Arcade" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Arcade</a> </li><li jsinstance="3" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_BOARD" title="Board" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Board</a> </li><li jsinstance="4" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CARD" title="Card" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Card</a> </li><li jsinstance="5" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CASINO" title="Casino" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Casino</a> </li><li jsinstance="6" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_CASUAL" title="Casual" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Casual</a> </li><li jsinstance="7" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_EDUCATIONAL" title="Educational" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Educational</a> </li><li jsinstance="8" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_FAMILY" title="Family" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Family</a> </li><li jsinstance="9" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_MUSIC" title="Music" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Music</a> </li><li jsinstance="10" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_PUZZLE" title="Puzzle" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Puzzle</a> </li><li jsinstance="11" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_RACING" title="Racing" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Racing</a> </li><li jsinstance="12" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_ROLE_PLAYING" title="Role Playing" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Role Playing</a> </li><li jsinstance="13" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_SIMULATION" title="Simulation" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Simulation</a> </li><li jsinstance="14" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_SPORTS" title="Sports" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Sports</a> </li><li jsinstance="15" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_STRATEGY" title="Strategy" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Strategy</a> </li><li jsinstance="16" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_TRIVIA" title="Trivia" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Trivia</a> </li><li jsinstance="*17" class="child-submenu-link-wrapper" jsl="$x 4;"> <a class="child-submenu-link" href="/store/apps/category/GAME_WORD" title="Word" jsl="$x 5;" jsan="7.child-submenu-link,8.href,0.title">Word</a> </li> </ul> <div jsl="$x 9;" style="display:none"></div> </li> </ul> </div> </div> </div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="1" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="2" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-3kDrbXyPsIE;$x 0;" class="action-bar-link" jsan="t-3kDrbXyPsIE,7.action-bar-link"> <a class="action-bar-link-title" aria-selected="false" href="/store/apps" jsl="$x 1;" jsan="7.action-bar-link-title,0.aria-selected,8.href">Home</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="3" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-3kDrbXyPsIE;$x 0;" class="action-bar-link" jsan="t-3kDrbXyPsIE,7.action-bar-link"> <a class="action-bar-link-title" aria-selected="false" href="/store/apps/top" jsl="$x 1;" jsan="7.action-bar-link-title,0.aria-selected,8.href">Top Charts</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="4" jsl="$x 2;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;$t t-3kDrbXyPsIE;$x 0;" class="action-bar-link" jsan="t-3kDrbXyPsIE,7.action-bar-link"> <a class="action-bar-link-title" aria-selected="false" href="/store/apps/new" jsl="$x 1;" jsan="7.action-bar-link-title,0.aria-selected,8.href">New Releases</a> <span class="action-bar-link-title" jsl="$x 2;" style="display:none" jsan="7.action-bar-link-title,5.display"></span> </div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="*5" jsl="$x 2;$t t-JC5PZYWvdyU;$x 0;" class="action-bar-aux" jsan="t-JC5PZYWvdyU,7.action-bar-aux"> <div jsinstance="0" jsl="$x 1;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item" jsan="t-rwatkwvxdCk,7.action-bar-item"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;$t t-jrVj4fYkncg;$x 0;" class="action-bar-link action-bar-help play-button small id-track-click" data-uitype="112" title="Help" jsan="t-jrVj4fYkncg,7.action-bar-link,7.action-bar-help,7.play-button,7.small,7.id-track-click,0.data-uitype,0.title"> <span class="action-bar-link-title" jsl="$x 1;" jsan="7.action-bar-link-title"></span> </button> <div jsl="$x 4;" style="display:none"></div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div><div jsinstance="*1" jsl="$x 1;$t t-rwatkwvxdCk;$x 0;" class="action-bar-item settings-gear-menu play-button small" jsan="t-rwatkwvxdCk,7.action-bar-item,7.settings-gear-menu,7.play-button,7.small"> <div jsl="$x 1;" style="display:none" jsan="5.display"></div> <div jsl="$x 2;" style="display:none" jsan="5.display"></div> <button jsl="$x 3;" style="display:none" jsan="5.display"></button> <div jsl="$x 4;$t t-pZpp18oHJ6M;$x 0;" class="action-bar-dropdown-container"> <div class="action-bar-dropdown"> <button class="action-bar-dropdown-top" aria-controls="action-dropdown-children-" aria-owns="action-dropdown-children-" id="action-dropdown-parent-" aria-expanded="false" aria-haspopup="true" jsl="$x 1;" jsan="7.action-bar-dropdown-top,0.aria-controls,0.aria-owns,0.id,0.aria-expanded,0.aria-haspopup"> <span class="title" jsl="$x 2;" jsan="7.title"></span> <span class="dropdown-icon"></span> </button> </div> <div class="name-edit-toggle" style="display:none"> <input class="edit-field-text" value="" maxlength="50" size="18" type="text" jsl="$x 3;"> </div> <div class="action-bar-dropdown-children-container" aria-labelledby="action-dropdown-parent-" id="action-dropdown-children-" jsl="$x 4;" style="display:none"> <div class="dropdown-submenu" jsl="$x 5;" jsan="7.dropdown-submenu"> <ul class="submenu-item-wrapper" jsl="$x 6;" jsan="7.submenu-item-wrapper"> <li jsinstance="0" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-RFvLnNve14Q;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="/store/account" title="My orders" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.title">My orders</a> <button jsl="$x 2;" style="display:none" jsan="5.display"></button> </div> </li><li jsinstance="1" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-RFvLnNve14Q;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="/settings" title="Settings" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.title">Settings</a> <button jsl="$x 2;" style="display:none" jsan="5.display"></button> </div> </li><li jsinstance="*2" jsl="$x 7;"> <ul jsl="$x 8;" style="display:none"></ul> <div jsl="$x 9;$t t-RFvLnNve14Q;$x 0;" class="leaf-submenu-link-wrapper"> <a class="leaf-submenu-link" href="https://www.google.com/android/devicemanager?hl=en_US" target="_blank" title="Android Device Manager" jsl="$x 1;" jsan="7.leaf-submenu-link,8.href,0.target,0.title">Android Device Manager</a> <button jsl="$x 2;" style="display:none" jsan="5.display"></button> </div> </li> </ul> </div> </div> </div> <div jsl="$x 5;" style="display:none" class="action-bar-spacer"> </div> <button jsl="$x 6;" style="display:none"></button> </div> </div> </div> </div> </div><div class="id-body-content-beginning" aria-labelledby="main-title" tabindex="-1"></div><div id="body-content" role="main"><meta content="https://www.gstatic.com/android/market_images/plus/play_stream_logo.png" itemprop="logoImageUrl"><meta content="https://play.google.com" itemprop="logoHrefUrl"><div> <div class="cluster-container"> <div class="cluster id-track-click id-track-impression normal square-cover apps show-all" data-fetch-start="24" data-original-classes="cluster normal square-cover apps show-all" data-server-cookie="CAMiBggBGgISAA==" data-short-classes="cluster normal square-cover apps show-all" data-uitype="400"> <h1 class="cluster-heading"> Zynga <div class="subtitle"></div> </h1> <div class="card-list"> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.FarmVille2CountryEscape" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.FarmVille2CountryEscape" data-server-cookie="CAIaKwopEicKIWNvbS56eW5nYS5GYXJtVmlsbGUyQ291bnRyeUVzY2FwZRABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.FarmVille2CountryEscape" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="FarmVille 2: Country Escape" data-cover-large="https://lh6.ggpht.com/0LK-nbT6BCmcD4FTanovgD6_mGQcEw9ik1cpNSjKakCQvkZFSIfL7Y2KDafQm_E7KA=w340" data-cover-small="https://lh6.ggpht.com/0LK-nbT6BCmcD4FTanovgD6_mGQcEw9ik1cpNSjKakCQvkZFSIfL7Y2KDafQm_E7KA=w170" src="https://lh6.ggpht.com/0LK-nbT6BCmcD4FTanovgD6_mGQcEw9ik1cpNSjKakCQvkZFSIfL7Y2KDafQm_E7KA=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.FarmVille2CountryEscape" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.FarmVille2CountryEscape"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.FarmVille2CountryEscape" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.FarmVille2CountryEscape" title="FarmVille 2: Country Escape"> FarmVille 2: Country Escape <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.FarmVille2CountryEscape"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> A new mobile-optimized farm story is now available! It’s FarmVille tailored for you, your day, and the way you want to play. Best of all, it’s free!<br>Farm at your own pace, whether you have 30 seconds or 30 minutes. Play with friends or on your own in our new Anonymous Mode: Facebook not required. You can also play when not connected to the internet. Join a Farm Co-Op to trade and share, and go on Farm Adventures to collect rare goods. Now, you can finally play FarmVille anytime… anywhere. Best of all, it’s free!<p>** “FarmVille is back and this time, it’s portable” – TIME **<br>** &quot;Officially not just for Facebook anymore&quot; - Los Angeles Times **<br>** &quot;They may have built the best FarmVille game of the series&quot; - Kotaku **<p>• CRAFT a variety of baked gourmet goods like classic country apple pies<br>• HARVEST unique coastal crops along with your favorite fruits and vegetables<br>• DECORATE to your heart’s content as you customize your farm with your very own house<br>• COLLECT hidden and rare treasures as you discover a new coastal farm<br>• NURTURE and raise a wide variety of adorable farm animals<br>• GARDEN by the beautiful blue ocean as you decorate your farm with flowers<br>• EXPLORE a new FarmVille story filled with special farm adventures<br>• BUILD a new lush, family farm by the coast so all your friends can visit <br>• FISH with your fellow farmers and sell your catch at Pike’s Landing<br>• TRADE and chat with friends or play anonymously with people from all over the world<br>• ESCAPE to the coast and then connect to your Facebook farm to send free water<br>• COMPETE with others as your Co-Op climbs the global rankings<p>ADDITIONAL DISCLOSURES<br>• For specific information about how Zynga collects and uses personal or other data, please read our privacy policy at http://company.zynga.com/privacy/policy.<br>• This game does permit a user to connect to social networks, such as Facebook, and as such players may come into contact with other people when playing this game.<br>• The game is free to play, however in-app purchases are available for additional content and premium currency. In-app purchases range from $0.99 to $99.99.<br>• You will be given the opportunity to participate in special offers, events, and programs from Zynga Inc and its partners.<p>Use of this application is governed by the Zynga Terms of Service. Collection and use of personal data are subject to Zynga’s Privacy Policy. Zynga’s Privacy Policy is available in the Privacy Policy field located in the Developer section below. Both policies are available at www.zynga.com. Social Networking Service terms may also apply.<p>http://m.zynga.com/legal/terms-of-service</p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.FarmVille2CountryEscape" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.FarmVille2CountryEscape" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.2 stars out of five stars "> <div class="current-rating" style="width: 83.85662078857422%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.FarmVille2CountryEscape"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.livepoker" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.livepoker" data-server-cookie="CAIaHQobEhkKE2NvbS56eW5nYS5saXZlcG9rZXIQARgD" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.livepoker" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Zynga Poker – Texas Holdem" data-cover-large="https://lh3.ggpht.com/NGJNgXwheyxcY9JRk2BFkEmY9LqRWMn9Rk9Dcw647bL_KVFdiD8LrVz3v1kEARPVUvmz=w340" data-cover-small="https://lh3.ggpht.com/NGJNgXwheyxcY9JRk2BFkEmY9LqRWMn9Rk9Dcw647bL_KVFdiD8LrVz3v1kEARPVUvmz=w170" src="https://lh3.ggpht.com/NGJNgXwheyxcY9JRk2BFkEmY9LqRWMn9Rk9Dcw647bL_KVFdiD8LrVz3v1kEARPVUvmz=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.livepoker" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.livepoker"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.livepoker" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.livepoker" title="Zynga Poker – Texas Holdem"> Zynga Poker – Texas Holdem <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.livepoker"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> *** “The largest poker site in the world…” – ESPN.COM ***<p>Play Zynga Poker LIVE and compete against millions of players in the number #1 Poker Game on iOS, Android, and Facebook!<p>MORE FREE CHIPS: Free-to-Play – Download now and get 20K chips FREE!<p>Free Chips Daily – Win up to 100K chips daily with Lucky Bonus Slots!<p>Gift Poker Chips – Send FREE chips to friends with up to 1 million per gift!<p>FEATURES:<p>Authentic Poker Action – Experience the most realistic poker game anywhere!<p>Play Anywhere – Join your friends at home or on the go.<p>Compete Against Millions – Test your skills in sit-n-go and shootout tournaments.<p>International Support – Full support for Turkish, Italian, French, German, Simplified &amp; traditional Chinese, Portuguese, Japanese, Korean, Turkish, Dutch, Indonesian, Malay, Russian, Norwegian, and Swedish.<p>SOCIAL MEDIA:<p>Facebook: http://zynga.tm/PokerFanPage<p>Twitter: http://zynga.tm/PokerTwitter<p>Use of this application is governed by the Zynga Terms of Service.  Collection and use of personal data are subject to Zynga’s Privacy Policy. Both policies are available in the Application License Agreement below as well as at www.zynga.com. Social Networking Service terms may also apply.<p>Terms of Service: http://m.zynga.com/legal/terms-of-service</p></p></p></p></p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.livepoker" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.livepoker" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.3 stars out of five stars "> <div class="current-rating" style="width: 86.27017021179199%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.livepoker"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.scramble" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.scramble" data-server-cookie="CAIaHAoaEhgKEmNvbS56eW5nYS5zY3JhbWJsZRABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.scramble" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Scramble With Friends Free" data-cover-large="https://lh5.ggpht.com/EthJIQ1ihaxfdlizxJE0RC-f6_NwLM5BMV5qWSASnPg4WgHVyuqA2spsnonluT2GDn0=w340" data-cover-small="https://lh5.ggpht.com/EthJIQ1ihaxfdlizxJE0RC-f6_NwLM5BMV5qWSASnPg4WgHVyuqA2spsnonluT2GDn0=w170" src="https://lh5.ggpht.com/EthJIQ1ihaxfdlizxJE0RC-f6_NwLM5BMV5qWSASnPg4WgHVyuqA2spsnonluT2GDn0=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.scramble" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.scramble"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.scramble" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.scramble" title="Scramble With Friends Free"> Scramble With Friends Free <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.scramble"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> Beat the clock and your friends: Scramble With Friends is the fast, fun game of finding words on a jumbled grid! Quickly slide your finger over adjacent letters to form words forwards, backwards, sideways…anyway you can! Challenge a friend to a game or find someone within the Scramble With Friends network. Try tournaments mode and play against others in a real-time rapid-fire 8-person bracket style tournament. Or sharpen your skills using solo mode. The more you play, the more experience points you earn to unlock fun new tables and win mega-power up prizes. <p>FEATURE SET:<br>★ Tournaments mode: Lets you compete in a real-time fast-paced 8 person bracket-style tournament in one sitting<br>★ Unlock Tables and Prizes: Earn experience points in Tournaments to unlock new table types and win mega-power up prizes to add more time to your board or help you find more words<br>★ Power-Ups &amp; Tickets: Come back for the daily scramble to win power-ups and tickets to use in Tournaments<br>★ Practice Mode lets your practice on your own, anytime, anywhere<br>★ Stats Tracker: Track your own progress over time such as your longest word, speed or highest scoring game<p>REVIEWS:<br>★ “Short but sweet, Scramble With Friends is a game designed exclusively for the socially-enabled wordplay fan. That said, Zynga …has delivered an addictive puzzler for those willing to engage with friends and randoms alike” -- PocketGamer UK<br>★ “One of the best time wasters you’ll ever play” - Slide to Play<br>★ “Wonderful way to keep your brain sharp while having fun” – Player Review<br>____________________________________<p>Already a fan of the game?<br>Like Scramble With Friends Free on Facebook: https://www.facebook.com/Zynga.Scramble<br>Follow Scramble With Friends Free on Twitter: https://twitter.com/ScrambleWF<br>____________________________________<p>ADDITIONAL DISCLOSURES:<br>● Use of this application is governed by the Zynga Terms of Service. These Terms are available through the License Agreement field below, and at http://m.zynga.com/legal/terms-of-service.<br>● For specific information about how Zynga collects and uses personal or other data, please read our privacy policy at http://m.zynga.com/privacy/policy. Zynga’s Privacy Policy is also available through the Privacy Policy field below.<br>● The game is free to play, however in-app purchases are available for additional content and premium currency. In-app purchases range from $0.99 to $99.99.<br>● This game does permit a user to connect to social networks, such as Facebook, and as such players may come into contact with other people when playing this game.<br>● Terms of Service for Social Networks you connect to in this game may also apply to you.<br>● You will be given the opportunity to participate in special offers, events, and programs from Zynga Inc. and its partners. <br>● Must be 13+ to play.<br>● Use of this application requires a Facebook or Games With Friends account.</p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.scramble" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.scramble" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.6 stars out of five stars "> <div class="current-rating" style="width: 91.1175537109375%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.scramble"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.hanging" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.hanging" data-server-cookie="CAIaGwoZEhcKEWNvbS56eW5nYS5oYW5naW5nEAEYAw==" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.hanging" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Hanging With Friends" data-cover-large="https://lh5.ggpht.com/zPmCvUnmxh3IFjsb8FdTQ9kErPSjticwHmQLbnNyudepEWu1d2YwsvBrfuQWSwVlifU=w340" data-cover-small="https://lh5.ggpht.com/zPmCvUnmxh3IFjsb8FdTQ9kErPSjticwHmQLbnNyudepEWu1d2YwsvBrfuQWSwVlifU=w170" src="https://lh5.ggpht.com/zPmCvUnmxh3IFjsb8FdTQ9kErPSjticwHmQLbnNyudepEWu1d2YwsvBrfuQWSwVlifU=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.hanging" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.hanging"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.hanging" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.hanging" title="Hanging With Friends"> Hanging With Friends <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.hanging"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> Build secret words and keep your friends guessing in Hanging With Friends - A brand new twist to the classic game of hangman!<p>★ Challenge, stump and amuse your friends by crafting word puzzles for them to solve<br>★ Customize your hangman experience with different scenes, balloons and characters<br>★ Need a hint? Use strategic lifelines to help you solve a puzzle<br>★ Invite new friends with Facebook or make new ones with the random opponent matchmaker<br>★ Connect with your friends and family with in-game chat<br> <br>It’s a different puzzle every single time!<br> <br>Already a fan of the game? Follow us online for news, tips and freebies:<br>Facebook: http://www.facebook.com/HangingWithFriends<br>Twitter: http://twitter.com/HangingWFriends<br>_________________________________________<br> <br>ADDITIONAL DISCLOSURES<p>• Use of this application is governed by the Zynga Terms of Service. These Terms are available at http://m.zynga.com/legal/terms-of-service.<br>• For specific information about how Zynga collects and uses personal or other data, please read our privacy policy at http://m.zynga.com/privacy/policy. Zynga’s Privacy Policy is also available through the Privacy Policy field in the Developer section below.<br>• The game is free to play, however in-app purchases are available for additional content and premium currency. In-app purchases range from $0.99 to $99.99.<br>• This game does permit a user to connect to social networks, such as Facebook, and as such players may come into contact with other people when playing this game.<br>• Terms of Service for Social Networks you connect to in this game may also apply to you.<br>You will be given the opportunity to participate in special offers, events, and programs from Zynga Inc. and its partners. <br>• Must be 13+ to play.<br>• Use of this application requires a Facebook or Zynga With Friends account</p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.hanging" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.hanging" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.3 stars out of five stars "> <div class="current-rating" style="width: 85.07850646972656%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.hanging"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.gswf" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.gswf" data-server-cookie="CAIaGAoWEhQKDmNvbS56eW5nYS5nc3dmEAEYAw==" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.gswf" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="What’s the Phrase Free" data-cover-large="https://lh6.ggpht.com/jnBzl3yy24wx7mKXdCc4B8xE1jq4Z1pgTYnpArlQ07CokJvqJf5JK_pYt1-gkxQUOas=w340" data-cover-small="https://lh6.ggpht.com/jnBzl3yy24wx7mKXdCc4B8xE1jq4Z1pgTYnpArlQ07CokJvqJf5JK_pYt1-gkxQUOas=w170" src="https://lh6.ggpht.com/jnBzl3yy24wx7mKXdCc4B8xE1jq4Z1pgTYnpArlQ07CokJvqJf5JK_pYt1-gkxQUOas=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.gswf" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.gswf"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.gswf" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.gswf" title="What’s the Phrase Free"> What’s the Phrase Free <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.gswf"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> ★ Spin ★ Guess ★ Solve ★ <br>★ THE NEW WORD GAME from the makers of Words with Friends™ and Scramble with Friends™!<p>★ Pick from over 40 fresh and unique categories, test your luck on the wheel and see if you can guess the Phrase faster than your friends in What’s the Phrase with Friends™!<p>The fun doesn’t stop there:<p>★ Challenge your friends with your own hilarious custom Phrase and hint!<br>★ Use Power-ups for additional hints or be the bad guy and use them to set traps!<br>★ Send gifts to your friends so they can unlock categories faster!<br>★ Multi-lingual? Change puzzle language in separate games to Spanish, French, Italian, German or Portuguese!<br>★ Login with your Facebook account to play against your friends, or challenge a random opponent across the world!<p><br>Like What’s the Phrase With Friends™ on Facebook©!<br>https://www.facebook.com/whatsthephrase<br>Follow What’s the Phrase With Friends™ on Twitter© - @WTP!<p>★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ <p>ADDITIONAL DISCLOSURES<p>• Use of this application is governed by the Zynga Terms of Service. These Terms are available at http://m.zynga.com/legal/terms-of-service.<br>• For specific information about how Zynga collects and uses personal or other data, please read our privacy policy at http://m.zynga.com/privacy/policy. Zynga’s Privacy Policy is also available through the Privacy Policy field in the Developer section below.<br>• The game is free to play, however in-app purchases are available for additional content and premium currency. In-app purchases range from $0.99 to $99.99.<br>• This game does permit a user to connect to social networks, such as Facebook, and as such players may come into contact with other people when playing this game.<br>• Terms of Service for Social Networks you connect to in this game may also apply to you.<br>You will be given the opportunity to participate in special offers, events, and programs from Zynga Inc. and its partners. <br>• Must be 13+ to play.<br>• Use of this application requires a Facebook or Zynga With Friends account</p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.gswf" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.gswf" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.3 stars out of five stars "> <div class="current-rating" style="width: 85.43733596801758%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.gswf"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.castlevillelegends" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.castlevillelegends" data-server-cookie="CAIaJgokEiIKHGNvbS56eW5nYS5jYXN0bGV2aWxsZWxlZ2VuZHMQARgD" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.castlevillelegends" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="CastleVille Legends" data-cover-large="https://lh6.ggpht.com/QF1XpyJfmWKwwvaalgGg6VR99qBHkMBiUjm59UvUYTC5jch3JjXXai7o2D6Ugz2w-Q=w340" data-cover-small="https://lh6.ggpht.com/QF1XpyJfmWKwwvaalgGg6VR99qBHkMBiUjm59UvUYTC5jch3JjXXai7o2D6Ugz2w-Q=w170" src="https://lh6.ggpht.com/QF1XpyJfmWKwwvaalgGg6VR99qBHkMBiUjm59UvUYTC5jch3JjXXai7o2D6Ugz2w-Q=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.castlevillelegends" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.castlevillelegends"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.castlevillelegends" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.castlevillelegends" title="CastleVille Legends"> CastleVille Legends <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.castlevillelegends"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> Google Play Exclusive!<br>For a limited time, players can purchase a new starter pack with 50% more coins, crowns, and padlocks!<br>With this limited time offer, we’ve also reduced the price of Ember the dragon – a premium hero – to 115 crowns!<br>We&#39;ve also lowered cost of Scorch the baby dragon by 50%!<br>Take advantage of this special offer while it lasts!<p>Build a magical fairy-tale kingdom with this charming fantasy game. Castleville Legends is a Free to Play game where you Explore, Build and Expand your kingdom into the realms of Dragons, Pirates, and Fairies.<br> <br>• Build enchanted workshops, Harvest beautiful crops, Tend cute animals and Craft magical items to earn Gold Coins for your Kingdom<br>• Explore the lush fantasy world of the Legendary Lands by pushing back the dreadful Gloom cast by the Dark Wizard<br>• Buy and sell goods to other players by sending ships using Sea Trading<br>• Save Heroes from their crystallized confinement, and earn new fantastical creatures like Dragons, Unicorns, and Fairies<br>• Send your favorite Castleville characters on adventures to Places of Legend<br>• Play on your mobile device anywhere, anytime; internet connection is not required<br> <br>Finish stained glass windows in the Hall of Heroes to read stories full of intriguing characters and legendary creatures. Solve the mysteries found within to help your Heroes search for what they’ve lost, and complete quests to learn more about your Kingdom! <p>Use of this application is governed by the Zynga Terms of Service. Collection and use of personal data are subject to Zynga&#39;s Privacy Policy. Both policies are available in the Application License Agreement and Privacy Policy sections below, as well as at www.zynga.com. Social Networking Service terms may also apply.</p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.castlevillelegends" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.castlevillelegends" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.2 stars out of five stars "> <div class="current-rating" style="width: 83.60979080200195%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.castlevillelegends"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.hititrich" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.hititrich" data-server-cookie="CAIaHQobEhkKE2NvbS56eW5nYS5oaXRpdHJpY2gQARgD" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.hititrich" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Hit it Rich! Free Casino Slots" data-cover-large="https://lh5.ggpht.com/Tlg9mE-926D_6sfWuaoS31qas59vkHXI9CY64GaM097TrA5fhY1ZtKakSs625AGp8Q=w340" data-cover-small="https://lh5.ggpht.com/Tlg9mE-926D_6sfWuaoS31qas59vkHXI9CY64GaM097TrA5fhY1ZtKakSs625AGp8Q=w170" src="https://lh5.ggpht.com/Tlg9mE-926D_6sfWuaoS31qas59vkHXI9CY64GaM097TrA5fhY1ZtKakSs625AGp8Q=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.hititrich" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.hititrich"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.hititrich" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.hititrich" title="Hit it Rich! Free Casino Slots"> Hit it Rich! Free Casino Slots <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.hititrich"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> Follow the yellow brick road to riches in THE WIZARD OF OZ™! Win big with THE TERMINATOR™! Go for glam in SEX AND THE CITY™! And the original, DUCK DYNASTY™ slots. Hit It Rich!™ slots has something for everyone, and its FREE!<br>Features:<br>• ICONIC GAMES - Play slots featuring The Wizard of Oz™, The Terminator™, Sex and the City™, and Duck Dynasty™<br>• FREE COINS - Start Rich! Play with 30,000 free coins and get more free from Daily Bonuses and Bonus Games<br>• WIN BIG WITH FRIENDS - Connect with Facebook and send your friends free spins, or extend their play with free coins<br>• HIGH-QUALITY VEGAS DESIGN - Experience state-of-the art game design, graphics and sound<br>• BONUS GAMES GALORE - Play action-packed bonus games with HUGE jackpots!<br>Additional coins available for purchase.<br>Facebook: facebook.com/HitItRichSlots<br>Twitter: twitter.com/HitItRichSlots<br>http://zynga.com/game/slots<p>Use of this application is governed by the Zynga™ Terms of Service. Collection and use of personal data are subject to Zynga&#39;s Privacy Policy. Both policies are available in the Application License Agreement and Privacy Policy sections<br>below, as well as at www.zynga.com. Social Networking Service terms may also apply. Must be 13+ to play.</p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.hititrich" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.hititrich" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.4 stars out of five stars "> <div class="current-rating" style="width: 88.44249725341797%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.hititrich"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.draw2.googleplay.free" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.draw2.googleplay.free" data-server-cookie="CAIaKQonEiUKH2NvbS56eW5nYS5kcmF3Mi5nb29nbGVwbGF5LmZyZWUQARgD" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.draw2.googleplay.free" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Art With Friends Free" data-cover-large="https://lh4.ggpht.com/pDZyw4Ec1HEq5G4OJO3b_OhKDrbvCSEZawYz3FfD9FBEY00p3tqW3IQ5Q114Odyg=w340" data-cover-small="https://lh4.ggpht.com/pDZyw4Ec1HEq5G4OJO3b_OhKDrbvCSEZawYz3FfD9FBEY00p3tqW3IQ5Q114Odyg=w170" src="https://lh4.ggpht.com/pDZyw4Ec1HEq5G4OJO3b_OhKDrbvCSEZawYz3FfD9FBEY00p3tqW3IQ5Q114Odyg=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.draw2.googleplay.free" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.draw2.googleplay.free"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.draw2.googleplay.free" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.draw2.googleplay.free" title="Art With Friends Free"> Art With Friends Free <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.draw2.googleplay.free"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> All new ways to draw, guess, and share with friends! Play Art With Friends and discover the Artist in you!<br>Create cool effects with dozens of new tools, patterns, stamps and colors - allowing you to transform even the simplest drawings into masterpieces.<br>For the first time ever, share your drawings in a feed for all of your friends to see! Follow your friends, celebs, and discover new artists - there’s always something new, funny and inspiring to check out!<br>...And There’s More!<p>• Gallery<br>A collection of all of your favorite drawings in one place<br>• Tons of New Words<br>Over 5,000 new words, including all new 9 letter words and phrases<br>• More Drawing Tools<br>Limitless creativity at your fingertips! Try out the Pixel pen, Pattern pencil, Stamps, Marker, Highlighter, Crayon and more. Plus, choose from over 100 vibrant colors<br>• All New Ways to Play<br>Earn coins for playing the Daily Guess and Daily Draw<br>• Free Draw<br>Draw anything. Try out your new tools, create and share something amazing<br>• Play with Your Friends<br>Challenge friends on Facebook or be automatically partnered with new people to play with<br>• Restricted Mode<br>Disable the Social Feed and gallery using a PIN. You can still play turns with friends and contacts, but you won&#39;t see any social content<p>Become a fan! Get exclusive rewards and stay up to date all the latest news<br>• Facebook: https://www.facebook.com/ArtwFriends<br>• Twitter: https://www.twitter.com/ArtwFriends<br>• Instagram: http://www.instagram.com/playartwithfriends<p>Use of this application is governed by the Zynga Terms of Service. Collection and use of personal data are subject to Zynga&#39;s Privacy Policy. Both policies are available in the Application License Agreement below as well as at www.zynga.com. Social Networking Service terms may also apply.<p>Terms of Service: http://m.zynga.com/legal/terms-of-service</p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.draw2.googleplay.free" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.draw2.googleplay.free" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.7 stars out of five stars "> <div class="current-rating" style="width: 73.3561897277832%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.draw2.googleplay.free"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.scramble.paid" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.scramble.paid" data-server-cookie="CAIaIQofEh0KF2NvbS56eW5nYS5zY3JhbWJsZS5wYWlkEAEYAw==" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.scramble.paid" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Scramble With Friends" data-cover-large="https://lh6.ggpht.com/Y3enJYZMDsDyMXiWVw8tJ55iW2-_-6uJ0ys50d2WpfPJw5Xv73qzVBFYACb_QjdhtR3y=w340" data-cover-small="https://lh6.ggpht.com/Y3enJYZMDsDyMXiWVw8tJ55iW2-_-6uJ0ys50d2WpfPJw5Xv73qzVBFYACb_QjdhtR3y=w170" src="https://lh6.ggpht.com/Y3enJYZMDsDyMXiWVw8tJ55iW2-_-6uJ0ys50d2WpfPJw5Xv73qzVBFYACb_QjdhtR3y=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.scramble.paid" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.scramble.paid"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.scramble.paid" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.scramble.paid" title="Scramble With Friends"> Scramble With Friends <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.scramble.paid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>$1.99</span> </button> </span> </span> </div> <div class="description"> Beat the clock and your friends: Scramble With Friends is the fast, fun game of finding words on a jumbled grid! Quickly slide your finger over adjacent letters to form words forwards, backwards, sideways…anyway you can! Challenge a friend to a game or find someone within the Scramble With Friends network. Try tournaments mode and play against others in a real-time rapid-fire 8-person bracket style tournament. Or sharpen your skills using solo mode. The more you play, the more experience points you earn to unlock fun new tables and win mega-power up prizes. <p>FEATURE SET:<br>★ No third party ads<br>★ Tournaments mode: Lets you compete in a real-time fast-paced 8 person bracket-style tournament in one sitting<br>★ Unlock Tables and Prizes: Earn experience points in Tournaments to unlock new table types and win mega-power up prizes to add more time to your board or help you find more words<br>★ Power-Ups &amp; Tickets: Come back for the daily scramble to win power-ups and tickets to use in Tournaments<br>★ Practice Mode lets your practice on your own, anytime, anywhere<br>★ Stats Tracker: Track your own progress over time such as your longest word, speed or highest scoring game<p>REVIEWS:<br>★ “Short but sweet, Scramble With Friends is a game designed exclusively for the socially-enabled wordplay fan. That said, Zynga …has delivered an addictive puzzler for those willing to engage with friends and randoms alike” -- PocketGamer UK<br>★ “One of the best time wasters you’ll ever play” - Slide to Play<br>★ “Wonderful way to keep your brain sharp while having fun” – Player Review<br>____________________________________<p>Already a fan of the game?<br>Like Scramble With Friends Free on Facebook: https://www.facebook.com/Zynga.Scramble<br>Follow Scramble With Friends Free on Twitter: https://twitter.com/ScrambleWF<br>____________________________________<p>ADDITIONAL DISCLOSURES:<br>● Use of this application is governed by the Zynga Terms of Service. These Terms are available through the License Agreement field below, and at http://m.zynga.com/legal/terms-of-service.<br>● For specific information about how Zynga collects and uses personal or other data, please read our privacy policy at http://m.zynga.com/privacy/policy. Zynga’s Privacy Policy is also available through the Privacy Policy field below.<br>● This game does permit a user to connect to social networks, such as Facebook, and as such players may come into contact with other people when playing this game.<br>● Terms of Service for Social Networks you connect to in this game may also apply to you.<br>● You will be given the opportunity to participate in special offers, events, and programs from Zynga Inc. and its partners. <br>● Must be 13+ to play.<br>● Use of this application requires a Facebook or Games With Friends account.</p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.scramble.paid" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.scramble.paid" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.5 stars out of five stars "> <div class="current-rating" style="width: 89.74154472351074%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.scramble.paid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>$1.99</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.bubblesafari.ent" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.bubblesafari.ent" data-server-cookie="CAIaJAoiEiAKGmNvbS56eW5nYS5idWJibGVzYWZhcmkuZW50EAEYAw==" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.bubblesafari.ent" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Bubble Safari™" data-cover-large="https://lh6.ggpht.com/CcsipJ-L9c2o6XMcG6l2SqE1IjtifoWyCHChuil0GuszCDTOma1vha_hcNiGlFCtzCk=w340" data-cover-small="https://lh6.ggpht.com/CcsipJ-L9c2o6XMcG6l2SqE1IjtifoWyCHChuil0GuszCDTOma1vha_hcNiGlFCtzCk=w170" src="https://lh6.ggpht.com/CcsipJ-L9c2o6XMcG6l2SqE1IjtifoWyCHChuil0GuszCDTOma1vha_hcNiGlFCtzCk=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.bubblesafari.ent" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.bubblesafari.ent"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.bubblesafari.ent" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.bubblesafari.ent" title="Bubble Safari™"> Bubble Safari™ <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.bubblesafari.ent"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> Bubble safari is an extremely addictive bubble shooter game that every person should play. – Mark Turmell<p>The best bubble puzzle adventure game! Help bubbles rescue buttercup!<p>Play super-addictive and popular bubble shooting game, throw bubbles and match colors to pop and drop your way to victory!<p>Play this game and challenge yourself with 400+ color bubble puzzles. <p>★ Shoot bubbles in sparkly swamps, amazing airships, chocolate covered islands and play with addictive hazards in 30+ jungle regions for free additional fun<p>★ Match colors to pop and drop your way throughout game levels.<p>★ There are explosive fire bubbles, lightning bubbles and other super cool power-ups for super charged adventure <p>★ Explosive power ups and boost bubbles to help you enjoy the game<p>★ Score Big Bonuses - beat your friends’ scores!<p>★ You’ll love the Exciting Animations and playful music!<p>★ Brand new levels added every 2 weeks<p><br>We would love to hear from you! Drop us a line at bubblemobilecs@zynga.com and we will help troubleshoot it for you.<p>Last, but not least, a big THANK YOU goes out to everyone who has played Bubble Safari<p>Please note:<br>Your device must have an active internet connection to download additional levels.<p>Please note:<br>Bubble Safari™ is free to play, but you can purchase in-app items with real money. To delete this feature, on your device go to Settings Menu -&gt; General -&gt; Restrictions option. You can then simply turn off In-App Purchases under &quot;Allowed Content&quot;. In addition, Bubble Safari™ may link to social media services, such as Facebook, and Zynga will have access to your information through such services.</p></p></p></p></p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.bubblesafari.ent" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.bubblesafari.ent" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.2 stars out of five stars "> <div class="current-rating" style="width: 83.04352760314941%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.bubblesafari.ent"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.zjayakashi" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.zjayakashi" data-server-cookie="CAIaHgocEhoKFGNvbS56eW5nYS56amF5YWthc2hpEAEYAw==" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.zjayakashi" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Ayakashi: Ghost Guild" data-cover-large="https://lh3.ggpht.com/qDrXvm-AKmKzk5puHzEZu10ub9lUs7ekAKR753jSViOXlfI4Mlig0Ow3juP_KxcXWq6V=w340" data-cover-small="https://lh3.ggpht.com/qDrXvm-AKmKzk5puHzEZu10ub9lUs7ekAKR753jSViOXlfI4Mlig0Ow3juP_KxcXWq6V=w170" src="https://lh3.ggpht.com/qDrXvm-AKmKzk5puHzEZu10ub9lUs7ekAKR753jSViOXlfI4Mlig0Ow3juP_KxcXWq6V=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.zjayakashi" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.zjayakashi"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.zjayakashi" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.zjayakashi" title="Ayakashi: Ghost Guild"> Ayakashi: Ghost Guild <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.zjayakashi"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> Collect demons to be the most powerful ghost agent! Ayakashi: Ghost Guild is the definitive version of gorgeous card battle RPGs with over 20 million players from around the world! No registration required!<p>〜Mysterious fantasy themed card battle RPG 〜 <p>◆◆ Ayakashi: Ghost Guild ◆◆ <p>【Create the most powerful demon deck as a ghost agent】 <p>Ayakashi: Ghost Guild is a free role-playing / card battle game with a rich story line of the battles with ghosts and other agents.<p>Enjoy the world of Ayakashi: Ghost Guild filled with gorgeously designed demon cards and beautiful music!<p>◆ What is Ayakashi: Ghost Guild? <p>【Game description】 <p>As a ghost agent, players try to come to grips with the mysterious events occurring around them. These events are being triggered by legendary creatures with enigmatic power beyond comprehension. Players must attempt to gain control of ghosts and bring them under their power, changing them to a demon. Throughout the rich story line, players must battle against scores of ghosts as well as rival agents.<p>【Loads of beautifully designed demon cards for you to collect!】 <p>The game boasts gorgeous demons from all over the world, emanating from three distinct origins – Phantom, Divina, and Anima. Drawing the player deep into the game, they must fight through spectacular battles to collect them all and complete the Demon Scroll.<p>◆Story <p>Since ancient times...sprites, magical creatures, ghouls, heavenly spirits and other beings with unworldly powers have been striking fear, and occasionally wonder into human hearts everywhere. These beings are better known as...<br>Ghosts. <p>Unbeknownst to us, a special group has been protecting humanity from these ghosts&#39; spooky deeds. These people are known as... Ghost Agents. <p>A young agent with the power to communicate with ghosts, and sufficient talent to put them to use as demons, has appeared...<p>◆How to play <p>【Collect demons by summoning and progressing through the story】 <p>Players can obtain demons as they make progress through the story, and they can get rare demons by summoning them. In addition, players can get rare demons by collecting all the sealed stones in the story, which will release a rare demon.<p>【Negotiate with ghosts to add them to your demon collection】 <p>As a ghost agent, the player has the chance to recruit ghosts to serve them as a demon after they have been defeated. The negotiation is not guaranteed to go well, and there is a chance the ghost will reject the offer so the player may have to rely on luck.<p>【Enhance demons】 <p>Once the player has obtained a demon, they can be enhanced by fusing them with other demons. Leveling up your demons will improve their abilities and increase particular skill levels, which is crucial in battling other players.<p>【Facebook fan page】 <p>Check out the latest event updates and game characters description here! <p>http://www.facebook.com/zynga.ayakashi</p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.zjayakashi" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.zjayakashi" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.4 stars out of five stars "> <div class="current-rating" style="width: 87.03932762145996%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.zjayakashi"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.zombiesmash" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.zombiesmash" data-server-cookie="CAIaHwodEhsKFWNvbS56eW5nYS56b21iaWVzbWFzaBABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.zombiesmash" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="ZombieSmash" data-cover-large="https://lh5.ggpht.com/YteaAf7MbfCgGLYmYuYZE2VOiiFsK0ycQS0F0zvLCEuWvlKBEyXpdKSXscpwiOPO1o4=w340" data-cover-small="https://lh5.ggpht.com/YteaAf7MbfCgGLYmYuYZE2VOiiFsK0ycQS0F0zvLCEuWvlKBEyXpdKSXscpwiOPO1o4=w170" src="https://lh5.ggpht.com/YteaAf7MbfCgGLYmYuYZE2VOiiFsK0ycQS0F0zvLCEuWvlKBEyXpdKSXscpwiOPO1o4=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.zombiesmash" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.zombiesmash"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.zombiesmash" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.zombiesmash" title="ZombieSmash"> ZombieSmash <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.zombiesmash"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>$0.99</span> </button> </span> </span> </div> <div class="description"> ZombieSmash! is a “Survival Comedy” game, featuring undead-themed castle defense and entertaining, physics-based gameplay. The game casts players as Joey, a lone survivor pit against a herd of writhing, unrelenting zombies - to defeat the undead masses, players must use their fingers to flick and smash them until they&#39;re un-undead. <p>• To aid players in their fight, over 30 specials and upgrades allow for creative zombie demolition - including fun implements like asteroids, wrecking balls, liquid nitrogen and a gigantic, rolling boulder – combine specials (for instance, smash nitrogen-frozen zombies with a boulder!) for added hilarity. <p>• Sophisticated ragdoll physics produce unique and hysterical zombie deaths, and the proprietary SplatterEngine™ renders adorable cartoon blood and gore in a convincing and entertaining fashion. <p>• Four game modes provide limitless replay value: <br> o Campaign Mode challenges players to survive for over 31 intense days against the mounting zombie threat and another 30 nights in the NEW CAMP NOWHERE campaign. <p> o Endless Siege Mode confronts them with a never-ending zombie assault - hold out as long as possible, racking up an ever-rising body count. <p> o Sandbox Mode gives you all the tools to rain destruction down on those stinking, moaning zombies without any of the peril. <p> o Bonus Nights Mode : Smash and destroy zombies in new ways! Unlock this special mode through extended gameplay and using your braaains!<p>• Original soundtrack produced by famed game music composer Chris Hülsbeck, the talented musician behind the scores to classic games like Turrican, Giana Sisters and the Star Wars: Rogue Squadron series.<p>_______________________________________________________<p>Use of this application is governed by the Zynga Terms of Service. Collection and use of personal data are subject to Zynga&#39;s Privacy Policy. Both policies are available in the Application License Agreement below as well as at www.zynga.com. Social Networking Service terms may also apply.&quot; <p>Terms of Service: http://m.zynga.com/legal/terms-of-service</p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.zombiesmash" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.zombiesmash" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.5 stars out of five stars "> <div class="current-rating" style="width: 90.38971900939941%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.zombiesmash"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>$0.99</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.wwf2.free" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.wwf2.free" data-server-cookie="CAIaHQobEhkKE2NvbS56eW5nYS53d2YyLmZyZWUQARgD" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.wwf2.free" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="New Words With Friends" data-cover-large="https://lh6.ggpht.com/vUtIeNdvQrWUyRvIKbQvR9SZyho3hY2WYfakjbrv2lodCZiRblS8MpKi0k6mRGz7Cg=w340" data-cover-small="https://lh6.ggpht.com/vUtIeNdvQrWUyRvIKbQvR9SZyho3hY2WYfakjbrv2lodCZiRblS8MpKi0k6mRGz7Cg=w170" src="https://lh6.ggpht.com/vUtIeNdvQrWUyRvIKbQvR9SZyho3hY2WYfakjbrv2lodCZiRblS8MpKi0k6mRGz7Cg=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.wwf2.free" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.wwf2.free"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.wwf2.free" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.wwf2.free" title="New Words With Friends"> New Words With Friends <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.wwf2.free"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> New Words With Friends is the fun, free social word game where your skills are tested. Find the best opponent for you, by browsing players’ profiles in Community Match, or sharpen your skills anytime and anywhere with offline Solo Play. May the Best Friend Win.™<p> • CONNECT with players of similar skill with Smart Match<p> • EXPAND your vocabulary with Dictionary and Word of the Day<p> • TRACK your performance and improvement with detailed stats<p> • CHAT with your friends in-game<p> • ACCESS your games across all your devices<p> • DOWNLOAD to access new features, fully backwards compatible with your current game.<p>Already an accomplished Wordie? Like us on Facebook or follow us on Twitter to stay up-to-date on game news, contests, polls and more.<p>http://www.facebook.com/WordsWithFriends <p>https://twitter.com/WordsWFriends <p>http://instagram.com/wordswithfriends <p>Thank you for playing New Words With Friends!<p><br>ADDITIONAL DISCLOSURES<p>• Use of this application is governed by the Zynga Terms of Service. These Terms are available through the License Agreement field below, and at http://m.zynga.com/legal/terms-of-service.<br>• For specific information about how Zynga collects and uses personal or other data, please read our privacy policy at http://m.zynga.com/privacy/policy. Zynga’s Privacy Policy is also available through the Privacy Policy field below.<br>• This game does permit a user to connect to social networks, such as Facebook, and as such players may come into contact with other people when playing this game.<br>• Terms of Service for Social Networks you connect to in this game may also apply to you. You will be given the opportunity to participate in special offers, events, and programs from Zynga, Inc. and its partners.<br>• Must be 13+ to play.<br>• Use of this application requires a Facebook or Games With Friends account.</p></p></p></p></p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.wwf2.free" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.wwf2.free" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.2 stars out of five stars "> <div class="current-rating" style="width: 83.66483688354492%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.wwf2.free"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.matching" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.matching" data-server-cookie="CAIaHAoaEhgKEmNvbS56eW5nYS5tYXRjaGluZxABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.matching" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Matching With Friends" data-cover-large="https://lh6.ggpht.com/90PJEJwGfKQ93JEMsEYty9y32L1TJwH3Wp57OHCiplEiHgHrNolTN9CARl7zLiW9Xfs=w340" data-cover-small="https://lh6.ggpht.com/90PJEJwGfKQ93JEMsEYty9y32L1TJwH3Wp57OHCiplEiHgHrNolTN9CARl7zLiW9Xfs=w170" src="https://lh6.ggpht.com/90PJEJwGfKQ93JEMsEYty9y32L1TJwH3Wp57OHCiplEiHgHrNolTN9CARl7zLiW9Xfs=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.matching" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.matching"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.matching" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.matching" title="Matching With Friends"> Matching With Friends <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.matching"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> Do you love puzzle games? Then play the explosively fun NEW game, Matching With Friends!<br> <br>FEATURES:<p>★ NEW puzzle game you can play with your friends!<br>★ MATCH 3 or more blocks to score points<br>★ PLACE tiles in strategic locations<br>★ EARN big points by using bonus multipliers<br>★ SWAP tiles to find the perfect match<br>★ UNLEASH bombs to use the board to your advantage<br>★ SCORE the most points and you win!<br>★ PLAY with your friends, or instantly match up with a new opponent<br> <br>It’s a different puzzle every single time!<p>_________________________________________ <p>ADDITIONAL DISCLOSURES<p>• Use of this application is governed by the Zynga Terms of Service. These Terms are available at http://m.zynga.com/legal/terms-of-service.<br>• For specific information about how Zynga collects and uses personal or other data, please read our privacy policy at http://m.zynga.com/privacy/policy. Zynga’s Privacy Policy is also available through the Privacy Policy field in the Developer section below.<br>• The game is free to play, however in-app purchases are available for additional content and premium currency. In-app purchases range from $0.99 to $99.99.<br>• This game does permit a user to connect to social networks, such as Facebook, and as such players may come into contact with other people when playing this game.<br>• Terms of Service for Social Networks you connect to in this game may also apply to you.<br>You will be given the opportunity to participate in special offers, events, and programs from Zynga Inc. and its partners. <br>• Must be 13+ to play.<br>• Use of this application requires a Facebook or Zynga With Friends account</p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.matching" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.matching" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.3 stars out of five stars "> <div class="current-rating" style="width: 86.82294845581055%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.matching"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.riches" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.riches" data-server-cookie="CAIaGgoYEhYKEGNvbS56eW5nYS5yaWNoZXMQARgD" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.riches" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Slots – Riches of Olympus" data-cover-large="https://lh4.ggpht.com/-O4IKwtUw5m445x-zzja7Be1aDmzXfMW7NcVZzG5Ls7EirgmvlPVGoUyk3Ow3L4n9Lwa=w340" data-cover-small="https://lh4.ggpht.com/-O4IKwtUw5m445x-zzja7Be1aDmzXfMW7NcVZzG5Ls7EirgmvlPVGoUyk3Ow3L4n9Lwa=w170" src="https://lh4.ggpht.com/-O4IKwtUw5m445x-zzja7Be1aDmzXfMW7NcVZzG5Ls7EirgmvlPVGoUyk3Ow3L4n9Lwa=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.riches" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.riches"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.riches" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.riches" title="Slots – Riches of Olympus"> Slots – Riches of Olympus <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.riches"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> Play Riches of Olympus, the only FREE slots game worthy of the gods! <p>Experience the excitement of cutting-edge Vegas slots and unleash the power of the gods for HUGE PAYOUTS with FREE SPINS and MEGA WILDS in an all-new slots adventure through Greek Mythology. <p>Features:<p>THIS IS VEGAS, FOR FREE<br>- Free Spins, Mega Wilds, Offset Reels, and dozens of ways to WIN BIG absolutely FREE. <p>FOLLOW YOUR FRIENDS<br>- Follow your friends on the path of the Greek gods, uncovering new machines and sending FREE gifts along the way.<p>STAY CONNECTED<br>- Play Online or Offline and have your adventure sync across all devices with Facebook Connect. <p>FEELING LUCKY?<br>- Take your chances on the roulette wheel, where you can double and quadruple your winnings!<p>Follow us on Twitter: https://twitter.com/richesofolympus<br>Follow-us on Facebook: https://www.facebook.com/ZyngaSlotsRichesOfOlympus<p>Use of this application is governed by the Zynga Terms of Service. Collection and use of personal data are subject to Zynga’s Privacy Policy. Both policies are available in the Application License Agreement below as well as at www.zynga.com. Social Networking Service terms may also apply.<p>Terms of Service: http://m.zynga.com/legal/terms-of-service</p></p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.riches" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.riches" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.2 stars out of five stars "> <div class="current-rating" style="width: 83.74001502990723%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.riches"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.duckdynastyslots" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.duckdynastyslots" data-server-cookie="CAIaJAoiEiAKGmNvbS56eW5nYS5kdWNrZHluYXN0eXNsb3RzEAEYAw==" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.duckdynastyslots" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Duck Dynasty Slots" data-cover-large="https://lh6.ggpht.com/ujG_qV7wz8Q4N4wkFJ3w_sOqjNvi9BRsdwsIgtr1z8ZvTCX_qHtyfN7X30l3b0G-taY=w340" data-cover-small="https://lh6.ggpht.com/ujG_qV7wz8Q4N4wkFJ3w_sOqjNvi9BRsdwsIgtr1z8ZvTCX_qHtyfN7X30l3b0G-taY=w170" src="https://lh6.ggpht.com/ujG_qV7wz8Q4N4wkFJ3w_sOqjNvi9BRsdwsIgtr1z8ZvTCX_qHtyfN7X30l3b0G-taY=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.duckdynastyslots" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.duckdynastyslots"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.duckdynastyslots" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.duckdynastyslots" title="Duck Dynasty Slots"> Duck Dynasty Slots <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.duckdynastyslots"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> THIS IS REDNECK VEGAS, Y’ALL! Play the funniest Vegas Slots ever – for FREE.<p>Relive your favorite Duck Dynasty™ moments: hunt with Willie, cook with Miss <br>Kay, fight back against the beavers, join a redneck wedding, and travel <br>to Hawaii with the Robertson clan! <p>HEY! BET, WIN, LAUGH<br>Free spins, amazing bonuses, crazy wilds and hilarious mini-games like Redneck Roulette to double your winnings.<p>TAILGATE YOUR BUDDIES<br>Get going with your friends thru Louisiana and beyond as you hunt down new machines and send them FREE gifts along the way. <p>PLAY ONLINE OR OFF-ROAD<br>On or offline, your Duck Dynasty adventures sync across all devices with Facebook Connect.<p>Follow us on Twitter: https://twitter.com/DDSlots<br>Like us on Facebook: https://www.facebook.com/DuckDynastySlots<p>Use of this application is governed by the Zynga Terms of Service. Collection and use of personal data are subject to Zynga’s Privacy Policy. Both policies are available in the Application License Agreement below as well as at www.zynga.com. Social Networking Service terms may also apply.<p>Terms of Service: http://m.zynga.com/legal/terms-of-service</p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.duckdynastyslots" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.duckdynastyslots" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.3 stars out of five stars "> <div class="current-rating" style="width: 85.07712364196777%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.duckdynastyslots"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.rwf.googleplay" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.rwf.googleplay" data-server-cookie="CAIaIgogEh4KGGNvbS56eW5nYS5yd2YuZ29vZ2xlcGxheRABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.rwf.googleplay" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Stampede Run" data-cover-large="https://lh4.ggpht.com/QhtT1UsnDRDRVme-A3VOArFaxs1-5UjyW5Ob1ocV4A0ZXRQg9s583k_EsiY647-tvKI=w340" data-cover-small="https://lh4.ggpht.com/QhtT1UsnDRDRVme-A3VOArFaxs1-5UjyW5Ob1ocV4A0ZXRQg9s583k_EsiY647-tvKI=w170" src="https://lh4.ggpht.com/QhtT1UsnDRDRVme-A3VOArFaxs1-5UjyW5Ob1ocV4A0ZXRQg9s583k_EsiY647-tvKI=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.rwf.googleplay" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.rwf.googleplay"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.rwf.googleplay" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.rwf.googleplay" title="Stampede Run"> Stampede Run <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.rwf.googleplay"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> * ENTERTAINMENT WEEKLY Summer Must List<br>* &quot;The most addictive phone game ever!&quot; -CBS Detroit<p>Dodge bulls and challenge your friends. Complete achievements to earn new boosts and power your way up the leaderboards. The bulls are ready to run anywhere you go, with offline play now available.<br>*RUN through a Winter Wonderland as Santa, Gingerbread Man, Nutcracker, or other characters<br>*SMASH through snowmen, presents and barrels!<br>*DODGE charging bulls, speeding cars, flying barrels and more<br>*RIDE bulls for bonuses<br>*JUMP off ramps and soar above buildings<br>*FLY on rockets to collect power ups<br>*CHALLENGE your friends or run with new ones<br>*COMPETE to be on top of the leaderboard<p>Use of this application is governed by the Zynga® Terms of Service. Collection and use of personal data are subject to Zynga&#39;s Privacy Policy. Both policies are available in the Application License Agreement below as well as at www.zynga.com. Social Networking Service terms may also apply.<p>Terms of Service: http://m.zynga.com/legal/terms-of-service</p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.rwf.googleplay" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.rwf.googleplay" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.9 stars out of five stars "> <div class="current-rating" style="width: 78.79717350006104%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.rwf.googleplay"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.areacode.drop7.rev1" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.areacode.drop7.rev1" data-server-cookie="CAIaIQofEh0KF2NvbS5hcmVhY29kZS5kcm9wNy5yZXYxEAEYAw==" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.areacode.drop7.rev1" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Drop7 by Zynga" data-cover-large="https://lh3.ggpht.com/GAIz5oMx242JBh5HbORuCN4N9TzlnyeOl4M35DyqRdVg-nd3kXSqW-XO36SER4l2OS4=w340" data-cover-small="https://lh3.ggpht.com/GAIz5oMx242JBh5HbORuCN4N9TzlnyeOl4M35DyqRdVg-nd3kXSqW-XO36SER4l2OS4=w170" src="https://lh3.ggpht.com/GAIz5oMx242JBh5HbORuCN4N9TzlnyeOl4M35DyqRdVg-nd3kXSqW-XO36SER4l2OS4=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.areacode.drop7.rev1" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.areacode.drop7.rev1"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.areacode.drop7.rev1" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.areacode.drop7.rev1" title="Drop7 by Zynga"> Drop7 by Zynga <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.areacode.drop7.rev1"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>$2.99</span> </button> </span> </span> </div> <div class="description"> Drop7 by Zynga is an addictive challenging puzzle game that’s a cross of Tetris with the basic math of Sudoku. This challenging game will keep you entertained for hours. Drop numbered discs into your grid board to stay alive while aiming for chain reaction bonuses.<p>Master the unique gameplay in seconds, and fine tune your strategies the more you play.<p>Key game features include:<br>1.THREE GAME MODES <br>Choose amongst the more relaxed Normal mode, the fast-paced Hardcode mode, and the mysterious Sequence mode.<p>2.GAME STATE PRESERVED<br>Ever get frustrated that you have to break your current game and restart when you need to check something on your phone? Well, fret no more. This game preserves your current state, so you can come back to the same session later without losing any progress you have made thus far!<p>3.LEADERBOARDS<br>Compare your high scores with your Facebook friends and bring on the friendly competition!<br>You can also see how well you are doing globally with the global leaderboard.<p>Try this easy to pick up and very hard to put down game today!<br>- One of Esquire Magazine’s “Best Downloadable Games for Any Phone, Console &amp; PDA.”<br>- “Super-addictive, deranged awesome!” – Wired Magazine<br>- “Absolutely fantastic.” – Boing Boing<p>Terms of Service: http://m.zynga.com/legal/terms-of-service</p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.areacode.drop7.rev1" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.areacode.drop7.rev1" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.9 stars out of five stars "> <div class="current-rating" style="width: 77.08654880523682%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.areacode.drop7.rev1"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>$2.99</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.gems.googleplay" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.gems.googleplay" data-server-cookie="CAIaIwohEh8KGWNvbS56eW5nYS5nZW1zLmdvb2dsZXBsYXkQARgD" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.gems.googleplay" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Gems With Friends" data-cover-large="https://lh5.ggpht.com/7wEeqYshzQSnRFpLH7SofWbPksXsWxZLWXbM2GihGCvPG7_YR9gEUeO1m3oghGm96_Q=w340" data-cover-small="https://lh5.ggpht.com/7wEeqYshzQSnRFpLH7SofWbPksXsWxZLWXbM2GihGCvPG7_YR9gEUeO1m3oghGm96_Q=w170" src="https://lh5.ggpht.com/7wEeqYshzQSnRFpLH7SofWbPksXsWxZLWXbM2GihGCvPG7_YR9gEUeO1m3oghGm96_Q=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.gems.googleplay" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.gems.googleplay"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.gems.googleplay" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.gems.googleplay" title="Gems With Friends"> Gems With Friends <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.gems.googleplay"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> It&#39;s a fast-paced hypnotic match three game that challenges your combination of speed and strategy.<p>A mix of clever planning and lightning reflexes will have you combining colorful gems together in head-to-head competition with your friends. Play FAST to collect Stars to earn extra points or play SMART to set up chain combos to multiply your score. It is easy to learn and difficult to master.<p>Gems with Friends is the latest game to be selected to join Zynga&#39;s popular &#39;With Friends&#39; network.<br>★ Words With Friends<br>★ Scramble With Friends<br>★ Matching With Friends<br>★ Hanging With Friends<p>FEATURES:<br>★ CONNECT with your friends and family through in-game chat <br>★ CHALLENGE friends or play with new ones<br>★ AMAZING power-ups to supercharge your scores<br>★ COMPETE to be on top of the leaderboards<p>Become a fan! Get exclusive rewards and stay up to date all the latest news<br>★ Facebook: https://www.facebook.com/GemsWithFriends<br>★ Twitter: https://twitter.com/GemsWFriends<br>____________________________________________________________<p>ADDITIONAL DISCLOSURES<p>• Use of this application is governed by the Zynga Terms of Service. These Terms are available at http://m.zynga.com/legal/terms-of-service.<br>• For specific information about how Zynga collects and uses personal or other data, please read our privacy policy at http://m.zynga.com/privacy/policy. Zynga’s Privacy Policy is also available through the Privacy Policy field in the Developer section below.<br>• The game is free to play, however in-app purchases are available for additional content and premium currency. In-app purchases range from $0.99 to $99.99.<br>• This game does permit a user to connect to social networks, such as Facebook, and as such players may come into contact with other people when playing this game.<br>• Terms of Service for Social Networks you connect to in this game may also apply to you.<br>You will be given the opportunity to participate in special offers, events, and programs from Zynga Inc. and its partners. <br>• Must be 13+ to play.<br>• Use of this application requires a Facebook or Zynga With Friends account</p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.gems.googleplay" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.gems.googleplay" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.2 stars out of five stars "> <div class="current-rating" style="width: 84.94836807250977%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.gems.googleplay"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.c4mprod.ezcodescanner" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.c4mprod.ezcodescanner" data-server-cookie="CAIaIwohEh8KGWNvbS5jNG1wcm9kLmV6Y29kZXNjYW5uZXIQARgD" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.c4mprod.ezcodescanner" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="KRE-O CityVille Invasion" data-cover-large="https://lh4.ggpht.com/pu4i-sVZPBjaYAJz3GsgXaVie0b90cF0DRaMpLeAHWoV8lWrKdh67vNcZHjuTGEDrsc=w340" data-cover-small="https://lh4.ggpht.com/pu4i-sVZPBjaYAJz3GsgXaVie0b90cF0DRaMpLeAHWoV8lWrKdh67vNcZHjuTGEDrsc=w170" src="https://lh4.ggpht.com/pu4i-sVZPBjaYAJz3GsgXaVie0b90cF0DRaMpLeAHWoV8lWrKdh67vNcZHjuTGEDrsc=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.c4mprod.ezcodescanner" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.c4mprod.ezcodescanner"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.c4mprod.ezcodescanner" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.c4mprod.ezcodescanner" title="KRE-O CityVille Invasion"> KRE-O CityVille Invasion <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.c4mprod.ezcodescanner"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> As Commanding General of the CityVille S.O.S. Force™, you must stop the evil Dr. Mayhem™ and his minions from conquering your city, and the world!<p>Construct automatic defenses AND personally control your powerful KREON™ soldiers in this mind-blowing game of tower-defense and live-action battle. As you play you can build cooler and more powerful defenses and upgrade your soldiers&#39; skills, weapons and armor!<p>KRE-O CityVille Invasion features eyeball-popping 3D graphics. Can you make your city powerful enough to defeat Dr. Mayhem&#39;s mighty army? You&#39;d better - the world&#39;s counting on you!<br> <br>BONUS ITEMS<br>Unlock cool bonus items with codes you get in KRE-O™ CityVille™ Invasion™ construction sets.<br> <br>FEATURES<br>• 5 Unique Combat Maps<br>• 15 Powerful Weapons<br>• 35 Characters to Play, Each with Unique and Upgradeable Hats and Suits<br>• 25 Story Missions, Plus Over 400 Replayable Challenges to Complete<br>• 13 Types of Buildings to Construct and Defend<br>• 5 Mighty Defense Turrets<br> <br>Use of this application is governed by the KREO CityVille Invasion Terms of Service. Collection and use of data are subject to the KREO CityVille Invasion Privacy Policy. The KREO CityVille Invasion Terms of Service is located at http://company.zynga.com/KCVI/terms-of-service. The KREO CityVille Invasion Privacy Policy is available in the Privacy Policy field located in the Developer section below and available at http://company.zynga.com/KCVI/policy.</p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.c4mprod.ezcodescanner" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.c4mprod.ezcodescanner" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.7 stars out of five stars "> <div class="current-rating" style="width: 73.37300300598145%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.c4mprod.ezcodescanner"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.gswfpaid" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.gswfpaid" data-server-cookie="CAIaHAoaEhgKEmNvbS56eW5nYS5nc3dmcGFpZBABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.gswfpaid" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="What’s the Phrase" data-cover-large="https://lh6.ggpht.com/7JRSgZwxyfeCYeKhDoVUHIf_iCPdjbopW8ek0n8-r9OJ-kNgmSGSbaiUPu6DAIN_SDw=w340" data-cover-small="https://lh6.ggpht.com/7JRSgZwxyfeCYeKhDoVUHIf_iCPdjbopW8ek0n8-r9OJ-kNgmSGSbaiUPu6DAIN_SDw=w170" src="https://lh6.ggpht.com/7JRSgZwxyfeCYeKhDoVUHIf_iCPdjbopW8ek0n8-r9OJ-kNgmSGSbaiUPu6DAIN_SDw=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.gswfpaid" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.gswfpaid"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.gswfpaid" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.gswfpaid" title="What’s the Phrase"> What’s the Phrase <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.gswfpaid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>$1.99</span> </button> </span> </span> </div> <div class="description"> ★ No Third Party Ads<br>★ More Free Coins <br>★ Free Category <p>★ THE NEW WORD GAME from the makers of Words with Friends™ and Scramble with Friends™!<p>★ Pick from over 40 fresh and unique categories, test your luck on the wheel and see if you can guess the Phrase faster than your friends in What’s the Phrase with Friends™!<p>The fun doesn’t stop there:<p>★ Challenge your friends with your own hilarious custom Phrase and hint!<br>★ Use Power-ups for additional hints or be the bad guy and use them to set traps!<br>★ Send gifts to your friends so they can unlock categories faster!<br>★ Multi-lingual? Change puzzle language in separate games to Spanish, French, Italian, German or Portuguese!<br>★ Login with your Facebook account to play against your friends, or challenge a random opponent across the world!<p><br>Like What’s the Phrase With Friends™ on Facebook©!<br>https://www.facebook.com/whatsthephrase<br>Follow What’s the Phrase With Friends™ on Twitter© - @WTP!<p>★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ <p>ADDITIONAL DISCLOSURES<p>• Use of this application is governed by the Zynga Terms of Service. These Terms are available at http://m.zynga.com/legal/terms-of-service.<br>• For specific information about how Zynga collects and uses personal or other data, please read our privacy policy at http://m.zynga.com/privacy/policy. Zynga’s Privacy Policy is also available through the Privacy Policy field in the Developer section below.<br>• This game does permit a user to connect to social networks, such as Facebook, and as such players may come into contact with other people when playing this game.<br>• Terms of Service for Social Networks you connect to in this game may also apply to you.<br>You will be given the opportunity to participate in special offers, events, and programs from Zynga Inc. and its partners. <br>• Must be 13+ to play.<br>• Use of this application requires a Facebook or Zynga With Friends account</p></p></p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.gswfpaid" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.gswfpaid" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.1 stars out of five stars "> <div class="current-rating" style="width: 82.85615921020508%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.gswfpaid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>$1.99</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.chess.googleplay" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.chess.googleplay" data-server-cookie="CAIaJAoiEiAKGmNvbS56eW5nYS5jaGVzcy5nb29nbGVwbGF5EAEYAw==" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.chess.googleplay" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Chess With Friends Free" data-cover-large="https://lh4.ggpht.com/2rrvJrbGlUQXFG6F23S5R5-Wu-zLva4R8kSx7dHxnJrtO7dlkeK1JO6BmFoHh8sR0_8=w340" data-cover-small="https://lh4.ggpht.com/2rrvJrbGlUQXFG6F23S5R5-Wu-zLva4R8kSx7dHxnJrtO7dlkeK1JO6BmFoHh8sR0_8=w170" src="https://lh4.ggpht.com/2rrvJrbGlUQXFG6F23S5R5-Wu-zLva4R8kSx7dHxnJrtO7dlkeK1JO6BmFoHh8sR0_8=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.chess.googleplay" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.chess.googleplay"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.chess.googleplay" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.chess.googleplay" title="Chess With Friends Free"> Chess With Friends Free <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.chess.googleplay"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> Take no prisoners and protect your King at all costs! Brought to you by the makers of Words with Friends, Chess with Friends Free is the best way to play Chess on Android.<p>Connect with friends and challenge them to one of the oldest, most popular games in the world. Play multiple games at the same time, track your moves and improve your stats.<p>Download Chess with Friends Free and start playing today!<p>Features:<br>★ Connect with Facebook to play family and friends, or find and challenge a random opponent<br>★ Practice Mode - Choose your skill level and challenge Chesster the Chess coach. Play him online or offline to sharpen your skills<br>★ View your win, loss and draw stats to track your game play<br>★ Relive the glory by replaying moves in existing and past games<br>★ Encourage, boast or taunt your opponent with in-game chat<br>★ Play multiple games at once across Android and iOS<br>★ Play on your phone or tablet<p>Already a fan of the game?<br>★ Join the community on Facebook to discuss the game, give feedback and find more friends to play https://www.facebook.com/ChessWithFriends<br>★ Follow us on twitter http://twitter.com/ChessWFriends for all of the latest news<br>__________________________________<p>ADDITIONAL DISCLOSURES<p>• Use of this application is governed by the Zynga Terms of Service. These Terms are available at http://m.zynga.com/legal/terms-of-service.<br>• For specific information about how Zynga collects and uses personal or other data, please read our privacy policy at http://m.zynga.com/privacy/policy. Zynga’s Privacy Policy is also available through the Privacy Policy field in the Developer section below.<br>• The game is free to play, however in-app purchases are available for additional content and premium currency. In-app purchases range from $0.99 to $99.99.<br>• This game does permit a user to connect to social networks, such as Facebook, and as such players may come into contact with other people when playing this game.<br>• Terms of Service for Social Networks you connect to in this game may also apply to you.<br>You will be given the opportunity to participate in special offers, events, and programs from Zynga Inc. and its partners. <br>• Must be 13+ to play.<br>• Use of this application requires a Facebook or Zynga With Friends account</p></p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.chess.googleplay" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.chess.googleplay" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 4.1 stars out of five stars "> <div class="current-rating" style="width: 81.60751342773438%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.chess.googleplay"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.draw2.googleplay.paid" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.draw2.googleplay.paid" data-server-cookie="CAIaKQonEiUKH2NvbS56eW5nYS5kcmF3Mi5nb29nbGVwbGF5LnBhaWQQARgD" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.draw2.googleplay.paid" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="Art With Friends" data-cover-large="https://lh5.ggpht.com/evVKdPqWEalrQyyUFpiYnvYxfIpSlSytwK02Fj-68Hi3nVMJoUXVqD7ten5c7Nnrxw=w340" data-cover-small="https://lh5.ggpht.com/evVKdPqWEalrQyyUFpiYnvYxfIpSlSytwK02Fj-68Hi3nVMJoUXVqD7ten5c7Nnrxw=w170" src="https://lh5.ggpht.com/evVKdPqWEalrQyyUFpiYnvYxfIpSlSytwK02Fj-68Hi3nVMJoUXVqD7ten5c7Nnrxw=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.draw2.googleplay.paid" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.draw2.googleplay.paid"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.draw2.googleplay.paid" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.draw2.googleplay.paid" title="Art With Friends"> Art With Friends <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.draw2.googleplay.paid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>$0.99</span> </button> </span> </span> </div> <div class="description"> All new ways to draw, guess, and share with friends! Play Art With Friends and discover the Artist in you!<br>Get the premium version of Art With Friends and gain access to exciting new features for premium players only, including:<br>• Free Sparkle Pen (only available in premium)<br>• NO ADS between turns <br>• Free star and coin bonus<br>• 1000’s of new words<p>Wanna play for FREE? Art With Friends FREE is Available on Google Play!<p>Note: If you already have Art With Friends, switching to premium is easy! Your existing account, games, and colors will carry over once you log-in.<br>Create cool effects with dozens of new tools, patterns, stamps and colors - allowing you to transform even the simplest drawings into masterpieces.<br>For the first time ever, share your drawings in a feed for all of your friends to see! Follow your friends, celebs, and discover new artists - there’s always something new, funny and inspiring to check out!<br>...And There’s More!<br>• Gallery<br>A collection of all of your favorite drawings in one place<br>• Social Feed<br>Follow your friends, celebs, and discover new artists. Stay up to-date on all the latest drawings and games from your feed.<br>• All New Ways to Play<br>Earn coins for playing the Daily Guess and Daily Draw<br>• Tons of New Words<br>Over 5,000 new words! Including all new 9 letter words and phrases for daily draw<br>• More Drawing Tools<br>Limitless creativity at your fingertips! Try out the Pixel pen, Pattern pencil, Stamps, Marker, Highlighter, Crayon and more. Plus, choose from over 100 vibrant colors<br>• Free Draw<br>Draw anything. Try out your new tools, create and share something amazing<br>• Restricted Mode<br>Disable the Social Feed and<br>gallery using a PIN. You can still play turns with friends and contacts, but you won&#39;t see any social content<p>Become a fan! Get exclusive rewards and stay up to date all the latest news<br>• Facebook: https://www.facebook.com/ArtwFriends<br>• Twitter: https://www.twitter.com/ArtwFriends<br>• Instagram: http://www.instagram.com/playartwithfriends<p>Use of this application is governed by the Zynga Terms of Service. Collection and use of personal data are subject to Zynga&#39;s Privacy Policy. Both policies are available in the Application License Agreement below as well as at www.zynga.com. Social Networking Service terms may also apply.<p>Terms of Service: http://m.zynga.com/legal/terms-of-service</p></p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.draw2.googleplay.paid" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.draw2.googleplay.paid" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.5 stars out of five stars "> <div class="current-rating" style="width: 70.61032772064209%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.draw2.googleplay.paid"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>$0.99</span> </button> </span> </span> </span> </div> </div> </div> <div class="card no-rationale square-cover apps small" data-docid="com.zynga.nflshowdown" data-original-classes="card no-rationale square-cover apps small" data-short-classes="card no-rationale square-cover apps small"> <div class="card-content id-track-click id-track-impression" data-docid="com.zynga.nflshowdown" data-server-cookie="CAIaHwodEhsKFWNvbS56eW5nYS5uZmxzaG93ZG93bhABGAM=" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.nflshowdown" aria-hidden="true" tabindex="-1"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" alt="NFL Showdown: Football Manager" data-cover-large="https://lh4.ggpht.com/jhaWHTTQ0Nk8lA7_ZK8zydb9f1OuuyHaqg1JmGwHIs01_kaQf9eAIL2GTRVc4a_O9gHD=w340" data-cover-small="https://lh4.ggpht.com/jhaWHTTQ0Nk8lA7_ZK8zydb9f1OuuyHaqg1JmGwHIs01_kaQf9eAIL2GTRVc4a_O9gHD=w170" src="https://lh4.ggpht.com/jhaWHTTQ0Nk8lA7_ZK8zydb9f1OuuyHaqg1JmGwHIs01_kaQf9eAIL2GTRVc4a_O9gHD=w170" aria-hidden="true"> </div> </div> </div> <a class="card-click-target" href="/store/apps/details?id=com.zynga.nflshowdown" aria-hidden="true" tabindex="-1"> <span class="preview-overlay-container" data-docid="com.zynga.nflshowdown"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.zynga.nflshowdown" aria-hidden="true" tabindex="-1"></a> <h2> <a class="title" href="/store/apps/details?id=com.zynga.nflshowdown" title="NFL Showdown: Football Manager"> NFL Showdown: Football Manager <span class="paragraph-end"></span> </a> </h2> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Zynga" title="Zynga">Zynga</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.nflshowdown"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </div> <div class="description"> Play NFL Football with Your Friends Every Day in NFL Showdown! The New NFL Team Manager Game is Now Available on Mobile! <p>Create your very own NFL football dream team and compete in daily showdowns! Manage your favorite NFL franchise, win the Super Bowl and build the ultimate dynasty. Compete in head-to-head matchups with your friends as well as other NFL fans all week long. Choose from real NFL players and even receive real-time stat boosts based on Fantasy Football player performance. You get to develop the winning strategy: update rosters, choose a starting lineup, sign free agents, train players and build gameday tactics. Instantly pick up and play with no long-term league commitments. It’s authentic NFL fun 365 days a year, even in the off-season. Join a short season to start winning trophies and prizes today. Every day is Gameday with NFL Showdown!<p>• Authentic NFL League Structure - Manage Real Teams and Real Players <br>• More than Multiplayer - Compete in Daily Head-2-Head Matches<br>• Connect with Friends and Meet New NFL Fans Each Season<br>• Live Out the Highs and Lows of Real-Time NFL Drama<br>• Build and Upgrade Your Dream Team with Auctions and Trading<br>• Train and Strategize to Gain a Competitive Advantage<br>• Collect Trophies and Earn New Rewards as You Progress<br>• Watch the Field and Stadium Simulated Experience Streaming Live in Real-Time<br>• Be a Manager Not Just a Quarterback or Running Back <br>• Passing, Tackling, Touchdowns and Field Goals are Just the Beginning<br>• Don’t Play in Solo Mode or Flick - Champions Win Online with Skill!<br>• More Community, Challenge and Excitement than Fantasy Football <br>• Features Virtual League Updates, Live Scores and Schedules<p>Officially Licensed Product of National Football League Players Incorporated | NFLPLAYERS.com<p>ADDITIONAL DISCLOSURES<br>• Use of this application is governed by the Zynga Terms of Service. These Terms are available at http://m.zynga.com/legal/terms-of-service.<br>• For specific information about how Zynga collects and uses personal or other data, please read our privacy policy at http://m.zynga.com/privacy/policy. Zynga’s Privacy Policy is also available through the Privacy Policy field in the Developer section below.<br>• The game is free to play, however in-app purchases are available for additional content and premium currency. In-app purchases range from $0.99 to $99.99.<br>• This game does permit a user to connect to social networks, such as Facebook, and as such players may come into contact with other people when playing this game.<br>• Terms of Service for Social Networks you connect to in this game may also apply to you. You will be given the opportunity to participate in special offers, events, and programs from Zynga, Inc. and its partners.</p></p></p></p> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.zynga.nflshowdown" aria-hidden="true" tabindex="-1"></a> </div> </div> <div class="reason-set"> <span class="stars-container"> <a href="/store/apps/details?id=com.zynga.nflshowdown" tabindex="-1"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container" aria-label=" Rated 3.8 stars out of five stars "> <div class="current-rating" style="width: 76.88373565673828%"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="apps is-price-tag buy-button-container" data-doc-fetch-skip-cache="0" data-doc-fetch-vouchers="0" data-docid="com.zynga.nflshowdown"> <div class="pon" style="display:none">1</div> <button class="price buy"> <span>Free</span> </button> </span> </span> </span> </div> </div> </div> </div> </div> </div> </div></div><div class="overlay-background" style="display:none"></div><div class="overlay-wrapper" style="display:none"><div class="overlay-content-wrapper"><div id="overlay-content"></div></div></div><div style="clear:both"></div><div id="footer-content"> <button class="play-button" id="show-more-button" style="display:none"> Show More </button> <div class="bottom-loading" style="display:none"></div> <div class="footer"> <div class="footer-links-container"> <span class="copyright">©2014 Google</span> <a class="footer-link id-no-nav" href="https://play.google.com/intl/en-US_us/about/play-terms.html" target="_blank"> Site Terms of Service</a> <a class="footer-link id-no-nav" href="https://play.google.com/intl/en-US_us/about/device-terms.html" target="_blank"> Devices Terms of Sale</a> <a class="footer-link id-no-nav" href="https://support.google.com/googleplay/bin/answer.py?answer=1196018&amp;hl=en_US" target="_blank"> Privacy Policy</a> <a class="footer-link id-no-nav" href="http://developer.android.com/index.html" target="_blank"> Developers</a> <a class="footer-link id-no-nav" href="https://play.google.com/artists" target="_blank"> Artists</a> <a class="footer-link id-no-nav" href="https://support.google.com/googleplay/?p=about_play" target="_blank"> About Google</a> </div> </div> </div></div><div class="loading" id="page-load-indicator"></div><div id="audio-player"><audio autoplay="autoplay" id="html5Player"></audio></div><script>(function(){window._sc='[[null,\42/\42,\42/store\42,\42/store/account\42,\42/store/movies\42,\42/store/music\42,\42/store/books\42,\42/store/newsstand\42,\42/store/apps\42,\42/store/devices\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d0\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d4\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d1\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d6\42,null,\42https://encrypted.google.com/complete/search?client\\u003dpartner\\u0026partnerid\\u003dskyjam-store\\u0026ds\\u003dcse\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d3\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d5\42,null,\42/\42,\42/play/log?format\\u003djson\42,null,\42https://play.google.com/intl/en-US_us/about/play-terms.html\42,\42https://support.google.com/googleplay/bin/answer.py?topic\\u003d2450225\\u0026answer\\u003d2479637\\u0026hl\\u003den_US\42,\42/store/buy\42,\42/store/install\42,\42/store/getpurchaseoutcome\42,\42/wishlist\42,\42/movies\42,\42/music?authuser\42,\42/books\42,\42/newsstand\42,\42/apps\42,\42/store/xhr/enablegpr\42,\42/store/xhr/deletereview\42,\42/store/xhr/ructx\42,\42/store/xhr/getuseraddress\42,\42/store/submitreview\42,\42/store/addtocart\42,\42/store/xhr/updatecart\42,\42https://www.gstatic.com/play/store/web/swf/4musicplayer.swf\42,\42/store/xhr/rapcategories\42,\42/store/xhr/rapsubmit\42,\42/store/xhr/puc\42,\42/store/xhr/pulc\42,\42/store/xhr/getwatchembed\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d86400\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d0\42,null,\42/store/xhr/mul\42,\42/store/xhr/getdoc\42,\42http://support.google.com/mobile/?p\\u003dbooks_formats\42,\42http://support.google.com/mobile/?p\\u003dbooks_devices\42,\42http://support.google.com/mobile/?p\\u003dbooks_androidapp\42,\42http://support.google.com/mobile/?p\\u003dbooks_iosapp\42,\42http://support.google.com/googleplay/bin/answer.py?answer\\u003d1062502\\u0026topic\\u003d1187416\\u0026ctx\\u003dtopic\42,\42/store/apps/details?id\\u003dcom.google.android.apps.books\42,\42/store/apps/details?id\\u003dcom.google.android.music\42,\42/store/apps/details?id\\u003dcom.google.android.videos\42,\42/store/apps/details?id\\u003dcom.google.android.apps.magazines\42,\42/store/xhr/topupopts\42,\42/store/setuserdata\42,\42/store/xhr/buynoco\42,\42/store/apps/collection/editors_choice\42,\42/store/apps/category/GAME\42,\42/store/account\42,\42/redeem\42,\42/store/xhr/getnumcartitems\42,\42/store/cart?modTime\\u003d0\42,\42/store/xhr/cancelsub\42,\42/store/xhr/dfph\42,\42https://play.google.com/intl/en-US_us/about/giftcards\42,\42/store/movies/category/MOVIE\42,\42/store/movies/category/TV\42,\42/store/cancelpreorder\42,\42http://support.google.com/googleplay/devices\42,\42/settings\42,\42/store/ratereview\42,\42/store/getdevicepermissions\42,\42/store/xhr/hide\42,\42/store/getreviews\42,\42/store/movies/collection/promotion_collections_movie_studios\42,\42/store/movies/collection/promotion_collections_tv_networks\42,\42/store/xhr/canceldeviceorder\42,\42https://plus.google.com/\42,\42https://wallet.google.com/updateCreditCard\42,\42/store/books/collection/promotion_1000568_txb_product\42,\42/store/xhr/experimenttoggler\42,\42https://support.google.com/googleplay/bin/answer.py?answer\\u003d1141080\42,null,\42/store/onewayredeem\42,\42https://wallet.google.com/legaldocument?docId\\u003d0.buyertos/US/2/1/und\42,\42/store/xhr/getvariantrec\42,\42https://wallet.google.com/legaldocument?family\\u003d0.privacynotice\\u0026hl\\u003den_US\42,\42https://play.google.com/intl/en-US_us/about/redeem-terms.html\42,\42/store/xhr/prepur\42,\42/store/xhr/comppurch\42,\42/store/xhr/getsimilarcluster\42,\42/store/xhr/getreviewannotation\42,\42/store/xhr/dismisssug\42,\42/store/xhr/getartistalbums\42,\42/store/myplayactivity\42,\42/store/opensearch.xml\42,\42https://ageverification.google.co.kr/ageverification?cl\\u003d1\\u0026hl\\u003dko\\u0026authuser\42,\42https://support.google.com/websearch/answer/4358949?ref_topic\\u003d3285072\\u0026hl\\u003dko\42,\42https://support.google.com/googleplay/?p\\u003dreport_content\42,null,\42/store/order\42,\42https://play.google.com/intl/en-US_us/about/promo-terms.html\42,\42/store/xhr/gbp\42,\42/store/xhr/uninstall\42,\42/store/xhr/talentcontent\42]\n,1,1,[\42/store/search\42,\42Search\42]\n,\42UA-19995903-1\42,\42PROD\42,1,\42https://wallet.google.com/payments/widgets/instrument_creator.js\42]\n';})();</script><script>(function(){window._uc='[null,\42\42,\42en\42,\42US\42,[[\4283a1c766\42,null,1,\42enable_grouping_app_permissions\42]\n,[\42fd0884cc\42,null,1,\42enable_inapp_purchase_text\42]\n,[\42b0eb6535\42,null,1,\42enable_movies_subtitle_warning\42]\n,[\0422b277ce0\42,null,1,\42enable_glass_discount\42]\n,[\42cfc83a8f\42,null,1,\42enable_movie_device_setup_page\42]\n,[\0421e72ba8d\42,null,1,\42enable_flag_inappropriate\42]\n,[\04237ad289c\42,null,1,\42enable_hardware_cancel_redirect_on_success\42]\n,[\04272b063b1\42,null,1,\42enable_movies_chrome_app_integration\42]\n,[\42e38df948\42,null,1,\42enable_finsky_wishlist_icon_adjust\42]\n,[\42b023b0c4\42,null,1,\42enable_music_preview_rights\42]\n,[\429cd547a3\42,null,1,\42enable_enable_scs\42]\n,[\42f6caf8fb\42,null,1,\42enable_in_app_rap_fix\42]\n,[\42b744e4cb\42,null,1,\42enable_signout_options_for_logout\42]\n,[\0423f8ce17a\42,null,1,\42enable_loonie\42]\n,[\04213cdd623\42,null,1,\42enable_movie_preorder_purchase_flow\42]\n,[\42c14f90b0\42,null,1,\42enable_corpus_menu_removal_for_mobile\42]\n,[\04225bfa874\42,null,1,\42enable_i18n_address_widget\42]\n,[\04211cdcd88\42,null,1,\42enable_optimize_mobile\42]\n,[\4283f335b0\42,null,1,\42enable_logging_to_odyssey\42]\n,[\0424c760e81\42,null,1,\42enable_ec_dev_contact_and_iap_price_info\42]\n,[\42cd9bd9ce\42,null,1,\42enable_mobile_video_trailer\42]\n]\n,0,null,0,null,null,[]\n,null,0,[\42nocache:laz\42,\42offline_plato\42,\42signed-out\42]\n,[5500112,5500138,5500117,5500075,5500097,5500087,5500125,5500136,5500028,5500128,5500123,5500101,5500120,5500118,5500047,5500130]\n]\n';})();</script><script type="text/javascript" src="https://www.gstatic.com/play/store/web/js/1279179601-main_page_js_compiled_main_page_js.js"></script>
78
+ <script>window.pressPlayCalled = false;if (typeof window.gapi != 'undefined' && !window.pressPlayCalled){window.pressPlayCalled = true;pressPlay();}
79
+ </script><script type="text/javascript">(function(){var locale='en_US';window.___gcfg = {lang:locale,parsetags:'explicit'
80
+ };(function(){function onGapiLoad(){if (typeof window.gapi != 'undefined'){window.gapi.load('plus:plusone:card:gapi.iframes:gapi.iframes.style.common',function (){if (!window.pressPlayCalled){window.pressPlayCalled = true;pressPlay();}
81
+ window.gapi.plusone.go('body-content');window.gapi.plus.go();window.gapi.config.update('card/source','play.webstore');window.gapi.card.watch();window.gapi.iframes.getContext().restyleSelf({'show':'yes'});window.gapi.iframes.getContext().ready();});}
82
+ }
83
+ var po = document.createElement('script');po.type = 'text/javascript';po.async = true;po.src = 'https://apis.google.com/js/platform.js';if (!po.addEventListener){po.attachEvent('onload',onGapiLoad);}else {po.addEventListener('load',onGapiLoad,false);}
84
+ var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(po,s);})();})();</script><div id="instrument-manager-parent"></div><script src="https://wallet.google.com/inapp/lib/buy.js"></script><script type="text/javascript">(function(){var locale='en';google.payments.inapp.preload({'locale' :locale
85
+ });})();</script><script type="text/javascript">(function(){var tracking_id='UA-19995903-1';(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
86
+ })(window,document,'script','//www.google-analytics.com/analytics.js','play_ga');play_ga('create',tracking_id);play_ga('send','pageview');})();</script></body></html><div> <script>(function(){var fu=true;var pt='';var ab='';var lmt='';var curl='https://play.google.com/store/apps/developer?id\75Zynga';var nbp='[\42https://play.google.com/store/apps/developer?id\\u003dZynga\42,\42GAEiAggY:S:ANO1ljLwz5k\42,\04224\42,\0420\42,\0420\42]\n';var sc='CAESEQgFIg0SCwoFWnluZ2EQCBgD';var pgj=false;var di='developer-Zynga';var du=2;if (fu){if (pt){upt(pt);}
87
+ if (ab){uab(ab);}
88
+ if (lmt){ihc(lmt);}
89
+ if (nbp && typeof snbp != 'undefined'){snbp(nbp);}
90
+ if (curl){sglc(curl);}
91
+ if (pgj){if (gapi && gapi.plus && gapi.plus.go){gapi.plus.go();}
92
+ }
93
+ upba(di,du);usc(sc);}
94
+ })();</script> </div>
@@ -0,0 +1,57 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '../../../spec_helper')
2
+
3
+ include MarketBot::Android
4
+
5
+ test_developer_id = 'Zynga'
6
+
7
+ def stub_hydra(hydra)
8
+ test_src_pages = []
9
+ test_src_pages[0] = read_file(File.dirname(__FILE__), 'data', "developer-zynga.txt")
10
+
11
+ response = Typhoeus::Response.new(:code => 200, :headers => '', :body => test_src_pages[0])
12
+ url = "https://play.google.com/store/apps/developer?id=Zynga&hl=en"
13
+ Typhoeus.stub(url).and_return(response)
14
+ end
15
+
16
+ def check_results(results)
17
+ it 'should return valid results' do
18
+ results.length.should == 24
19
+ results[0][:title].should == "FarmVille 2: Country Escape"
20
+ end
21
+ end
22
+
23
+ describe 'developer' do
24
+ context 'Construction' do
25
+ it 'should copy params' do
26
+ dev = Developer.new(test_developer_id)
27
+ dev.identifier.should == test_developer_id
28
+ end
29
+
30
+ it 'should copy optional params' do
31
+ hydra = Typhoeus::Hydra.new
32
+ dev = Developer.new(test_developer_id, :hydra => hydra)
33
+ dev.hydra.should equal(hydra)
34
+ end
35
+ end
36
+
37
+ describe 'Updating' do
38
+ context 'Quick API' do
39
+ stub_hydra(Typhoeus::Hydra.hydra)
40
+ dev = Developer.new(test_developer_id)
41
+ dev.instance_variable_set('@hydra', Typhoeus::Hydra.hydra)
42
+ dev.update
43
+
44
+ check_results(dev.results)
45
+ end
46
+
47
+ context 'Batch API' do
48
+ hydra = Typhoeus::Hydra.new
49
+ stub_hydra(hydra)
50
+ dev = Developer.new(test_developer_id, :hydra => hydra)
51
+ dev.enqueue_update
52
+ hydra.run
53
+
54
+ check_results(dev.results)
55
+ end
56
+ end
57
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: market_bot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chad Remesch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-29 00:00:00.000000000 Z
11
+ date: 2014-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -80,11 +80,13 @@ files:
80
80
  - spec/market_bot/android/data/app_1.txt
81
81
  - spec/market_bot/android/data/app_2.txt
82
82
  - spec/market_bot/android/data/app_3.txt
83
+ - spec/market_bot/android/data/developer-zynga.txt
83
84
  - spec/market_bot/android/data/leaderboard-apps_editors_choice.txt
84
85
  - spec/market_bot/android/data/leaderboard-apps_topselling_paid-page1.txt
85
86
  - spec/market_bot/android/data/leaderboard-apps_topselling_paid-page2.txt
86
87
  - spec/market_bot/android/data/leaderboard-apps_topselling_paid-page3.txt
87
88
  - spec/market_bot/android/data/leaderboard-apps_topselling_paid-page4.txt
89
+ - spec/market_bot/android/developer_spec.rb
88
90
  - spec/market_bot/android/leaderboard_spec.rb
89
91
  - spec/market_bot/android/search_query_spec.rb
90
92
  - spec/market_bot_spec.rb
@@ -117,11 +119,13 @@ test_files:
117
119
  - spec/market_bot/android/data/app_1.txt
118
120
  - spec/market_bot/android/data/app_2.txt
119
121
  - spec/market_bot/android/data/app_3.txt
122
+ - spec/market_bot/android/data/developer-zynga.txt
120
123
  - spec/market_bot/android/data/leaderboard-apps_editors_choice.txt
121
124
  - spec/market_bot/android/data/leaderboard-apps_topselling_paid-page1.txt
122
125
  - spec/market_bot/android/data/leaderboard-apps_topselling_paid-page2.txt
123
126
  - spec/market_bot/android/data/leaderboard-apps_topselling_paid-page3.txt
124
127
  - spec/market_bot/android/data/leaderboard-apps_topselling_paid-page4.txt
128
+ - spec/market_bot/android/developer_spec.rb
125
129
  - spec/market_bot/android/leaderboard_spec.rb
126
130
  - spec/market_bot/android/search_query_spec.rb
127
131
  - spec/market_bot_spec.rb